Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Bootstrap Select
3
***/
4
.bootstrap-select .btn {
5
  border-color: $input-border;
6
}
7
 
8
.has-error {
9
  .bootstrap-select .btn {
10
    border-color: $state-danger-border;
11
  }
12
}
13
 
14
.has-success {
15
  .bootstrap-select .btn {
16
    border-color: $state-success-border;
17
  }
18
}
19
 
20
.has-warning {
21
  .bootstrap-select .btn {
22
    border-color: $state-warning-border;
23
  }
24
}
25
 
26
.bootstrap-select.open .btn {
27
  border-color: $input-border-focus;
28
}
29
 
30
.bootstrap-select.open.dropup .btn {
31
  border-color: $input-border-focus;
32
}
33
 
34
.bootstrap-select .btn:focus {
35
    outline: none !important;
36
    outline-offset: 0;
37
}
38
 
39
.bootstrap-select.btn-group .dropdown-menu {
40
  margin-top: 1px;
41
}
42
 
43
.bootstrap-select.btn-group .dropdown-menu > li > dt > .text {
44
  font-weight: 600;
45
  font-family: 'Open Sans';
46
  font-size: 14px;
47
}
48
 
49
.bootstrap-select.btn-group .dropdown-menu .text-muted {
50
  color: #999 !important;
51
}
52
 
53
.bootstrap-select .caret {
54
  border: 0;
55
  width: auto;
56
  height: auto;
57
  margin-top: -10px !important;
58
}
59
 
60
.bootstrap-select .caret:before {
61
    content: "\f107";
62
    display: inline-block;
63
    border: 0;
64
    font-family: FontAwesome;
65
    font-style: normal;
66
    font-weight: normal;
67
}
68
 
69
.bootstrap-select .selected i {
70
  color: #aaa;
71
}
72
 
73
.bootstrap-select .dropdown-menu {
74
  z-index: $zindex-navbar-above !important;
75
}