summaryrefslogtreecommitdiffstats
path: root/css/feeds.css
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-11 15:30:31 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-11 15:30:55 +0100
commit5492e60510379add1523454f322def81167be8be (patch)
tree8fff208ff6492758cff1b17aae7ec02c797cd322 /css/feeds.css
parente10d99e13da782e4c4bed03974bb10959ed333b4 (diff)
new style and style cleanup for the news app
Diffstat (limited to 'css/feeds.css')
-rw-r--r--css/feeds.css82
1 files changed, 82 insertions, 0 deletions
diff --git a/css/feeds.css b/css/feeds.css
new file mode 100644
index 000000000..5ae430aec
--- /dev/null
+++ b/css/feeds.css
@@ -0,0 +1,82 @@
+.starred-icon {
+ background-image: url('%appswebroot%/news/img/starred.png');
+}
+
+.subscriptions-icon {
+ background-image: url('%appswebroot%/news/img/rss.svg');
+}
+
+.unread {
+ font-weight: bold;
+}
+
+#left-content .unread > a {
+ padding-right: 32px;
+}
+
+
+
+#left-content .utils {
+ position: absolute;
+ right: 0;
+ top: 0;
+ bottom: 0;
+ display: none;
+}
+
+#left-content .utils button {
+ margin: 5px 0 0 0;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-color: transparent;
+ border: 0;
+ box-shadow: none;
+}
+
+.unread-counter {
+ padding: 6px 8px 5px;
+ position: absolute;
+ z-index: 5;
+ right: 0;
+ top: 0;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ text-align: center;
+ font-size: 9pt;
+ display: none;
+}
+
+#left-content li:hover .utils > .unread-counter {
+ display: none;
+}
+
+.unread .unread-counter {
+ display: block;
+}
+
+
+/* general */
+button.action {
+ opacity: .5;
+}
+
+button.action:hover {
+ opacity: 1;
+}
+
+
+#left-content li:hover > .utils {
+ display: block;
+}
+
+.delete-icon {
+ background-image: url('%webroot%/core/img/actions/delete.svg');
+}
+
+.edit-icon {
+ background-image: url('%webroot%/core/img/actions/rename.svg');
+}
+
+.mark-read-icon {
+ background-image: url('%appswebroot%/news/img/mark_read.svg');
+}