summaryrefslogtreecommitdiffstats
path: root/hyperkitty/static/css
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-06-03 20:23:45 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-06-03 20:23:45 +0200
commitfcdaa7f3fd2b830ca566386a1711070407c7f191 (patch)
tree24648e4e8c299addc68d44445c52d4d5cf35fd12 /hyperkitty/static/css
parent30be2dbbcff4b01869bbb0120eb6679cc4b55cd0 (diff)
downloadhyperkitty-fcdaa7f3fd2b830ca566386a1711070407c7f191.tar.gz
hyperkitty-fcdaa7f3fd2b830ca566386a1711070407c7f191.tar.xz
hyperkitty-fcdaa7f3fd2b830ca566386a1711070407c7f191.zip
Add a navigation bar to skip through unread messages
Diffstat (limited to 'hyperkitty/static/css')
-rw-r--r--hyperkitty/static/css/hyperkitty-message.css33
1 files changed, 30 insertions, 3 deletions
diff --git a/hyperkitty/static/css/hyperkitty-message.css b/hyperkitty/static/css/hyperkitty-message.css
index 3e43e3d..3525aed 100644
--- a/hyperkitty/static/css/hyperkitty-message.css
+++ b/hyperkitty/static/css/hyperkitty-message.css
@@ -88,15 +88,22 @@
margin-right: 2em;
}
-.favorite a {
+#thread-overview-info form.favorite {
+ margin-bottom: 0;
+}
+#thread-overview-info .favorite a {
color: rgb(167, 169, 172);
}
-.favorite a.saved,
-.favorite a.notsaved {
+#thread-overview-info .favorite a.saved,
+#thread-overview-info .favorite a.notsaved {
/* Will be shown via Javascript */
display: none;
}
+#thread-overview-info .unread {
+ margin: 0 2px 0 2px;
+}
+
/* Tags */
#tags {
color: rgb(167, 169, 172);
@@ -261,3 +268,23 @@
border-left: 2px solid rgb(55, 113, 200);
padding-left: 0.2em;
}
+
+
+/*
+ * Navigation for unread messages
+ */
+#unreadnavbar {
+ position: fixed;
+ bottom: 0;
+ right: 0;
+ text-align: right;
+ padding-right: 2em;
+ display: none;
+}
+#unreadnavbar div {
+ width: auto;
+ padding: 0.2em 1em;
+ border: 1px solid #888;
+ border-bottom: none;
+ background-color: #eee;
+}