Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// npm package: select2
2
// github link: https://github.com/select2/select2
3
 
4
.select2-container--default {
5
  .select2-selection--single,
6
  .select2-selection--multiple {
7
    border: 1px solid $input-border-color;
8
    border-radius: $border-radius;
9
    @at-root #{selector-append(".select2-container--focus", &)} {
10
      border: 1px solid $input-focus-border-color;
11
    }
12
  }
13
}
14
 
15
.select2-dropdown {
16
  border: 1px solid $input-focus-border-color;
17
  border-radius: $border-radius;
18
}
19
 
20
.select2-container--default {
21
  .select2-search--dropdown .select2-search__field {
22
    @extend .form-control;
23
  }
24
  .select2-results__option--highlighted[aria-selected] {
25
    background-color: $primary;
26
  }
27
}
28
 
29
.select2-container .select2-selection--single,
30
.select2-container .select2-selection--multiple {
31
  height: auto;
32
}
33
 
34
.select2-container--default .select2-selection--single {
35
  .select2-selection__rendered {
36
    line-height: 1.5;
37
    padding: $input-btn-padding-y $input-btn-padding-x;
38
  }
39
  .select2-selection__arrow {
40
    height: 100%;
41
    b {
42
      left: 0;
43
    }
44
  }
45
}
46
 
47
.select2-container--default .select2-selection--multiple {
48
  min-height: 38px;
49
  .select2-selection__rendered {
50
    padding: 0 6px
51
  }
52
  .select2-selection__choice {
53
    background-color: $primary;
54
    color: $white;
55
    border-color: $primary;
56
    padding: 1px 8px;
57
    border-radius: .15rem;
58
    margin-top: 5px;
59
  }
60
  .select2-selection__choice__remove {
61
    color: $white;
62
    opacity: .5;
63
  }
64
}
65
 
66
.select2-container .select2-search--inline {
67
  margin-top: 3px;
68
}