summaryrefslogtreecommitdiffstats
path: root/hyperkitty/static/css/hyperkitty.css
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-02-12 13:29:32 +0100
committerAurélien Bompard <aurelien@bompard.org>2013-02-12 13:29:32 +0100
commitccafc51ade9536046aeb096b04b069f17874fab4 (patch)
treee93564b45884debca14d561552a96a980819943d /hyperkitty/static/css/hyperkitty.css
parent0b0395fe000957b336d0ece6b23af0083a0853ab (diff)
downloadhyperkitty-ccafc51ade9536046aeb096b04b069f17874fab4.tar.gz
hyperkitty-ccafc51ade9536046aeb096b04b069f17874fab4.tar.xz
hyperkitty-ccafc51ade9536046aeb096b04b069f17874fab4.zip
Add a "Create new thread" button
Diffstat (limited to 'hyperkitty/static/css/hyperkitty.css')
-rw-r--r--hyperkitty/static/css/hyperkitty.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/hyperkitty/static/css/hyperkitty.css b/hyperkitty/static/css/hyperkitty.css
index 5381e86..f08baaa 100644
--- a/hyperkitty/static/css/hyperkitty.css
+++ b/hyperkitty/static/css/hyperkitty.css
@@ -134,6 +134,16 @@ table.user-data {
list-style-type: none;
}
+.flashmsg {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ text-align: center;
+}
+.flashmsg .alert {
+ display: inline-block;
+}
+
/* Add icons to some text */
.participant, .discussion, .saved, .notsaved {
@@ -394,6 +404,15 @@ form.likeform {
margin-right: 4em;
}
+#thread-list .thread-list-header .thread-new {
+ float: right;
+}
+#thread-list .thread-list-header .thread-new strong {
+ font-size: 150%;
+ font-weight: bold;
+ margin-right: 0.2em;
+}
+
/* Thread view */
@@ -902,3 +921,18 @@ a.reply.disabled {
white-space: pre;
text-align: left;
}
+
+
+/*
+ * New thread form
+ */
+.new-thread-form {
+ margin-left: 2em;
+}
+.new-thread-form #id_subject,
+.new-thread-form textarea {
+ width: 90%;
+}
+.new-thread-form .buttons .submit {
+ margin-right: 2em;
+}