From: Andrew Dolgov Date: Mon, 27 Jan 2014 21:10:59 +0000 (+0400) Subject: update checkbox styling X-Git-Tag: 1.12~98 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e7c87c298bd153da9d9f500f8f81f94db9c3c1b6;p=tt-rss.git update checkbox styling --- diff --git a/css/prefs.css b/css/prefs.css index bc546c72..7894cf9e 100644 --- a/css/prefs.css +++ b/css/prefs.css @@ -143,3 +143,4 @@ table.prefErrorLog td.filename, table.prefErrorLog td.login, table.prefErrorLog top : -2px; } + diff --git a/css/tt-rss.css b/css/tt-rss.css index 5befafd1..d1c474a7 100644 --- a/css/tt-rss.css +++ b/css/tt-rss.css @@ -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; } + +