Commit cbea0af2907d9bff641ce3cd215594dfb6a2ab94

Authored by randx
1 parent 16427f4c

custom select styled, tree table no round borders

app/assets/stylesheets/common.scss
... ... @@ -901,3 +901,12 @@ li.note {
901 901 }
902 902  
903 903 }
  904 +
  905 +/* CHZN reset few styles */
  906 +.chzn-container-single .chzn-single {
  907 + background:#eee;
  908 + border: 1px solid #ccc;
  909 +}
  910 +.chzn-container-active .chzn-single {
  911 + background:#fff;
  912 +}
... ...
app/assets/stylesheets/tree.scss
... ... @@ -7,8 +7,8 @@
7 7 float:left;
8 8 width:100%;
9 9 .readme {
10   - @include round-borders-all(4px);
11   - padding:4px 15px;
  10 + border:1px solid #ccc;
  11 + padding:12px;
12 12 background: #F7F7F7;
13 13 }
14 14 }
... ... @@ -119,6 +119,7 @@
119 119 }
120 120  
121 121 #tree-slider {
  122 + @include border-radius(0);
122 123 .tree-item {
123 124 &:hover {
124 125 td { background: $hover; }
... ...