Blame view

bower_components/select2/src/scss/theme/default/_single.scss 1.3 KB
f6e211e4   Administrator   finish work part 1
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
  .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
  
    .select2-selection__rendered {
      color: #444;
      line-height: 28px;
    }
  
    .select2-selection__clear {
      cursor: pointer;
      float: right;
      font-weight: bold;
    }
  
    .select2-selection__placeholder {
      color: #999;
    }
  
    .select2-selection__arrow {
      height: 26px;
  
      position: absolute;
  
      top: 1px;
      right: 1px;
  
      width: 20px;
  
      b {
        border-color: #888 transparent transparent transparent;
        border-style: solid;
        border-width: 5px 4px 0 4px;
  
        height: 0;
        left: 50%;
  
        margin-left: -4px;
        margin-top: -2px;
  
        position: absolute;
  
        top: 50%;
        width: 0;
      }
    }
  }
  
  &[dir="rtl"] {
    .select2-selection--single {
      .select2-selection__clear {
        float: left;
      }
  
      .select2-selection__arrow {
        left: 1px;
        right: auto;
      }
    }
  }
  
  &.select2-container--disabled {
    .select2-selection--single {
      background-color: #eee;
      cursor: default;
  
      .select2-selection__clear {
        display: none;
      }
    }
  }
  
  &.select2-container--open {
    .select2-selection--single {
      .select2-selection__arrow {
        b {
          border-color: transparent transparent #888 transparent;
          border-width: 0 4px 5px 4px;
        }
      }
    }
  }