blob: 03c6338a5d4f9c8895c96ff53d1aeddc9e1cf6bb (
plain)
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
|
/* DROP-DOWN CSS RULES
----------------------------------------------------------------------------------
*/
#filter-dropdown, #fields-dropdown {
display: inline-block;
}
.list-title {
margin: 0px 5px 0px 0px;
}
.filter-title{
margin: 0px 5px 0px 0px;
}
.drop-menu li input {
width: 18px;
cursor: pointer;
}
.drop-menu li span {
vertical-align: top;
}
.drop-menu li:hover {
background-color: #f7f7f7;
}
.drop-menu .btn {
padding: 5px 12px;
margin-right: 5px;
width: auto;
height: 31px;
}
.drop-menu .dropdown-menu {
width: 250px !important;
padding: 10px;
}
input.checkbox_top[type="checkbox"]:checked + span {
color: black;
}
input.checkbox_top[type="checkbox"] + span {
color: grey;
}
.container_generated_checkbox {
display: contents;
position: relative;
/* padding-left: 35px; */
/* margin-bottom: 12px; */
cursor: pointer;
/* font-size: 22px; */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
font-weight: 500;
}
.container_checkbox {
display: contents;
position: relative;
/* padding-left: 35px; */
/* margin-bottom: 12px; */
cursor: pointer;
/* font-size: 22px; */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
font-weight: 500;
}
|