10646c94
Andy
add
|
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
|
.ITD-complex-table thead tr:nth-of-type(2) th {
border-top: 1px solid #e7ecf1!important;
}
/*input radio style*/
/*单选复选美化*/
input[type=checkbox],
input[type=radio ]{
width : 28px;
height : 24px;
margin : 0;
padding : 0;
opacity : 0;
filter: "alpha(opacity=0)"; /* IE 8 */
}
input[type=radio] + label{
/*margin-right: 14px;*/
display : inline-block;
margin-left : -28px;
padding-left : 20px;
background : url('../../img/input-radio.png') no-repeat 0 center ;
line-height : 24px;
}
input[type=radio]:hover + label{
background: url('../../img/input-radio.png') no-repeat 0 center;
}
input[type=radio]:checked + label{
background : url('../../img/input-radio-active.png') no-repeat 0 center;
}
input[type=radio]:checked:hover + label{
background: url('../../img/input-radio-active.png') no-repeat 0 center;
}
|