summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-14 15:49:49 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-14 15:49:49 +0200
commit0c73f5cf321274e7f99f2ed86cb60c2c6a6a1451 (patch)
tree23d24ff6cae290ca208d2c7a60344973245b45c6 /css
parentc072cc7ff8aa06a84b5f17f2a8f648649b4ae397 (diff)
Dont issue more post request on read than necesarry, make show only new items the default database settings still need to be written though, simplified and cleaned up the feedlist code, html and css
Diffstat (limited to 'css')
-rw-r--r--css/news.css23
1 files changed, 16 insertions, 7 deletions
diff --git a/css/news.css b/css/news.css
index c2018ea52..986483225 100644
--- a/css/news.css
+++ b/css/news.css
@@ -121,6 +121,8 @@ div.feed_controls {
position: relative;
text-align: right;
padding-left: 5px !important;
+ box-sizing: border-box;
+ -moz-box-sizing: border-box;
}
#feeds li.feed a {
@@ -131,17 +133,25 @@ div.feed_controls {
width: 65%;
}
- #feeds li.feed a.nonzero {
+ #feeds li.feed a {
font-weight: bold;
}
- #feeds li.feed a.zero {
+ #feeds li.feed a.all_read {
font-weight: normal;
}
#feeds li#selected_feed {
background-color: #FF9933 !important;
}
+
+ #feeds li.feed.updating {
+ padding-right: 21px;
+ background-image: url('%webroot%/core/img/loader.gif');
+ background-size: 16px 16px;
+ background-repeat: no-repeat;
+ background-position: 20em center;
+ }
#feeds li.feed:hover {
background-color: rgb(221, 221, 221) !important;
@@ -203,7 +213,7 @@ div.feed_controls {
top: 50%;
}
- #feeds .unreaditemcounter.nonzero {
+ #feeds .unreaditemcounter {
position: relative;
background: #5E5E5E;
border-radius: 5px;
@@ -213,10 +223,9 @@ div.feed_controls {
margin: 0 0.3em 0 0.3em;
}
- #feeds .unreaditemcounter.zero {
- position: relative;
- margin: 0 0.3em 0 0;
- }
+ #feeds .unreaditemcounter.all_read {
+ display: none !important;
+ }