summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-09-14 12:51:12 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-09-14 12:51:21 +0200
commitadc93078586991af9444dfadfbae244882f89bcf (patch)
treea9218851f176150a594bc3fe8b48334232e782d0 /css
parent3dc7749fe92acb0baeceaee9f0cf6a53b2d5fc3a (diff)
display scrollbar only on hover
Diffstat (limited to 'css')
-rw-r--r--css/news.css8
1 files changed, 6 insertions, 2 deletions
diff --git a/css/news.css b/css/news.css
index 279bee842..028baa260 100644
--- a/css/news.css
+++ b/css/news.css
@@ -94,19 +94,23 @@ div.add_parentfolder {
#feeds {
height: 100%;
- overflow: auto;
+ overflow: none;
background-color: #eee;
color: #333;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
+ #feeds:hover {
+ overflow: auto;
+ }
+
#feeds .unread_items_counter {
display: none;
}
#feeds > ul {
- height: 100%;
+ min-height: 100%;
overflow-x: hidden;
}