]> git.wh0rd.org Git - tt-rss.git/commitdiff
update checkbox styling
authorAndrew Dolgov <noreply@fakecake.org>
Mon, 27 Jan 2014 21:10:59 +0000 (01:10 +0400)
committerAndrew Dolgov <noreply@fakecake.org>
Mon, 27 Jan 2014 21:10:59 +0000 (01:10 +0400)
css/prefs.css
css/tt-rss.css

index bc546c72e21159b27f782b3c1430ced54efec5e6..7894cf9e8038bc134005e6283faa2ea41f72ea84 100644 (file)
@@ -143,3 +143,4 @@ table.prefErrorLog td.filename, table.prefErrorLog td.login, table.prefErrorLog
        top : -2px;
 }
 
+
index 5befafd1fe2d0b03ec31eacc0858c49ad654f218..d1c474a72826417b018389a7a1ec136c9771649f 100644 (file)
@@ -1199,6 +1199,10 @@ div.enclosure_title {
 
 }
 
+body#ttrssMain #headlines-frame .dijitCheckBox {
+       border-width : 0px;
+}
+
 .claro .dijitCheckBox {
        background-image : url("../images/untick.png");
        background-color : transparent;
@@ -1206,14 +1210,20 @@ div.enclosure_title {
        height : 16px;
        background-position : center center;    
        opacity : 0.6;
-       -webkit-transition : opacity 0.5s;
-       transition : opacity 0.5s;
+       -webkit-transition : opacity 0.25s;
+       transition : opacity 0.25s;
+       border : 1px solid #eee;
+       border-radius : 2px;
+       padding : 1px;
 }
 .claro .dijitCheckBox:hover {
        opacity : 1;
 }
 
 .claro .dijitCheckBox.dijitCheckBoxChecked {
+       border-color : #ddffdd;
        background-image : url("../images/tick.png");
        opacity : 1;
 }
+
+