roadviolation.css
3.06 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
/*---------------弹窗------------------*/
.whitelist-findPark {
position: absolute;
top: 0;
right: 0;
height: 34px;
width: 34px;
background: url(../../otherSetting/img/find_icon.png) no-repeat;
background-size: 17px 17px;
background-position: 6px 8px;
cursor: pointer;
}
.whitelist-group{
width: 656px;
height: 390px;
margin-left: 12px;
background-color: #f5f7f8;
margin-bottom: 24px;
}
.whitelist-form-group-ul {
float: left;
height: 368px;
margin-left: 13px;
width: 320px;
padding-top: 15px;
}
.whitelist-line1 {
width: 1px;
height: 350px;
background-color: #c2cad8;
margin-top: 18px;
float: left;
}
.whitelist-form-grup-checked{
padding-top: 18px;
height: 368px;
width: 310px;
float: left;
overflow-y: auto;
}
.treeview-checkable_org {
height: 352px;
/* margin-left: 30px; */
width: 300px;
overflow-y: auto;
overflow-x: auto;
float: left;
}
.whitelist-parkCheck, .whitelist-editParkCheck {
height: 28px;
width: 142px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
line-height: 28px;
padding: 0 24px 0 12px;
display: inline-block;
border-radius: 4px !important;
background-color: #fff;
position: relative;
border: 1px solid #d8e2e5;
margin-left: 8px;
}
.closex, .editclosex {
position: absolute;
top: 8px;
right: 9px;
height: 9px;
width: 9px;
background: url(../../otherSetting/img/parkclose_icon.png) no-repeat;
background-size: 9px 9px;
cursor: pointer;
}
.whitelist-padtop8{
padding-top: 8px !important;
}
/*单选复选美化*/
input[type=checkbox],
input[type=radio ]{
width : 28px;
height : 24px;
margin : 0;
padding : 0;
opacity : 0;
filter: "alpha(opacity=0)"; /* IE 8 */
}
input[type=checkbox]+ label{
display : inline-block;
margin-left : -28px;
padding-left : 28px;
background : url('../../otherSetting/img/input-checkexActive.png') no-repeat 0 center;
line-height : 24px;
opacity : 1;
}
input[type=checkbox]:hover + label{
background: url('../../otherSetting/img/input-checkexActive.png') no-repeat 0 center;
}
input[type=checkbox]:checked + label{
background: url('../../otherSetting/img/input-checkbox.png') no-repeat 0 center;
}
input[type=checkbox]:checked:hover + label{
background: url('../../otherSetting/img/input-checkbox.png') no-repeat 0 center;
}
input[type=radio] + label{
/*margin-right: 14px;*/
display : inline-block;
margin-left : -28px;
padding-left : 20px;
background : url('../../otherSetting/img/input-radio.png') no-repeat 0 center ;
line-height : 24px;
}
input[type=radio]:hover + label{
background: url('../../otherSetting/img/input-radio.png') no-repeat 0 center;
}
input[type=radio]:checked + label{
background : url('../../otherSetting/img/input-radio-active.png') no-repeat 0 center;
}
input[type=radio]:checked:hover + label{
background: url('../../otherSetting/img/input-radio-active.png') no-repeat 0 center;
}