-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangularjs-select.css
More file actions
66 lines (55 loc) · 1.03 KB
/
angularjs-select.css
File metadata and controls
66 lines (55 loc) · 1.03 KB
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
.select-picker {
padding-top: 0;
padding-bottom: 0;
box-sizing: content-box;
width: 400px;
}
.select-picker ul {
list-style: none;
padding-left: 0;
}
.select-picker .search-wrapper {
padding: 5px 10px;
}
.search-wrapper .item-search {
border-radius: 15px;
}
.select-menu {
border-top: 1px solid #ccc;
}
.select-menu > ul {
width: 200px;
height: 100%;
margin-bottom: 0;
position: relative;
}
.select-group {
box-sizing: border-box;
padding: 15px 10px;
border-right: 1px solid #ccc;
border-left: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.select-group:hover {
background-color: #eee;
}
.select-group > ul {
display: none;
position: absolute;
height: 100%;
left: 200px;
top: 0px;
width: 200px;
overflow: auto;
}
.select-group > ul > li {
cursor: pointer;
padding: 5px 10px;
border-bottom: 1px solid #ccc;
}
.select-group > ul > li:hover {
background-color: #eee;
}
.select-group:hover ul {
display: inherit;
}