ref_select.scss
1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/** Branch/tag selector **/
.project-refs-form {
  margin: 0;
  span {
    background:none !important;
    position:static !important;
    width:auto !important;
    height:auto !important;
  }
}
.project-refs-select {
  width: 120px;
}
.project-refs-form .chzn-container {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 10px;
  .chzn-drop {
    min-width: 400px;
    .chzn-results {
      max-height: 300px;
    }
    .chzn-search input {
      min-width: 365px;
    }
  }
}
/** Fix for Search Dropdown Border **/
.chzn-container {
  .chzn-search {
    input:focus {
      @include box-shadow(none);
    }
  }
  .chzn-drop {
    margin: 7px 0;
    min-width: 200px;
    border: 1px solid #bbb;
    @include border-radius(0);
    .chzn-results {
      margin-top: 5px;
      max-height: 300px;
      .group-result {
        color: $style_color;
        border-bottom: 1px solid #EEE;
        padding: 8px;
      }
      .active-result {
        @include border-radius(0);
        &.highlighted {
          background: $hover;
          color: $style_color;
        }
        &.result-selected {
          background: #EEE;
          border-left: 4px solid #CCC;
        }
      }
    }
    .chzn-search {
      @include bg-gray-gradient;
      input {
        min-width: 165px;
        border-color: #CCC;
      }
    }
  }
  .chzn-single {
    @include bg-light-gray-gradient;
    div {
      background: transparent;
      border-left: none;
    }
    span {
      font-weight: normal;
    }
  }
}