-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuperstar.css
120 lines (104 loc) · 2.47 KB
/
superstar.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
.ms-options-wrap,
.ms-options-wrap * {
box-sizing: border-box;
}
.ms-options-wrap > button:focus,
.ms-options-wrap > button {
position: relative;
width: 160px;
text-align: left;
border: 1px solid #9ebbd5;
background-color: #fff;
padding: 5px 20px 5px 5px;
margin-top: 1px;
font-size: 13px;
color: #9ebbd5;
outline: none;
white-space: nowrap;
}
.ms-options-wrap > button:after {
content: ' ';
height: 0;
position: absolute;
top: 50%;
right: 5px;
width: 0;
border: 6px solid rgba(0, 0, 0, 0);
border-top-color: #9ebbd5;
margin-top: -3px;
}
.ms-options-wrap > .ms-options {
position: absolute;
left: 0;
width: 275px;
background: white;
z-index: 2000;
border: 1px solid #aaa;
text-align: left;
}
.ms-options-wrap > .ms-options > .ms-search input {
width: 100%;
padding: 4px 5px;
border: none;
border-bottom: 1px groove;
outline: none;
}
.ms-options-wrap > .ms-options .ms-selectall {
display: inline-block;
font-size: 1.1em;
/*text-transform: lowercase;*/
text-decoration: none;
cursor: pointer;
font-weight: bold;
}
.ms-options-wrap > .ms-options .ms-selectall:hover {
text-decoration: none;
font-weight: bold;
}
.ms-options-wrap > .ms-options > .ms-selectall.global {
margin: 5px 5px;
cursor: pointer;
font-weight: bold;
}
.ms-options-wrap > .ms-options > ul > li.optgroup {
padding: 5px;
}
.ms-options-wrap > .ms-options > ul > li.optgroup + li.optgroup {
border-top: 1px solid #aaa;
}
.ms-options-wrap > .ms-options > ul > li.optgroup .label {
display: block;
padding: 5px 0 0 0;
font-weight: bold;
}
.ms-options-wrap > .ms-options > ul label {
position: relative;
display: inline-block;
width: 100%;
padding: 4px 4px;
margin: 0px 0;
}
/*.ms-options-wrap > .ms-options > ul li.selected label,.ms-options-wrap > .ms-options > ul label:hover {
background-color: #efefef;
}*/
.ms-options-wrap > .ms-options > ul input[type="checkbox"] {
margin-right: 5px;
position: absolute;
font-weight: bold;
left: 2px;
top: 2px;
transform: scale(1.2);
}
.ms-options-wrap * li {
background: #ececec;
border-bottom: 1px solid #FFFFFF;
}
/* select alternating items starting with the second item */
.ms-options-wrap * li:nth-of-type(2n) {
background: #d3dbe4;
border-bottom: 1px solid #FFFFFF;
}
.ms-options-wrap li[disabled] {
opacity: 0.4;
pointer-events: none;
}