forked from gurayyarar/AdminBSBMaterialDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_bootstrapselect.scss
77 lines (67 loc) · 1.56 KB
/
_bootstrapselect.scss
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
.bootstrap-select {
box-shadow: none !important;
border-bottom: 1px solid #ddd !important;
@include border-radius(0);
.dropdown-toggle {
&:focus,
&:active {
outline: none !important;
}
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
padding: 0 0 5px 0;
border-bottom: 1px solid #e9e9e9;
.form-control {
@include border-radius(0);
@include box-shadow(none !important);
border: none;
margin-left: 30px;
}
}
.bs-searchbox {
position: relative;
&:after {
content: '\E8B6';
font-family: 'Material Icons';
position: absolute;
top: 0;
left: 10px;
font-size: 25px;
}
}
ul.dropdown-menu {
margin-top: 0 !important;
}
.dropdown-menu {
li.selected {
a {
background-color: #eee !important;
color: #555 !important;
}
}
.active {
a {
background-color: transparent;
color: #333 !important;
}
}
.notify {
background-color: #F44336 !important;
color: #fff !important;
border: none !important;
}
}
}
.bootstrap-select.btn-group.show-tick {
.dropdown-menu {
li.selected {
a {
span.check-mark {
margin-top: 9px;
}
}
}
}
}