]> code.citadel.org Git - citadel.git/blobdiff - webcit/static/styles/webcit.css
Same penultimo fixed for blog_view as in stable-81x, but based on the slightly more...
[citadel.git] / webcit / static / styles / webcit.css
index a6b916eee5093776f5ee2c0e88ce7aa2a97462c4..9d90675582e913856673630bde1ea0fe8288f213 100644 (file)
@@ -15,6 +15,7 @@
 @import url("message.css");
 @import url("modal.css");
 @import url("service.css");
+@import url("blog.css");
 
 @media print {
        input#toggler, .toolbar { display: none }
@@ -159,9 +160,10 @@ body {
 
 .imsg {
        background: none;
-       color: #AAA;
+       color: #EEE;
        font-style: italic;
        font-weight: 700;
+       text-align: center;
 }
 
 .menubar_bg { background-color: red }
@@ -191,7 +193,6 @@ body {
        border-radius: 8px 8px 0 0;
        -webkit-border-radius: 8px 8px 0 0;
        -moz-border-radius: 8px 8px 0 0;
-       /* behavior: url(/static/styles/PIE.htc); disabled for now; see http://github.com/lojjic/PIE/issues#issue/21 */
 }
 
 .selectbox {
@@ -206,7 +207,6 @@ body {
        border-radius: 8px 8px 0 0;
        -webkit-border-radius: 8px 8px 0 0;
        -moz-border-radius: 8px 8px 0 0;
-       /* behavior: url(/static/styles/PIE.htc); disabled for now; see http://github.com/lojjic/PIE/issues#issue/21 */
 }
 
 .tabcontent {
@@ -375,11 +375,6 @@ a:visited { color: #70342e }
        color: black;
 }
 
-#important_message {
-       background-color: #3E65AF;
-       color: #FFF;
-}
-
 input, select, .room_actions form select, .room_actions li.search input, .address_book_popup_title {
        background-color: #efefe0; /*#fbf4ca;*/
        border: 2px solid #5c646b;
@@ -428,11 +423,13 @@ body {
 }
 
 #important_message {
+       background-color: #3E65AF;
+       color: #FFF;
        position: absolute;
-       top: 0; 
-       right: 0;
+       top: 25px; 
        z-index: 4;
        padding: 3px;
+       margin: 0px auto;
 }
 
 #hellomsg, .fmout, .nomsgs {
@@ -446,19 +443,21 @@ body {
 /* Please avoid setting heights for any of the mailbox view elements (except summary_view
  * and resize). In particular, do NOT set any for message_list_hdr as its not good feng shui
  */
+#message_listview th {
+       border-right: 0.2em solid #fff;
+}
+#message_listview td {
+       padding-left: 1em;
+}
 
 #message_list_hdr {
        display: block;
-       top: 0;
-       left: 0;
-       width: 100%;
        padding-bottom: 0;
        margin-bottom: 0;
        background-color: #CCCCCC;
 }
 
 #summary_view {
-       height: 100px;
        overflow-y: scroll;
        overflow-x: hidden;
        cursor: pointer;
@@ -466,7 +465,6 @@ body {
 
 #summary_headers {
        background-color: white;
-       width: 100%;
        table-layout: fixed;
 }
 
@@ -475,11 +473,11 @@ body {
        overflow-x: hidden; /* stop long subjects overflowing */
 }
 
-.col1 { width: 50% }
+#message_listview .col1 { width: 66% }
 
-.col2 { width: 30% }
+#message_listview .col2 { width: 22% }
 
-.col3 { width: 20% }
+#message_listview .col3 { width: 12% }
 
 .col1, .col2, .col3 {
        cursor: pointer;
@@ -487,7 +485,7 @@ body {
        -o-text-overflow: ellipsis;
 }
 
-.new_message { font-weight: bold; !important }
+.new_message { font-weight: bold !important }
 
 #loading { text-align: center}
 
@@ -659,7 +657,6 @@ input#delbutton {
 
 .toolbar img { float: right }
 
-.imsg { text-align: center }
 
 colgroup.entity { text-align: center }
 
@@ -694,7 +691,6 @@ div.auto_complete ul strong.highlight {
        -webkit-box-shadow: #666 0px 2px 3px;
        -moz-box-shadow: #666 0px 2px 3px;
        box-shadow: #666 0px 2px 3px;
-       behavior: url(/static/styles/PIE.htc);
 }
 
 #address_book_popup_container_div {
@@ -711,10 +707,6 @@ div.auto_complete ul strong.highlight {
 
 #address_book_inner_div input { margin: 4px 5px 0 5px }
 
-.service .edit_col, .service .host_col { display: none }
-
-.who_is_online .edit_col, .who_is_online .host_col { display: block }
-
 #citlogo { display: none; /* Overriden later */ }
 
 .sort_ascending, .sort_descending {
@@ -728,17 +720,8 @@ div.auto_complete ul strong.highlight {
 
 #message_list_hdr > table { border-collapse: collapse }
 
-#message_list_hdr > table > tbody > tr > th {
-       border-left: 2px solid white;
-       border-right: 2px solid white;
-}
-
 #summary_view > table { border-collapse: collapse }
 
-th.col1 { border-left: none !important }
-
-th.col3 { border-right: none !important }
-
 /* System Administration Menu */
 
 ul.adminitems {
@@ -753,6 +736,14 @@ ul.adminitems li {
 
 ul.adminitems li span {        display: block }
 
+/* Mailq */
+table.mailstatus {background-color: lightgray }
+td.mailstatus_0 {background-color: gray }
+td.mailstatus_1 {background-color: gray }
+td.mailstatus_2 {background-color: green }
+td.mailstatus_3 {background-color: orange }
+td.mailstatus_4 {background-color: yellow }
+td.mailstatus_5 {background-color: red }
 
 /* Room list - Tree Node */
 
@@ -1144,7 +1135,6 @@ a.event_title span, a.event_unread span, a.event_read span {
 
 a.event_title:hover, a.event_unread:hover, a.event_read:hover {
        z-index:25;
-       background:;
 }
 
 a.event_title:hover span.tooltip, a.event_unread:hover span.tooltip, a.event_read:hover span.tooltip {
@@ -1177,53 +1167,6 @@ a.event_title:hover span.bttbottom, a.event_unread:hover span.bttbottom, a.event
        background: url(/static/webcit_icons/bubble.gif) no-repeat bottom;
 }
 
-
-/*---------- styles for the blog view -----------*/
-
-.blog_post {
-}
-
-.blog_post_title {
-       font-size: 150%;
-       font-style: bold;
-}
-
-.blog_post_title a:link, .blog_post_title a:visited, .blog_post_title a:active {
-       color: #000000;
-}
-
-.blog_post_title a:hover {
-       color: #0000FF;
-}
-
-
-.blog_post_header {
-       font-size: 100%;
-       font-style: italic;
-}
-
-.blog_post_content {
-}
-
-.blog_comment {
-       border: 1px solid grey;
-       margin-top: 5px;
-       margin-bottom: 5px;
-       margin-left: 5%;
-       margin-right: 5%;
-       padding: 5px;
-}
-
-.blog_comment_header {
-       margin-bottom: 1em;
-       font-size: 100%;
-       font-style: italic;
-}
-
-.post_a_comment_title {
-       font-size: 120%;
-}
-
 /*---------- styles for the attachments form -----------*/
 
 #attachments_form {
@@ -1249,10 +1192,8 @@ a.event_title:hover span.bttbottom, a.event_unread:hover span.bttbottom, a.event
        -webkit-box-shadow: #666 0px 2px 3px;
        -moz-box-shadow: #666 0px 2px 3px;
        box-shadow: #666 0px 2px 3px;
-       behavior: url(/static/styles/PIE.htc);
 }
 
-
 /*---------- styles for the login modal box -----------*/
 
 #loginbox_topline_container {
@@ -1323,15 +1264,3 @@ a.event_title:hover span.bttbottom, a.event_unread:hover span.bttbottom, a.event
         background: url('../webcit_icons/openid-small.gif') no-repeat scroll 0pt 50%;
         padding-left: 18px;
 }
-
-.older_blog_posts, .newer_blog_posts {
-       font-size: 110%;
-}
-
-.older_blog_posts {
-       text-align: left;
-}
-
-.newer_blog_posts {
-       text-align: right;
-}