diff plugins/thunderbird_labels/skins/classic/tb_label.css @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/thunderbird_labels/skins/classic/tb_label.css	Thu Jan 04 15:50:29 2018 -0500
@@ -0,0 +1,251 @@
+/**
+* Author:
+* Michael Kefeder
+* http://code.google.com/p/rcmail-thunderbird-labels/
+*
+* CSS is Based on a patch for roundcube 0.3 I found a long time ago
+*/
+
+#messagetoolbar #tb_label_popuplink,
+#tb_label_popuplink {
+  background-image: url(thunderbird_32.png);
+  background-repeat: no-repeat;
+  width: 32px;
+  height: 32px;
+  padding: 0px !important;
+  margin: 0px 5px 0px 5px;
+  text-indent: -5000px;
+}
+
+#tb_label_popup
+{
+  width: auto;
+  position: absolute;
+}
+
+#tb_label_popup a.active
+{
+  color: inherit; /* fix for firefox */
+}
+
+.toolbarmenu li.label0 a
+{
+  color: #CCC;
+}
+.toolbarmenu li.label0,
+.toolbarmenu li.label0 a.active
+{
+  color: #333;
+}
+.toolbarmenu li.label1 a
+{
+  color: #FCC;
+}
+.toolbarmenu li.label2 a
+{
+  color: #FC3;
+}
+.toolbarmenu li.label3 a
+{
+  color: #3C3;
+}
+.toolbarmenu li.label4 a
+{
+  color: #99F;
+}
+.toolbarmenu li.label5 a
+{
+  color: #C9C;
+}
+/* Colors for single/preview message window headers display */
+table.label1
+{
+  background-color: #FCC;
+}
+table.label2
+{
+  background-color: #FC3;
+}
+table.label3
+{
+  background-color: #3C3;
+}
+table.label4
+{
+  background-color: #99F;
+}
+table.label5
+{
+  background-color: #C9C;
+}
+
+/* Support for Thunderbird label: definition of the 5 label color */
+/* Unselected (unfocused) messages */
+#messagelist tr.label1 td,
+#messagelist tr.label1 td a,
+.toolbarmenu li.label1,
+.toolbarmenu li.label1 a.active,
+span.label1
+{
+  color: #FF0000;
+}
+
+#messagelist tr.label2 td,
+#messagelist tr.label2 td a,
+.toolbarmenu li.label2,
+.toolbarmenu li.label2 a.active,
+span.label2
+{
+  color: #FF9900;
+}
+
+#messagelist tr.label3 td,
+#messagelist tr.label3 td a,
+.toolbarmenu li.label3,
+.toolbarmenu li.label3 a.active,
+span.label3
+{
+  color: #009900;
+}
+
+#messagelist tr.label4 td,
+#messagelist tr.label4 td a,
+.toolbarmenu li.label4,
+.toolbarmenu li.label4 a.active,
+span.label4
+{
+  color: #3333FF;
+}
+
+#messagelist tr.label5 td,
+#messagelist tr.label5 td a,
+.toolbarmenu li.label5,
+.toolbarmenu li.label5 a.active,
+span.label5
+{
+  color: #993399;
+}
+
+/* Selected messages */
+#messagelist tr.selected.label1 td,
+#messagelist tr.selected.label1 td a
+{
+  color: #FFFFFF;
+  background-color: #FF0000;
+}
+
+#messagelist tr.selected.label2 td,
+#messagelist tr.selected.label2 td a
+{
+  color: #FFFFFF;
+  background-color: #FF9900;
+}
+
+#messagelist tr.selected.label3 td,
+#messagelist tr.selected.label3 td a
+{
+  color: #FFFFFF;
+  background-color: #009900;
+}
+
+#messagelist tr.selected.label4 td,
+#messagelist tr.selected.label4 td a
+{
+  color: #FFFFFF;
+  background-color: #3333FF;
+}
+
+#messagelist tr.selected.label5 td,
+#messagelist tr.selected.label5 td a
+{
+  color: #FFFFFF;
+  background-color: #993399;
+}
+
+span.tb_label_dots {
+float: right;
+height: 0px;
+display: block;
+position:relative;
+top: 6px;
+}
+
+/* hack for firefox : doesnt display the bullets at the correct height */
+@-moz-document url-prefix() {
+  span.tb_label_dots {
+    top: -12px;
+  }
+}
+
+span.tb_label_dots span {
+  font-size: 32px;
+  vertical-align: middle;
+  line-height: 0px;
+}
+
+
+div#labelbox {
+  white-space: nowrap;
+  position: absolute;
+  right: 5%;
+  top: 0px;
+}
+
+
+div#labelbox span {
+    margin: 0 3px;
+    padding: 2px;
+    border: 1px solid black;
+    border-radius: 3px;
+    color: #black;
+    font-weight: bold;
+    font-size: 11px;
+}
+  
+div#labelbox span.tb_label_span1 {
+  background-color: #FF2200;
+}
+
+div#labelbox span.tb_label_span2 {
+  background-color: #FF9900;
+}
+
+div#labelbox span.tb_label_span3 {
+  background-color: #00CC00;
+}
+
+div#labelbox span.tb_label_span4 {
+  background-color: #0CF;
+}
+
+div#labelbox span.tb_label_span5 {
+  background-color: #FF33FF;
+}  
+
+
+/* Non-labeled selected message: changed to make it look "like" Thunderbird */
+/*#messagelist tr.selected td
+{
+  color: #000000;
+  background-color: #F0CB82;
+}
+*/
+/* Addition for selected RCM "flagged" message */
+/*#messagelist tr.selected.flagged td
+{
+  color: #FFFFFF;
+  background-color: #CC3333;
+}
+*/
+/* Non specific message : changed to make it look like Thunderbird */
+/*#messagelist tr.selected td a
+{
+  color: #000000;
+}
+*/
+/* Addition for selected RCM "flagged" message */
+/*#messagelist tr.selected.flagged td a
+{
+  color: #FFFFFF;
+}
+*/