summaryrefslogtreecommitdiff
path: root/tt-rss.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-04 12:01:53 +0400
committerAndrew Dolgov <[email protected]>2013-05-04 12:01:53 +0400
commit8d090a910b7e2d4d1b26e734c09eaa773b853804 (patch)
tree65cd75c0714198f6b509ffa0d5aeb41a6e29647c /tt-rss.css
parent72c29b65d4494f6df83c558e3bd281ff440e20af (diff)
use css nth-child instead of old even/odd class hacks for normal mode
Diffstat (limited to 'tt-rss.css')
-rw-r--r--tt-rss.css20
1 files changed, 3 insertions, 17 deletions
diff --git a/tt-rss.css b/tt-rss.css
index 454e2ffd1..6b4a10d7d 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -187,17 +187,12 @@ a:hover {
font-weight : bold;
}
-.hl.even.Grayed {
- background : #f0f0f0;
+.hl.Grayed {
color : #909090;
- border-width : 0px 0px 1px 0px;
- border-style : solid;
- border-color : #c0c0c0;
- border-collapse : collapse;
}
-.hl.odd.Grayed {
- color : #909090;
+#headlines-frame div.hl:nth-child(even) {
+ background : #f0f0f0;
}
.hl {
@@ -210,15 +205,6 @@ a:hover {
background : #ecf4ff ! important;
}
-.hl.even {
- background : #f0f0f0;
- border-collapse : collapse;
-}
-
-.hl.odd {
- background : white;
-}
-
div.filterTestHolder {
height : 300px;
overflow : auto;