forked from vogievetsky/DVL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvl.css
50 lines (50 loc) · 1.04 KB
/
dvl.css
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
/* line 4, src/style/dvl.scss */
.dropdown {
display: inline-block;
position: relative;
cursor: pointer;
white-space: nowrap;
border: 1px solid white;
padding: 2px 3px 2px 5px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-moz-user-select: text;
-ms-user-select: text;
-webkit-user-select: text;
user-select: text;
}
/* line 14, src/style/dvl.scss */
.dropdown div.title-cont {
line-height: 18px;
height: 21px;
cursor: default;
outline: none;
}
/* line 21, src/style/dvl.scss */
.dropdown ul.menu-cont {
position: absolute;
z-index: 1000;
list-style-type: none;
top: 100%;
left: 0;
margin: 0;
padding: 2px;
max-height: 200px;
overflow-x: hidden;
overflow-y: auto;
border: 1px solid black;
background: white;
}
/* line 37, src/style/dvl.scss */
.dropdown ul.menu-cont li.item {
position: relative;
cursor: pointer;
font-size: 12px;
line-height: 26px;
padding-right: 40px;
}
/* line 46, src/style/dvl.scss */
.dropdown ul.menu-cont li.spacer {
border-top: 1px solid gray;
}