summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-12-06 11:45:41 +0300
committerAndrew Dolgov <[email protected]>2014-12-06 11:45:41 +0300
commit682c7c29119889d8d773cb8768b9168bbd3cec67 (patch)
tree9ab4af84277abad1588ced250329497a9d20916c /themes
parentc63850fad00f228ae9613d8f662dd4d2ff05e528 (diff)
night theme: add workaround for grayscale filter not working on firefox, other minor tweaks
Diffstat (limited to 'themes')
-rw-r--r--themes/night.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/themes/night.css b/themes/night.css
index 5ab3c5b89..78b73f09a 100644
--- a/themes/night.css
+++ b/themes/night.css
@@ -3,12 +3,17 @@
body#ttrssMain #feeds-holder {
background : #222;
border-color : #666;
+ border-left-width : 1px;
}
body#ttrssMain #headlines-frame {
border-color : #ddd;
}
+body#ttrssMain div.whiteBox {
+ border-color : #666;
+}
+
body#ttrssMain #content-insert {
background : #333;
}
@@ -132,6 +137,7 @@ body#ttrssMain #feedTree img,
body#ttrssMain .postContent img {
filter: grayscale(1);
-webkit-filter: grayscale(1);
+ filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); // firefox lol
}
body#ttrssMain .hl img.hlScorePic {