tree.scss 1.62 KB
Newer Older
1 2 3 4
#tree-holder { 
  #tree-content-holder {
    float:left;
    width:100%;
5
  }
6
  #tree-readme-holder {
7
    float:left;
8 9
    width:100%;
    .readme {
10 11
      border:1px solid #ccc;
      padding:12px;
12
      background: #F7F7F7;
13 14 15 16

      pre { 
        overflow: auto;
      }
17
    }
18 19
  }

20 21 22 23 24 25
  .tree_progress { 
    display:none;
    margin:20px;
    &.loading { 
      display:block;
    }
26 27
  }

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
28
  #tree-slider {
29
    @include border-radius(0);
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
30 31 32 33 34
    .tree-item { 
      &:hover { 
        td { background: $hover; }
        cursor:pointer;
      }
35
    }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
36
  }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
37

Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
38
  .tree-item { 
39
    .tree-item-file-name { 
randx's avatar
randx committed
40
      vertical-align:middle;
41 42 43
      font-weight:bold;
      a { 
        color:$style_color;
randx's avatar
randx committed
44 45 46
        &:hover { 
          color:$blue_link;
        }
47 48 49 50
      }

      img { 
        position: relative;
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
51
        top:-1px;
52
      }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
53
    }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
54
  }
55 56


57
  #tree-slider { 
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
58
    @include solid_shade;
randx's avatar
randx committed
59
    width:100%;
60

randx's avatar
randx committed
61 62
    border-color:#ccc;

63
    td { 
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
64
      padding:8px;
65
      border-color:#f1f1f1;
randx's avatar
randx committed
66 67 68 69 70 71
      background:#fafafa;
    }

    tr:first-child td:first-child, 
    tr:first-child td:last-child { 
      border-radius:0;
72 73 74
    }

    th { 
randx's avatar
randx committed
75 76 77 78 79 80 81
      border-color: #CCC;
      border-bottom: 1px solid #bbb;
      background:#eee;
      background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
      background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
      background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
      background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf);
82
    }
83 84
  }

85 86
  .tree-commit-link { 
    color:#333;
87
  }
88

89 90 91 92 93 94
  a.tree-commit-link { 
    color: #666;
    &:hover { 
      text-decoration: underline;
    }
  }
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
95 96

}