update checkbox styling
This commit is contained in:
parent
d6b74cd40a
commit
e7c87c298b
|
@ -143,3 +143,4 @@ table.prefErrorLog td.filename, table.prefErrorLog td.login, table.prefErrorLog
|
||||||
top : -2px;
|
top : -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1199,6 +1199,10 @@ div.enclosure_title {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body#ttrssMain #headlines-frame .dijitCheckBox {
|
||||||
|
border-width : 0px;
|
||||||
|
}
|
||||||
|
|
||||||
.claro .dijitCheckBox {
|
.claro .dijitCheckBox {
|
||||||
background-image : url("../images/untick.png");
|
background-image : url("../images/untick.png");
|
||||||
background-color : transparent;
|
background-color : transparent;
|
||||||
|
@ -1206,14 +1210,20 @@ div.enclosure_title {
|
||||||
height : 16px;
|
height : 16px;
|
||||||
background-position : center center;
|
background-position : center center;
|
||||||
opacity : 0.6;
|
opacity : 0.6;
|
||||||
-webkit-transition : opacity 0.5s;
|
-webkit-transition : opacity 0.25s;
|
||||||
transition : opacity 0.5s;
|
transition : opacity 0.25s;
|
||||||
|
border : 1px solid #eee;
|
||||||
|
border-radius : 2px;
|
||||||
|
padding : 1px;
|
||||||
}
|
}
|
||||||
.claro .dijitCheckBox:hover {
|
.claro .dijitCheckBox:hover {
|
||||||
opacity : 1;
|
opacity : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.claro .dijitCheckBox.dijitCheckBoxChecked {
|
.claro .dijitCheckBox.dijitCheckBoxChecked {
|
||||||
|
border-color : #ddffdd;
|
||||||
background-image : url("../images/tick.png");
|
background-image : url("../images/tick.png");
|
||||||
opacity : 1;
|
opacity : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue