summaryrefslogtreecommitdiffstats
path: root/hyperkitty/static/css/hyperkitty-threadslist.css
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/static/css/hyperkitty-threadslist.css')
-rw-r--r--hyperkitty/static/css/hyperkitty-threadslist.css199
1 files changed, 0 insertions, 199 deletions
diff --git a/hyperkitty/static/css/hyperkitty-threadslist.css b/hyperkitty/static/css/hyperkitty-threadslist.css
deleted file mode 100644
index 19dd239..0000000
--- a/hyperkitty/static/css/hyperkitty-threadslist.css
+++ /dev/null
@@ -1,199 +0,0 @@
-/*
- * Threads view header
- */
-
-#thread-list .thread-list-header {
- margin-bottom: 4em;
-}
-
-#thread-list .thread-list-header .thread-list-info {
- display: inline;
- list-style-type: none;
- margin: 0;
- padding: 0;
-}
-#thread-list .thread-list-header .thread-list-info li {
- display: inline;
- margin-right: 2em;
-}
-#thread-list .thread-list-header .thread-list-info li.list-address {
- font-size: 120%;
- margin-right: 4em;
-}
-
-#thread-list .thread-list-header .thread-new {
- float: right;
-}
-
-#thread-list .thread-list-header form {
- margin-bottom: 0;
- float: right;
-}
-#thread-list .thread-list-header form select {
- margin-bottom: 0;
- width: auto;
-}
-
-
-/*
- * Thread view
- */
-
-.thread {
- margin: 2em 0 2em 0;
-}
-
-.thread-id {
- font-weight: bold;
- font-size: 125%;
- color: rgb(102, 102, 102);
- vertical-align: top;
- padding-right: 10px;
-}
-
-.thread-title {
- font-weight: bold;
- font-size: 125%;
-}
-
-.thread-date {
- font-style: italic;
- font-size: 70%;
- color: rgb(128, 0, 0);
- margin-left: 1em;
-}
-
-.thread-info {
- text-align:right;
- clear: both;
- margin-left: 60px;
-}
-
-.thread .thread-category {
- /*margin-left: 1em;*/
- float: left;
-}
-
-.thread-info .tags {
- display: inline;
- margin-right: 1em;
-}
-.thread-info .tags li {
- padding: 0 0.2em 0 0.2em;
-}
-.thread-info .tags a {
- font-size: 90%;
-}
-
-.thread-info .thread-show {
- padding-top: 2px;
- padding-bottom: 2px;
- margin-left: 2em;
-}
-
-.thread.unread i.unread {
- vertical-align: baseline;
-}
-
-.thread-content {
- margin-top: 0.5em;
-}
-.thread-content .gravatar {
- float: left;
-}
-.thread-content .thread-email {
- display: block;
- margin-left: 60px;
- margin-bottom: 5px;
-}
-
-/* Part containing the body of the mail which can be shown/hidden */
-.expander {
- background-image: linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%);
- background-image: -o-linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%);
- background-image: -moz-linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%);
- background-image: -webkit-linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%);
- background-image: -ms-linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%);
-
- background-image: -webkit-gradient(
- linear,
- left bottom,
- left top,
- color-stop(0.11, rgb(236,236,236)),
- color-stop(1, rgb(255,255,255))
- );
- border-style: solid;
- border-width: 1px;
- border-color: rgb(236,236,236);
- -webkit-border-radius: 5px 5px 5px 5px;
- -moz-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- padding: 1em;
- display: block;
- vertical-align: top;
- white-space: pre;
-}
-
-.thread-email .expander.collapsed {
- white-space: normal;
-}
-
-/*
-.thread-email span.read-more a,
-.thread-email span.read-less a {
- display: block;
- float: right;
- margin-top: 0.5em;
-}
-*/
-
-
-
-/*
- * Thread types
- */
-
-.type {
- font-variant: small-caps;
- font-weight: bold;
- color: white;
- padding: 3px;
- -webkit-border-radius: 5px 5px 5px 5px;
- -moz-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- vertical-align: top;
- width: 110px;
- text-align:center;
-}
-
-.type a {
- color: white;
-}
-
-.type_question {
- background-color: rgb(179, 128, 255);
-}
-
-.type_agenda {
- background-color: rgb(42, 127, 255);
-}
-
-.type_todo {
- background-color: rgb(200, 171, 55);
-}
-
-.type_dead {
- background-color: rgb(0, 0, 0);
-}
-
-.type_announcement {
- background-color: rgb(170, 212, 0);
-}
-
-.type_policy {
- background-color: rgb(200, 55, 171);
-}
-
-.type_test {
- background-color: rgb(200, 171, 55);
-}