-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path_input-dropdown.scss
37 lines (37 loc) · 1.03 KB
/
_input-dropdown.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
.input-dropdown {
.dropdown-wrapper {
position: relative;
&.multi {
&:after {
content: none;
}
select {
padding: $input-textbox-padding;
option {
padding: $input-textbox-padding;
cursor: pointer;
&:checked {
background-color: $primary-color;
}
}
}
}
&:after {
content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAp0lEQVRIS+2SUQrDIAyG/6AH2E3WI1i8dmDuBt1NegDFIrgRhC22UNYHffIh/l/yGcLJh07OxwCohoeiiyvy3i9ElGOMcwhhle06527W2geAlZnnb6P8/OQKuANYJESETwCezOwOAUqQMSYQ0QdSgmrnU875lVJy7XQSpq5pC6mPu8JLrQooRQ0EPZ2/p+gCSEi5a1p2KVIXXSnonuAoaABUc0PR/xVtJW9OGV1k1e8AAAAASUVORK5CYII=");
position: absolute;
right: 5px;
top: -2px;
color: $input-border-color;
pointer-events: none;
}
select {
appearance: none;
@include common;
@include transition;
padding-right: 30px;
&:focus {
border-color: $input-border-color-dark;
}
}
}
}