summaryrefslogtreecommitdiffstats
path: root/hyperkitty/static/css
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/static/css')
-rw-r--r--hyperkitty/static/css/hyperkitty-base.css19
-rw-r--r--hyperkitty/static/css/hyperkitty-common.css323
-rw-r--r--hyperkitty/static/css/hyperkitty-index.css37
-rw-r--r--hyperkitty/static/css/hyperkitty-message.css319
-rw-r--r--hyperkitty/static/css/hyperkitty-overview.css100
-rw-r--r--hyperkitty/static/css/hyperkitty-threadslist.css199
-rw-r--r--hyperkitty/static/css/hyperkitty-user.css93
7 files changed, 0 insertions, 1090 deletions
diff --git a/hyperkitty/static/css/hyperkitty-base.css b/hyperkitty/static/css/hyperkitty-base.css
deleted file mode 100644
index 4455312..0000000
--- a/hyperkitty/static/css/hyperkitty-base.css
+++ /dev/null
@@ -1,19 +0,0 @@
-body {
- position: relative;
- padding-top: 70px;
- background-color: white;
-}
-
-ul.nav.auth {
- float: right;
- margin: 0;
-}
-
-#search-form {
- float: right;
- margin-right: 4em;
- padding: 5px 0;
-}
-#search-form form {
- margin-bottom: 0;
-}
diff --git a/hyperkitty/static/css/hyperkitty-common.css b/hyperkitty/static/css/hyperkitty-common.css
deleted file mode 100644
index fa8b6d4..0000000
--- a/hyperkitty/static/css/hyperkitty-common.css
+++ /dev/null
@@ -1,323 +0,0 @@
-/*
- * Classes common to two or more pages, but not all (those go to base.css)
- */
-
-
-.right {
- text-align: right;
-}
-
-.inline-block {
- display: inline-block;
-}
-
-.inline li, .inline-block li {
- display: inline-block;
- list-style-type: none;
-}
-
-
-/* from Bootstrap's alert class */
-.errorlist {
- list-style-type: none;
- margin: 0 0 20px 0;
- padding: 8px 35px 8px 14px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- border: 1px solid #eed3d7;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- color: #b94a48;
- background-color: #f2dede;
-}
-
-
-/* Flash messages */
-.flashmsgs {
- position: absolute;
- left: 0;
- width: 100%;
- text-align: center;
-}
-.flashmsgs .flashmsg-wrapper {
- display: block;
-}
-.flashmsgs .alert {
- display: inline-block;
-}
-
-
-/* Forms (replies, registration, ...) */
-form .buttons .submit {
- /* leave some space before the cancel button/link */
- margin-right: 1em;
-}
-
-
-/* Favorites */
-.saved, .notsaved {
- padding-left: 20px;
- background: no-repeat scroll left center;
-}
-.saved {
- background-image: url("../img/saved.png");
-}
-.notsaved {
- background-image: url("../img/notsaved.png");
-}
-
-
-/* Gravatar */
-.gravatar {
- vertical-align: top;
- width:40px;
- font-size: 70%;
-}
-.gravatar img {
- width: 40px;
-}
-
-
-/* On the thread list and the overview page */
-.participant, .discussion {
- padding-left: 20px;
- background: no-repeat scroll left center;
-}
-.participant {
- background-image: url("../img/participant.png");
- padding-left: 16px;
- margin-right: 1em;
-}
-.discussion {
- background-image: url("../img/discussion.png");
- margin-right: 2em;
-}
-
-
-/*
- * Like / dislike
- */
-
-form.likeform {
- display: inline;
- margin: 0;
- margin-right: 1em;
- padding: 0;
-}
-.likestatus {
- padding-left: 20px;
- margin-right: 1.5em;
- font-weight: bold;
-}
-
-.neutral {
- background: url("../img/neutral.png") no-repeat scroll left;
-}
-.like {
- background: url("../img/like.png") no-repeat scroll left;
-}
-.likealot {
- background: url("../img/likealot.png") no-repeat scroll left;
-}
-
-.youlike,
-.youdislike {
- padding-left: 15px;
- margin-left: 0.5em;
-}
-.youlike {
- background: url("../img/youlike.png") no-repeat scroll left;
-}
-.youdislike {
- background: url("../img/youdislike.png") no-repeat scroll left;
-}
-.youlike.disabled {
- background: url("../img/youlike-disabled.png") no-repeat scroll left;
- color: #999;
-}
-.youdislike.disabled {
- background: url("../img/youdislike-disabled.png") no-repeat scroll left;
- color: #999;
-}
-
-
-
-/* Months list */
-
-#months-list h3 {
- margin-top: 1em;
- font-size: 120%;
-}
-#months-list {
- padding-top: 1em;
-}
-#months-list li.current {
- font-weight: bold;
-}
-
-
-
-/*
- * Attachments
- */
-
-p.attachments {
- margin-bottom: 0;
- font-weight: bold;
-}
-a.attachments {
- padding-left: 18px;
- background: url("../img/mail-attachment.png") no-repeat scroll left;
-}
-.email-info div.attachments {
- display: inline;
- padding: 0 1em;
-}
-.email-info .attachments ul.attachments-list {
- display: none;
- position: absolute;
- margin-left: 0;
- padding-right: 0.5em;
- border: 1px solid #aaa;
- border-top: none;
- z-index: 1;
-}
-.even .email-info .attachments ul.attachments-list {
- background-color: rgb(246, 246, 246);
-}
-.odd .email-info .attachments ul.attachments-list {
- background-color: rgb(238, 238, 238);
-}
-.email-info .attachments ul.attachments-list li {
- list-style-position: inside;
- padding-left: 0.5em;
-}
-
-
-
-/*
- * Replies
- */
-
-a.reply {
- background: url("../img/reply.png") no-repeat left center;
- padding-left: 20px;
- margin-left: 1em;
-}
-a.reply.disabled {
- background: url("../img/reply-disabled.png") no-repeat left center;
- color: #999;
-}
-.reply-form {
- display: none;
- padding-top: 1em;
-}
-.reply-form p.reply-tools {
- margin-bottom: 0.7em;
-}
-.reply-form p.reply-tools label {
- display: inline;
- font-size: 90%;
- margin-left: 1.5em;
-}
-.reply-form p.reply-tools input {
- margin-top: 0;
- margin-right: 0.1em;
-}
-.reply-form p {
- margin: 0;
-}
-.reply-form #id_subject,
-.reply-form textarea {
- width: 95%;
-}
-.reply-form p.buttons {
- margin-top: 1em;
-}
-.reply-result {
- text-align: center;
-}
-.reply-result .alert {
- display: inline-block;
-}
-.reply-result .alert-success {
- margin-bottom: 0;
-}
-.reply-result .alert-error {
- white-space: pre;
- text-align: left;
-}
-
-
-
-/*
- * New thread
- */
-
-a.thread-new strong {
- font-size: 150%;
- font-weight: bold;
- margin-right: 0.2em;
-}
-
-.new-thread-form {
- margin-left: 2em;
-}
-.new-thread-form #id_subject,
-.new-thread-form textarea {
- width: 90%;
-}
-.new-thread-form p.buttons {
- margin-top: 2em;
-}
-
-
-/*
- * Attachments in replies or new threads
- */
-
-.attach-files-template {
- display: none;
-}
-.attach-files-add {
- display: none;
-}
-.attach-files span {
- display: block;
-}
-
-
-/* AJAX */
-.ajaxloader {
- display: block;
- margin: 1em auto;
-}
-.ui-autocomplete-loading {
- background: white url('../img/ajax-loader.gif') right center no-repeat;
-}
-
-
-/*
- * Categories
- */
-
-.thread-category {
- padding: 0;
-}
-.thread-category form {
- margin: 0;
- display: none;
-}
-.thread-category form p {
- margin: 0;
-}
-.thread-category form select {
- font-size: 90%;
- width: 12em;
- margin: 0;
-}
-.thread-category form .errorlist {
- display: none; /* Displayed manually */
-}
-
-
diff --git a/hyperkitty/static/css/hyperkitty-index.css b/hyperkitty/static/css/hyperkitty-index.css
deleted file mode 100644
index 0bd8889..0000000
--- a/hyperkitty/static/css/hyperkitty-index.css
+++ /dev/null
@@ -1,37 +0,0 @@
-/* List of lists */
-
-#logo {
- display: block;
- margin: 120px auto;
- clear: both;
-}
-
-h1.lists {
- margin-bottom: 0.5em;
-}
-
-.all-lists .list-name {
- font-size: 120%;
- color: black;
- font-weight: bold;
-}
-.all-lists .list-address {
- font-size: 90%;
- font-style: italic;
-}
-.all-lists a {
- display: block;
- padding: 2em;
- margin: 1em auto;
- overflow: hidden;
- border: 1px solid #ccc;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- color: black;
-}
-.all-lists a:hover {
- text-decoration: none;
- background-color: #eee;
- color: black;
-}
diff --git a/hyperkitty/static/css/hyperkitty-message.css b/hyperkitty/static/css/hyperkitty-message.css
deleted file mode 100644
index 0f7ca20..0000000
--- a/hyperkitty/static/css/hyperkitty-message.css
+++ /dev/null
@@ -1,319 +0,0 @@
-/*
- * Message view
- */
-
-.message-header {
- margin-bottom: 3em;
-}
-
-.message-header .thread-back {
- display: block;
- padding-top: 38px;
- width: 160px;
- overflow: hidden;
- background-repeat: no-repeat;
- background-position: top center;
- background-image: url('../img/button_back.png');
- margin-bottom: 1em;
-}
-
-
-
-/*
- * Thread view
- */
-
-.thread-header {
- /*background-color: #f6f6f6;*/
- /*border-bottom: 1px solid #b3b3b3;*/
- margin-bottom: 6em;
- padding: 1em 0;
-}
-
-.thread-header h1,
-.message-header h1 {
- text-align: center;
- font-size: 24px;
- line-height: 26px;
-}
-
-.thread-header .thread-older,
-.thread-header .thread-newer {
- display: block;
- padding-top: 38px;
- width: 160px;
- overflow: hidden;
- background-repeat: no-repeat;
- background-position: top center;
- text-align: center;
- color: #aaaaaa;
-}
-.thread-header .thread-older {
- float: right;
- background-image: url('../img/button_older.png');
-}
-.thread-header .thread-newer {
- float: left;
- background-image: url('../img/button_newer.png');
-}
-
-#olderhread, #newewthread {
- font-size: 70%;
- color: rgb(167, 169, 172);
-}
-
-#olderhread {
- float: right;
- margin-top: 2em;
- margin-right: 20px;
-}
-
-#thread-overview-info {
- float: right;
-}
-
-
-
-/*
- * Thread general information column
- */
-
-.days-num {
- font-size: 200%;
- display: inline-block;
-}
-.days-text {
- font-size: 70%;
- display: inline-block;
- margin-right: 2em;
-}
-
-#thread-overview-info form.favorite {
- margin-bottom: 0;
-}
-#thread-overview-info .favorite a {
- color: rgb(167, 169, 172);
-}
-#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);
- margin-top: 2em;
-}
-
-#tag-title {
- color: rgb(77, 77, 77);
- text-transform: uppercase;
-}
-
-#tags ul {
- padding: 10px 0;
- margin: 0;
-}
-#tags ul li {
- padding-left: 0;
-}
-#tags ul li span {
- margin-left: 5px;
-}
-
-#tags .rmtag {
- margin: 0;
- display: inline;
-}
-#tags .rmtag a {
- visibility: hidden;
- font-size: 125%;
-}
-#tags:hover .rmtag a {
- visibility: visible;
-}
-#tags:hover .rmtag a:hover {
- text-decoration: none;
-}
-
-#add-tag {
- margin-top: 0.3em;
-}
-
-
-/* Categories */
-
-.thread-header .thread-category {
- text-align: center;
-}
-.thread-header .thread-category a.label {
- font-size: 120%;
- line-height: 120%;
-}
-
-/* Participants */
-
-#participants {
- margin-top: 2em;
- color: rgb(167, 169, 172);
-}
-
-#participants_title {
- color: rgb(77, 77, 77);
- text-transform: uppercase;
-}
-
-#participants ul {
- padding: 0;
- margin: 0;
-}
-
-#participants li {
- list-style-type: none;
- margin: 1em 0;
-}
-
-#participants img.gravatar {
- width: 20px;
- vertical-align: middle;
-}
-
-
-/* Main section with the whole thread */
-
-/* First email of the thread. */
-
-.email-header {
- position:relative;
- margin-bottom: 1em;
- height: 40px;
-}
-
-.email-header .gravatar {
- margin-right: 10px;
- display: inline-block;
- vertical-align: middle;
-}
-
-.email-author .name{
- color: rgb(55, 113, 200);
- font-weight: bold;
-}
-.email-author .rank{
- color: rgb(167, 169, 172);
- font-size: 80%;
- font-weight: bold;
-}
-
-.email-first .email-date {
- text-align: right;
-}
-.email-date .date {
- font-weight: bold;
-}
-.email-date .time {
- color: rgb(167, 169, 172);
- margin-left: 0.5em;
- border-bottom: 1px dashed rgb(167, 169, 172);
- cursor: help;
-}
-
-.sort-mode {
- text-align: right;
-}
-
-/* The email thread */
-.replies .email {
- border-top: 1px solid rgb(179, 179, 179);
- padding: 1em;
- margin: 20px 0px 20px 0px;
-}
-.even .email {
- background-color: rgb(246, 246, 246);
-}
-.odd .email {
- background-color: rgb(238, 238, 238);
-}
-.temporary .email {
- background-color: rgb(215, 215, 229);
- display: none;
-}
-.replies .email.unread {
- border-top: 1px solid rgb(100, 100, 100);
- background-color: rgb(214, 214, 214);
-}
-
-.email.unread i.unread {
- float: right;
- margin-right: 2em;
-}
-
-.email-body {
- white-space: pre;
- overflow: auto;
-}
-.replies .email-body {
- -webkit-border-radius: 5px 5px 5px 5px;
- -moz-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- border-style: solid;
- border-width: 1px;
- border-color: rgb(179, 179, 179);
- padding: 5px;
- min-height: 40px;
- background-color: rgb(255, 255, 255);
-}
-
-.email-body span.read-more a,
-.email-body span.read-less a {
- float: right;
- padding: 3px 10px 0px 0px;
-}
-
-.email-info {
- padding: 0px;
- margin-top: 5px;
-}
-
-/* Inline quotes */
-.quoted-switch a {
- background-color: #fafafa;
- padding: 0 4px 2px 4px;
- border-left: 2px solid rgb(55, 113, 200);
- font-weight: bold;
- font-size: 115%;
-}
-.quoted-switch a:hover {
- text-decoration: none;
-}
-.quoted-text {
- 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;
-}
diff --git a/hyperkitty/static/css/hyperkitty-overview.css b/hyperkitty/static/css/hyperkitty-overview.css
deleted file mode 100644
index 1fef97c..0000000
--- a/hyperkitty/static/css/hyperkitty-overview.css
+++ /dev/null
@@ -1,100 +0,0 @@
-/* Summary page */
-
-#recent-activities h2 {
- font-size: 22px;
- line-height: 32px;
- margin-bottom: 0.5em;
- text-align: center;
-}
-
-#recent-activities h3 {
- font-size: 20px;
- line-height: 28px;
- margin-bottom: 0.5em;
- text-align: center;
-}
-
-#graph h2 {
- text-align: center;
-}
-#graph rect {
- cursor: pointer;
-}
-
-#fig {
- position: relative;
- margin: auto;
- width: 540px;
- height: 330px;
-}
-
-#fig .axis path, #fig .axis line {
- fill: none;
- stroke: #000;
- shape-rendering: geometricPrecision;
-}
-
-#fig .area {
- fill: steelBlue;
-}
-
-
-#recent-activities p.thread-new {
- text-align: center;
-}
-
-
-#recent-activities .widget {
- padding: 1em;
- padding-bottom: 0;
- border: 1px solid #ddd;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- margin: 1em 0;
-}
-
-.category {
- font-variant: small-caps;
- font-weight: bold;
- color: white;
- -webkit-border-radius: 5px 5px 5px 5px;
- -moz-border-radius: 5px 5px 5px 5px;
- border-radius: 5px 5px 5px 5px;
- vertical-align: top;
- margin-bottom: 10px;
- padding-top: 0px;
- padding-left: 10px;
-}
-
-.category_entry {
- list-style-type: circle;
- margin-top: 0px;
- padding-bottom: 10px;
- padding-left: 25px;
-}
-
-.category_entry li {
- padding-bottom: 10px;
-}
-
-.maker {
- color: rgb(102, 102, 102);
- padding-right: 10px;
- padding-bottom: 20px;
-}
-
-.maker-id, .maker-name {
- font-weight: bold;
- font-size: 115%;
- vertical-align: top;
- padding-right: 20px;
-}
-
-.maker .gravatar {
- padding-right: 20px;
-}
-
-.score{
- font-weight: bold;
-}
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);
-}
diff --git a/hyperkitty/static/css/hyperkitty-user.css b/hyperkitty/static/css/hyperkitty-user.css
deleted file mode 100644
index 17b1fa9..0000000
--- a/hyperkitty/static/css/hyperkitty-user.css
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Login form
- */
-
-#login,
-#register {
- text-align: left;
- width: 60em;
- margin: 0 auto;
-}
-#login h2,
-#register h2 {
- margin: 4em 0 1em 0;
- text-align: center;
- font-size: 160%;
-}
-#login .social-login {
- text-align: center;
-}
-#login .social-login li {
- margin: 0 20px;
-}
-#login .social-login li.browserid {
- display: block;
-}
-#login a#browserid.disabled {
- cursor: wait;
-}
-#login form.openid {
- display: none;
- position: absolute;
- left: 0;
- width: 100%;
- margin-top: 10px;
-}
-
-
-/*
- * User profile page
- */
-
-#user-profile {
- padding: 0 2em;
-}
-
-#user-profile h1 {
- margin-bottom: 1em;
-}
-
-#user-profile h3 {
- margin-top: 2em;
-}
-
-#user-profile form {
- float: left;
-}
-
-#user-profile div.gravatar {
- /*float: right;*/
- float: left;
- width: auto;
- font-size: 95%;
- margin-left: 4em;
-}
-#user-profile img.gravatar {
- width: auto;
-}
-#user-profile .gravatar p {
- text-align: center;
-}
-
-
-table.user-data {
- width: auto;
-}
-table.user-data th label {
- font-weight: bold;
-}
-table.user-data th,
-table.user-data td {
- vertical-align: middle;
-}
-table.user-data label,
-table.user-data input {
- margin-bottom: 0;
-}
-
-
-#user-profile .ajaxloader {
- margin-top: 0;
- margin-left: 0;
- position: absolute;
-}