-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropicon-simple.css
More file actions
43 lines (43 loc) · 887 Bytes
/
dropicon-simple.css
File metadata and controls
43 lines (43 loc) · 887 Bytes
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
.simple-theme.dropicon {
width: 200px;
border: 1px solid #ccc;
box-sizing: border-box;
}
.simple-theme.dropicon:focus {
outline: 1px solid blue;
}
.simple-theme.dropicon.open:focus {
outline: none;
}
.simple-theme.dropicon .list li > *,
.simple-theme.dropicon .head > * {
padding: 5px 10px;
cursor: pointer;
}
.simple-theme.dropicon .head::after {
content: '\25BE';
position: absolute;
color: #555;
right: 13px;
top: 5px;
}
.simple-theme.dropicon.open .head::after {
content: '\25B4';
top: 3px;
}
.simple-theme.dropicon .list {
left: -1px;
background-color: white;
border: 1px solid #ccc;
border-top: none;
width: 100%;
}
.simple-theme.dropicon .list .item.selected > * {
background-color: #ddf;
}
.simple-theme.dropicon .list .item.focused {
outline: 1px solid blue;
}
.simple-theme.dropicon .list .item > *:hover {
background-color: #eef;
}