Bug #362560 --> Tag UI polish. sr=bienvenu
git-svn-id: svn://10.0.0.236/trunk@216331 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
c07940c9fb
commit
d88a2e8b50
@ -512,7 +512,7 @@ function RemoveAllMessageTags()
|
||||
if (keywords.length > 0)
|
||||
msgHdr.folder.removeKeywordFromMessages(msg, keywords);
|
||||
}
|
||||
onTagsChange();
|
||||
OnTagsChange();
|
||||
}
|
||||
|
||||
function ToggleMessageTagKey(index)
|
||||
@ -586,7 +586,7 @@ function ToggleMessageTag(key, addKey)
|
||||
}
|
||||
if (prevHdrFolder)
|
||||
prevHdrFolder[toggler](messages, key);
|
||||
onTagsChange();
|
||||
OnTagsChange();
|
||||
}
|
||||
|
||||
function AddTag()
|
||||
@ -660,10 +660,12 @@ function InitMessageTags(menuPopup)
|
||||
SetMessageTagLabel(newMenuItem, i + 1, taginfo.tag);
|
||||
newMenuItem.setAttribute("value", taginfo.key);
|
||||
newMenuItem.setAttribute("type", "checkbox");
|
||||
newMenuItem.style.color = tagService.getColorForKey(taginfo.key);
|
||||
var removeKey = (" " + curKeys + " ").indexOf(" " + taginfo.key + " ") > -1;
|
||||
newMenuItem.setAttribute('checked', removeKey);
|
||||
newMenuItem.setAttribute('oncommand', 'ToggleMessageTagMenu(event.target);');
|
||||
var color = taginfo.color;
|
||||
if (color)
|
||||
newMenuItem.setAttribute("class", "lc-" + color.substr(1));
|
||||
menuPopup.insertBefore(newMenuItem, menuseparator);
|
||||
}
|
||||
}
|
||||
|
||||
@ -398,7 +398,7 @@ var messageHeaderSink = {
|
||||
} // while we have more headers to parse
|
||||
|
||||
// process message tags as if they were headers in the message
|
||||
setTagHeader();
|
||||
SetTagHeader();
|
||||
|
||||
if (("from" in currentHeaderData) && ("sender" in currentHeaderData) && msgHeaderParser)
|
||||
{
|
||||
@ -522,56 +522,52 @@ var messageHeaderSink = {
|
||||
}
|
||||
};
|
||||
|
||||
// private method which generates a space delimited list of tag names
|
||||
// for the current message. This list is then stored in
|
||||
// currentHeaderData['tags']. Each tag is encoded.
|
||||
function setTagHeader()
|
||||
{
|
||||
// it would be nice if we passed in the msg hdr from the back end
|
||||
var msgHdr;
|
||||
try {
|
||||
msgHdr = gDBView.hdrForFirstSelectedMessage;
|
||||
}
|
||||
catch (ex) { return; } // no msgHdr to add our tags to.
|
||||
|
||||
var tagsString = "";
|
||||
|
||||
// extract the tags from the msg hdr
|
||||
var tags = msgHdr.getStringProperty('keywords');
|
||||
var label = msgHdr.label;
|
||||
if (label > 0)
|
||||
{
|
||||
var labelTag = '$label' + label;
|
||||
if (!tags || !tags.search(labelTag)) // don't add the label if it's already in our keyword list
|
||||
tagsString = labelTag;
|
||||
}
|
||||
|
||||
// rebuild the keywords string with just the keys that are
|
||||
// actual tags and not other keywords like Junk and NonJunk.
|
||||
var tagService = Components.classes["@mozilla.org/messenger/tagservice;1"]
|
||||
.getService(Components.interfaces.nsIMsgTagService);
|
||||
var tagsArray = tags.split(' ');
|
||||
for (var index = 0; index < tagsArray.length; index++)
|
||||
{
|
||||
var tagName;
|
||||
try {
|
||||
// if we got a bad tag name, getTagForKey will throw an exception, skip it
|
||||
// and go to the next one.
|
||||
tagName = tagService.getTagForKey(tagsArray[index]);
|
||||
} catch (ex) { continue; }
|
||||
|
||||
if (tagName)
|
||||
{
|
||||
if (tagsString)
|
||||
tagsString += " ";
|
||||
tagsString += tagsArray[index];
|
||||
}
|
||||
}
|
||||
|
||||
if (tagsString)
|
||||
currentHeaderData['tags'] = { headerName: 'tags', headerValue: tagsString};
|
||||
else if (currentHeaderData['tags']) // no more tags, so clear out the header field
|
||||
currentHeaderData['tags'] = null;
|
||||
function SetTagHeader()
|
||||
{
|
||||
// it would be nice if we passed in the msgHdr from the back end
|
||||
var msgHdr;
|
||||
try
|
||||
{
|
||||
msgHdr = gDBView.hdrForFirstSelectedMessage;
|
||||
}
|
||||
catch (ex)
|
||||
{
|
||||
return; // no msgHdr to add our tags to
|
||||
}
|
||||
|
||||
// get the list of known tags
|
||||
var tagService = Components.classes["@mozilla.org/messenger/tagservice;1"]
|
||||
.getService(Components.interfaces.nsIMsgTagService);
|
||||
var tagArray = tagService.getAllTags({});
|
||||
var tagKeys = {};
|
||||
for each (var tagInfo in tagArray)
|
||||
if (tagInfo.tag)
|
||||
tagKeys[tagInfo.key] = true;
|
||||
|
||||
// extract the tag keys from the msgHdr
|
||||
var msgKeyArray = msgHdr.getStringProperty("keywords").split(" ");
|
||||
|
||||
// attach legacy label to the front if not already there
|
||||
var label = msgHdr.label;
|
||||
if (label)
|
||||
{
|
||||
var labelKey = "$label" + label;
|
||||
if (msgKeyArray.indexOf(labelKey) < 0)
|
||||
msgKeyArray.unshift(labelKey);
|
||||
}
|
||||
|
||||
// Rebuild the keywords string with just the keys that are actual tags or
|
||||
// legacy labels and not other keywords like Junk and NonJunk.
|
||||
// Retain their order, though, with the label as oldest element.
|
||||
for (var i = msgKeyArray.length - 1; i >= 0; --i)
|
||||
if (!(msgKeyArray[i] in tagKeys))
|
||||
msgKeyArray.splice(i, 1); // remove non-tag key
|
||||
var msgKeys = msgKeyArray.join(" ");
|
||||
|
||||
if (msgKeys)
|
||||
currentHeaderData.tags = {headerName: "tags", headerValue: msgKeys};
|
||||
else // no more tags, so clear out the header field
|
||||
delete currentHeaderData.tags;
|
||||
}
|
||||
|
||||
function EnsureSubjectValue()
|
||||
@ -591,32 +587,28 @@ function CheckNotify()
|
||||
NotifyClearAddresses();
|
||||
}
|
||||
|
||||
// Public method called by the tag front end code when the tags for the selected
|
||||
// message has changed.
|
||||
function onTagsChange()
|
||||
{
|
||||
// rebuild the tag headers
|
||||
setTagHeader();
|
||||
|
||||
// now update the expanded header view to rebuild the tags,
|
||||
// and then show or hide the tag header box.
|
||||
if (gBuiltExpandedView)
|
||||
{
|
||||
headerEntry = gExpandedHeaderView['tags'];
|
||||
if (headerEntry)
|
||||
{
|
||||
if (currentHeaderData['tags'])
|
||||
{
|
||||
headerEntry.outputFunction(headerEntry, currentHeaderData['tags'].headerValue);
|
||||
headerEntry.valid = true;
|
||||
}
|
||||
|
||||
// if we are showing the expanded header view then we may need to collapse or
|
||||
// show the tag header box...
|
||||
if (!gCollapsedHeaderViewMode)
|
||||
headerEntry.enclosingBox.collapsed = !currentHeaderData['tags'];
|
||||
}
|
||||
}
|
||||
function OnTagsChange()
|
||||
{
|
||||
// rebuild the tag headers
|
||||
SetTagHeader();
|
||||
|
||||
// now update the expanded header view to rebuild the tags,
|
||||
// and then show or hide the tag header box.
|
||||
if (gBuiltExpandedView)
|
||||
{
|
||||
var headerEntry = gExpandedHeaderView.tags;
|
||||
if (headerEntry)
|
||||
{
|
||||
headerEntry.valid = ("tags" in currentHeaderData);
|
||||
if (headerEntry.valid)
|
||||
headerEntry.outputFunction(headerEntry, currentHeaderData.tags.headerValue);
|
||||
|
||||
// if we are showing the expanded header view then we may need to collapse or
|
||||
// show the tag header box...
|
||||
if (!gCollapsedHeaderViewMode)
|
||||
headerEntry.enclosingBox.collapsed = !headerEntry.valid;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// flush out any local state being held by a header entry for a given
|
||||
|
||||
@ -14,6 +14,7 @@ classic.jar:
|
||||
skin/classic/messenger/msgSelectOffline.css
|
||||
skin/classic/messenger/mailWindow1.css
|
||||
skin/classic/messenger/searchBox.css
|
||||
skin/classic/messenger/tagColors.css
|
||||
skin/classic/messenger/junkMail.css
|
||||
skin/classic/messenger/folderMenus.css
|
||||
skin/classic/messenger/folderPane.css
|
||||
|
||||
@ -46,6 +46,7 @@
|
||||
@import url("chrome://global/skin/toolbar.css");
|
||||
@import url("chrome://messenger/skin/folderMenus.css");
|
||||
@import url("chrome://messenger/skin/folderPane.css");
|
||||
@import url("chrome://messenger/skin/tagColors.css");
|
||||
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
@ -332,523 +333,6 @@ treechildren::-moz-tree-row(dummy, focus, selected) {
|
||||
padding-left: 1px;
|
||||
}
|
||||
|
||||
/* ::::: thread labels decoration ::::: */
|
||||
|
||||
/* There are 10x7 color definitions (size of the color picker used)
|
||||
times 2 (2 style definitions for each color) + 2 general black
|
||||
and white color definitions.
|
||||
The color definitions can be in the following formats:
|
||||
color: red;
|
||||
color: #FF0000;
|
||||
color: rgb(128, 0, 0);
|
||||
*/
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFFF) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFFF, selected) {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCCC) {
|
||||
color: #CCCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCCC, selected) {
|
||||
background-color: #CCCCCC !important;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-C0C0C0) {
|
||||
color: #C0C0C0
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-C0C0C0, selected) {
|
||||
background-color: #C0C0C0;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999999) {
|
||||
color: #999999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999999, selected) {
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666666) {
|
||||
color: #666666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666666, selected) {
|
||||
background-color: #666666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333333) {
|
||||
color: #333333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333333, selected) {
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000000) {
|
||||
color: #000000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000000, selected) {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCCC) {
|
||||
color: #FFCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCCC, selected) {
|
||||
background-color: #FFCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6666) {
|
||||
color: #FF6666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6666, selected) {
|
||||
background-color: #FF6666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF0000) {
|
||||
color: #FF0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF0000, selected) {
|
||||
background-color: #FF0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC0000) {
|
||||
color: #CC0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC0000, selected) {
|
||||
background-color: #CC0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-990000) {
|
||||
color: #990000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-990000, selected) {
|
||||
background-color: #990000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-660000) {
|
||||
color: #660000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-660000, selected) {
|
||||
background-color: #660000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330000) {
|
||||
color: #330000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330000, selected) {
|
||||
background-color: #330000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC99) {
|
||||
color: #FFCC99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC99, selected) {
|
||||
background-color: #FFCC99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9966) {
|
||||
color: #FF9966
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9966, selected) {
|
||||
background-color: #FF9966;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9900) {
|
||||
color: #FF9900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9900, selected) {
|
||||
background-color: #FF9900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6600) {
|
||||
color: #FF6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6600, selected) {
|
||||
background-color: #FF6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC6600) {
|
||||
color: #CC6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC6600, selected) {
|
||||
background-color: #CC6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993300) {
|
||||
color: #993300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993300, selected) {
|
||||
background-color: #993300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663300) {
|
||||
color: #663300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663300, selected) {
|
||||
background-color: #663300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF99) {
|
||||
color: #FFFF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF99, selected) {
|
||||
background-color: #FFFF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF66) {
|
||||
color: #FFFF66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF66, selected) {
|
||||
background-color: #FFFF66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC66) {
|
||||
color: #FFCC66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC66, selected) {
|
||||
background-color: #FFCC66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC33) {
|
||||
color: #FFCC33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC33, selected) {
|
||||
background-color: #FFCC33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC9933) {
|
||||
color: #CC9933
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC9933, selected) {
|
||||
background-color: #CC9933;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-996633) {
|
||||
color: #996633
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-996633, selected) {
|
||||
background-color: #996633;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663333) {
|
||||
color: #663333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663333, selected) {
|
||||
background-color: #663333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFCC) {
|
||||
color: #FFFFCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFCC, selected) {
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF33) {
|
||||
color: #FFFF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF33, selected) {
|
||||
background-color: #FFFF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF00) {
|
||||
color: #FFFF00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF00, selected) {
|
||||
background-color: #FFFF00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC00) {
|
||||
color: #FFCC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC00, selected) {
|
||||
background-color: #FFCC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999900) {
|
||||
color: #999900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999900, selected) {
|
||||
background-color: #999900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666600) {
|
||||
color: #666600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666600, selected) {
|
||||
background-color: #666600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333300) {
|
||||
color: #333300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333300, selected) {
|
||||
background-color: #333300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FF99) {
|
||||
color: #99FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FF99, selected) {
|
||||
background-color: #99FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FF99) {
|
||||
color: #66FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FF99, selected) {
|
||||
background-color: #66FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FF33) {
|
||||
color: #33FF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FF33, selected) {
|
||||
background-color: #33FF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CC00) {
|
||||
color: #33CC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CC00, selected) {
|
||||
background-color: #33CC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-009900) {
|
||||
color: #009900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-009900, selected) {
|
||||
background-color: #009900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-006600) {
|
||||
color: #006600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-006600, selected) {
|
||||
background-color: #006600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003300) {
|
||||
color: #003300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003300, selected) {
|
||||
background-color: #003300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FFFF) {
|
||||
color: #99FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FFFF, selected) {
|
||||
background-color: #99FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FFFF) {
|
||||
color: #33FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FFFF, selected) {
|
||||
background-color: #33FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66CCCC) {
|
||||
color: #66CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66CCCC, selected) {
|
||||
background-color: #66CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-00CCCC) {
|
||||
color: #00CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-00CCCC, selected) {
|
||||
background-color: #00CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-339999) {
|
||||
color: #339999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-339999, selected) {
|
||||
background-color: #339999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-336666) {
|
||||
color: #336666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-336666, selected) {
|
||||
background-color: #336666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003333) {
|
||||
color: #003333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003333, selected) {
|
||||
background-color: #003333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCFFFF) {
|
||||
color: #CCFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCFFFF, selected) {
|
||||
background-color: #CCFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FFFF) {
|
||||
color: #66FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FFFF, selected) {
|
||||
background-color: #66FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CCFF) {
|
||||
color: #33CCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CCFF, selected) {
|
||||
background-color: #33CCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3366FF) {
|
||||
color: #3366FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3366FF, selected) {
|
||||
background-color: #3366FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3333FF) {
|
||||
color: #3333FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3333FF, selected) {
|
||||
background-color: #3333FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000099) {
|
||||
color: #000099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000099, selected) {
|
||||
background-color: #000099;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000066) {
|
||||
color: #000066
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000066, selected) {
|
||||
background-color: #000066;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCFF) {
|
||||
color: #CCCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCFF, selected) {
|
||||
background-color: #CCCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-9999FF) {
|
||||
color: #9999FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-9999FF, selected) {
|
||||
background-color: #9999FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6666CC) {
|
||||
color: #6666CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6666CC, selected) {
|
||||
background-color: #6666CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6633FF) {
|
||||
color: #6633FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6633FF, selected) {
|
||||
background-color: #6633FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6600CC) {
|
||||
color: #6600CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6600CC, selected) {
|
||||
background-color: #6600CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333399) {
|
||||
color: #333399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333399, selected) {
|
||||
background-color: #333399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330099) {
|
||||
color: #330099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330099, selected) {
|
||||
background-color: #330099;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCFF) {
|
||||
color: #FFCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCFF, selected) {
|
||||
background-color: #FFCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF99FF) {
|
||||
color: #FF99FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF99FF, selected) {
|
||||
background-color: #FF99FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC66CC) {
|
||||
color: #CC66CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC66CC, selected) {
|
||||
background-color: #CC66CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC33CC) {
|
||||
color: #CC33CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC33CC, selected) {
|
||||
background-color: #CC33CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993399) {
|
||||
color: #993399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993399, selected) {
|
||||
background-color: #993399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663366) {
|
||||
color: #663366
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663366, selected) {
|
||||
background-color: #663366;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330033) {
|
||||
color: #330033
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330033, selected) {
|
||||
background-color: #330033;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-white, selected) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-cell-text(lc-black, selected) {
|
||||
color: #000000
|
||||
}
|
||||
|
||||
/* :::::
|
||||
:: Make sure the min height is small so we can
|
||||
:: resize the pane vertically -EDV
|
||||
|
||||
@ -44,6 +44,7 @@
|
||||
======================================================================= */
|
||||
|
||||
@import url("chrome://messenger/skin/");
|
||||
@import url("chrome://messenger/skin/tagColors.css");
|
||||
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
@ -280,514 +281,6 @@ treechildren::-moz-tree-image(news, threadCol, container, ignore, open) {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* ::::: thread labels decoration ::::: */
|
||||
|
||||
/* There are 10x7 color definitions (size of the color picker used)
|
||||
times 2 (2 style definitions for each color) + 2 general black
|
||||
and white color definitions.
|
||||
The color definitions can be in the following formats:
|
||||
color: red;
|
||||
color: #FF0000;
|
||||
color: rgb(128, 0, 0);
|
||||
*/
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFFF) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFFF, selected) {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCCC) {
|
||||
color: #CCCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCCC, selected) {
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-C0C0C0) {
|
||||
color: #C0C0C0
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-C0C0C0, selected) {
|
||||
background-color: #C0C0C0;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999999) {
|
||||
color: #999999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999999, selected) {
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666666) {
|
||||
color: #666666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666666, selected) {
|
||||
background-color: #666666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333333) {
|
||||
color: #333333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333333, selected) {
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000000) {
|
||||
color: #000000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000000, selected) {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCCC) {
|
||||
color: #FFCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCCC, selected) {
|
||||
background-color: #FFCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6666) {
|
||||
color: #FF6666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6666, selected) {
|
||||
background-color: #FF6666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF0000) {
|
||||
color: #FF0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF0000, selected) {
|
||||
background-color: #FF0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC0000) {
|
||||
color: #CC0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC0000, selected) {
|
||||
background-color: #CC0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-990000) {
|
||||
color: #990000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-990000, selected) {
|
||||
background-color: #990000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-660000) {
|
||||
color: #660000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-660000, selected) {
|
||||
background-color: #660000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330000) {
|
||||
color: #330000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330000, selected) {
|
||||
background-color: #330000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC99) {
|
||||
color: #FFCC99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC99, selected) {
|
||||
background-color: #FFCC99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9966) {
|
||||
color: #FF9966
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9966, selected) {
|
||||
background-color: #FF9966;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9900) {
|
||||
color: #FF9900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9900, selected) {
|
||||
background-color: #FF9900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6600) {
|
||||
color: #FF6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6600, selected) {
|
||||
background-color: #FF6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC6600) {
|
||||
color: #CC6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC6600, selected) {
|
||||
background-color: #CC6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993300) {
|
||||
color: #993300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993300, selected) {
|
||||
background-color: #993300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663300) {
|
||||
color: #663300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663300, selected) {
|
||||
background-color: #663300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF99) {
|
||||
color: #FFFF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF99, selected) {
|
||||
background-color: #FFFF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF66) {
|
||||
color: #FFFF66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF66, selected) {
|
||||
background-color: #FFFF66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC66) {
|
||||
color: #FFCC66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC66, selected) {
|
||||
background-color: #FFCC66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC33) {
|
||||
color: #FFCC33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC33, selected) {
|
||||
background-color: #FFCC33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC9933) {
|
||||
color: #CC9933
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC9933, selected) {
|
||||
background-color: #CC9933;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-996633) {
|
||||
color: #996633
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-996633, selected) {
|
||||
background-color: #996633;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663333) {
|
||||
color: #663333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663333, selected) {
|
||||
background-color: #663333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFCC) {
|
||||
color: #FFFFCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFCC, selected) {
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF33) {
|
||||
color: #FFFF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF33, selected) {
|
||||
background-color: #FFFF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF00) {
|
||||
color: #FFFF00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF00, selected) {
|
||||
background-color: #FFFF00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC00) {
|
||||
color: #FFCC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC00, selected) {
|
||||
background-color: #FFCC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999900) {
|
||||
color: #999900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999900, selected) {
|
||||
background-color: #999900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666600) {
|
||||
color: #666600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666600, selected) {
|
||||
background-color: #666600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333300) {
|
||||
color: #333300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333300, selected) {
|
||||
background-color: #333300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FF99) {
|
||||
color: #99FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FF99, selected) {
|
||||
background-color: #99FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FF99) {
|
||||
color: #66FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FF99, selected) {
|
||||
background-color: #66FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FF33) {
|
||||
color: #33FF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FF33, selected) {
|
||||
background-color: #33FF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CC00) {
|
||||
color: #33CC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CC00, selected) {
|
||||
background-color: #33CC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-009900) {
|
||||
color: #009900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-009900, selected) {
|
||||
background-color: #009900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-006600) {
|
||||
color: #006600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-006600, selected) {
|
||||
background-color: #006600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003300) {
|
||||
color: #003300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003300, selected) {
|
||||
background-color: #003300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FFFF) {
|
||||
color: #99FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FFFF, selected) {
|
||||
background-color: #99FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FFFF) {
|
||||
color: #33FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FFFF, selected) {
|
||||
background-color: #33FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66CCCC) {
|
||||
color: #66CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66CCCC, selected) {
|
||||
background-color: #66CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-00CCCC) {
|
||||
color: #00CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-00CCCC, selected) {
|
||||
background-color: #00CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-339999) {
|
||||
color: #339999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-339999, selected) {
|
||||
background-color: #339999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-336666) {
|
||||
color: #336666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-336666, selected) {
|
||||
background-color: #336666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003333) {
|
||||
color: #003333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003333, selected) {
|
||||
background-color: #003333;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCFFFF) {
|
||||
color: #CCFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCFFFF, selected) {
|
||||
background-color: #CCFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FFFF) {
|
||||
color: #66FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FFFF, selected) {
|
||||
background-color: #66FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CCFF) {
|
||||
color: #33CCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CCFF, selected) {
|
||||
background-color: #33CCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3366FF) {
|
||||
color: #3366FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3366FF, selected) {
|
||||
background-color: #3366FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3333FF) {
|
||||
color: #3333FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3333FF, selected) {
|
||||
background-color: #3333FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000099) {
|
||||
color: #000099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000099, selected) {
|
||||
background-color: #000099;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000066) {
|
||||
color: #000066
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000066, selected) {
|
||||
background-color: #000066;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCFF) {
|
||||
color: #CCCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCFF, selected) {
|
||||
background-color: #CCCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-9999FF) {
|
||||
color: #9999FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-9999FF, selected) {
|
||||
background-color: #9999FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6666CC) {
|
||||
color: #6666CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6666CC, selected) {
|
||||
background-color: #6666CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6633FF) {
|
||||
color: #6633FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6633FF, selected) {
|
||||
background-color: #6633FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6600CC) {
|
||||
color: #6600CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6600CC, selected) {
|
||||
background-color: #6600CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333399) {
|
||||
color: #333399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333399, selected) {
|
||||
background-color: #333399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330099) {
|
||||
color: #330099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330099, selected) {
|
||||
background-color: #330099;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCFF) {
|
||||
color: #FFCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCFF, selected) {
|
||||
background-color: #FFCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF99FF) {
|
||||
color: #FF99FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF99FF, selected) {
|
||||
background-color: #FF99FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC66CC) {
|
||||
color: #CC66CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC66CC, selected) {
|
||||
background-color: #CC66CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC33CC) {
|
||||
color: #CC33CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC33CC, selected) {
|
||||
background-color: #CC33CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993399) {
|
||||
color: #993399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993399, selected) {
|
||||
background-color: #993399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663366) {
|
||||
color: #663366
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663366, selected) {
|
||||
background-color: #663366;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330033) {
|
||||
color: #330033
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330033, selected) {
|
||||
background-color: #330033;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-white, selected) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-cell-text(lc-black, selected) {
|
||||
color: #000000
|
||||
}
|
||||
|
||||
#status-bar {
|
||||
font: message-box;
|
||||
margin-top: 8px;
|
||||
|
||||
552
mozilla/mail/themes/pinstripe/mail/tagColors.css
Normal file
552
mozilla/mail/themes/pinstripe/mail/tagColors.css
Normal file
@ -0,0 +1,552 @@
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is Tag Color Style rules
|
||||
* The Initial Developer of the Original Code is
|
||||
* Scott MacGregor <mscott@mozilla.org>.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2006
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
|
||||
/* ::::: thread labels decoration ::::: */
|
||||
|
||||
/* There are 10x7 color definitions (size of the color picker used)
|
||||
times 2 (2 style definitions for each color) + 2 general black
|
||||
and white color definitions.
|
||||
The color definitions can be in the following formats:
|
||||
color: red;
|
||||
color: #FF0000;
|
||||
color: rgb(128, 0, 0);
|
||||
*/
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFFF), .lc-FFFFFF:not([_moz-menuactive]) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFFF, selected, focus), .lc-FFFFFF[_moz-menuactive] {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCCC), .lc-CCCCCC:not([_moz-menuactive]) {
|
||||
color: #CCCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCCC, selected, focus), .lc-CCCCCC[_moz-menuactive] {
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-C0C0C0), .lc-C0C0C0:not([_moz-menuactive]) {
|
||||
color: #C0C0C0
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-C0C0C0, selected, focus), .lc-C0C0C0[_moz-menuactive] {
|
||||
background-color: #C0C0C0;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999999), .lc-999999:not([_moz-menuactive]) {
|
||||
color: #999999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999999, selected, focus), .lc-999999[_moz-menuactive] {
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666666), .lc-666666:not([_moz-menuactive]) {
|
||||
color: #666666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666666, selected, focus), .lc-666666[_moz-menuactive] {
|
||||
background-color: #666666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333333), .lc-333333:not([_moz-menuactive]) {
|
||||
color: #333333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333333, selected, focus), .lc-333333[_moz-menuactive] {
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000000), .lc-000000:not([_moz-menuactive]) {
|
||||
color: #000000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000000, selected, focus), .lc-000000[_moz-menuactive] {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCCC), .lc-FFCCCC:not([_moz-menuactive]) {
|
||||
color: #FFCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCCC, selected, focus), .lc-FFCCCC[_moz-menuactive] {
|
||||
background-color: #FFCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6666), .lc-FF6666:not([_moz-menuactive]) {
|
||||
color: #FF6666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6666, selected, focus), .lc-FF6666[_moz-menuactive] {
|
||||
background-color: #FF6666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF0000), .lc-FF0000:not([_moz-menuactive]) {
|
||||
color: #FF0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF0000, selected, focus), .lc-FF0000[_moz-menuactive] {
|
||||
background-color: #FF0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC0000), .lc-CC0000:not([_moz-menuactive]) {
|
||||
color: #CC0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC0000, selected, focus), .lc-CC0000[_moz-menuactive] {
|
||||
background-color: #CC0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-990000), .lc-990000:not([_moz-menuactive]) {
|
||||
color: #990000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-990000, selected, focus), .lc-990000[_moz-menuactive] {
|
||||
background-color: #990000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-660000), .lc-660000:not([_moz-menuactive]) {
|
||||
color: #660000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-660000, selected, focus), .lc-660000[_moz-menuactive] {
|
||||
background-color: #660000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330000), .lc-330000:not([_moz-menuactive]) {
|
||||
color: #330000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330000, selected, focus), .lc-330000[_moz-menuactive] {
|
||||
background-color: #330000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC99), .lc-FFCC99:not([_moz-menuactive]) {
|
||||
color: #FFCC99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC99, selected, focus), .lc-FFCC99[_moz-menuactive] {
|
||||
background-color: #FFCC99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9966), .lc-FF9966:not([_moz-menuactive]) {
|
||||
color: #FF9966
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9966, selected, focus), .lc-FF9966[_moz-menuactive] {
|
||||
background-color: #FF9966;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9900), .lc-FF9900:not([_moz-menuactive]) {
|
||||
color: #FF9900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9900, selected, focus), .lc-FF9900[_moz-menuactive] {
|
||||
background-color: #FF9900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6600), .lc-FF6600:not([_moz-menuactive]) {
|
||||
color: #FF6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6600, selected, focus), .lc-FF6600[_moz-menuactive] {
|
||||
background-color: #FF6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC6600), .lc-CC6600:not([_moz-menuactive]) {
|
||||
color: #CC6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC6600, selected, focus), .lc-CC6600[_moz-menuactive] {
|
||||
background-color: #CC6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993300), .lc-993300:not([_moz-menuactive]) {
|
||||
color: #993300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993300, selected, focus), .lc-993300[_moz-menuactive] {
|
||||
background-color: #993300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663300), .lc-663300:not([_moz-menuactive]) {
|
||||
color: #663300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663300, selected, focus), .lc-663300[_moz-menuactive] {
|
||||
background-color: #663300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF99), .lc-FFFF99:not([_moz-menuactive]) {
|
||||
color: #FFFF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF99, selected, focus), .lc-FFFF99[_moz-menuactive] {
|
||||
background-color: #FFFF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF66), .lc-FFFF66:not([_moz-menuactive]) {
|
||||
color: #FFFF66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF66, selected, focus), .lc-FFFF66[_moz-menuactive] {
|
||||
background-color: #FFFF66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC66), .lc-FFCC66:not([_moz-menuactive]) {
|
||||
color: #FFCC66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC66, selected, focus), .lc-FFCC66[_moz-menuactive] {
|
||||
background-color: #FFCC66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC33), .lc-FFCC33:not([_moz-menuactive]) {
|
||||
color: #FFCC33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC33, selected, focus), .lc-FFCC33[_moz-menuactive] {
|
||||
background-color: #FFCC33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC9933), .lc-CC9933:not([_moz-menuactive]) {
|
||||
color: #CC9933
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC9933, selected, focus), .lc-CC9933[_moz-menuactive] {
|
||||
background-color: #CC9933;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-996633), .lc-996633:not([_moz-menuactive]) {
|
||||
color: #996633
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-996633, selected, focus), .lc-996633[_moz-menuactive] {
|
||||
background-color: #996633;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663333), .lc-663333:not([_moz-menuactive]) {
|
||||
color: #663333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663333, selected, focus), .lc-663333[_moz-menuactive] {
|
||||
background-color: #663333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFCC), .lc-FFFFCC:not([_moz-menuactive]) {
|
||||
color: #FFFFCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFCC, selected, focus), .lc-FFFFCC[_moz-menuactive] {
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF33), .lc-FFFF33:not([_moz-menuactive]) {
|
||||
color: #FFFF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF33, selected, focus), .lc-FFFF33[_moz-menuactive] {
|
||||
background-color: #FFFF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF00), .lc-FFFF00:not([_moz-menuactive]) {
|
||||
color: #FFFF00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF00, selected, focus), .lc-FFFF00[_moz-menuactive] {
|
||||
background-color: #FFFF00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC00), .lc-FFCC00:not([_moz-menuactive]) {
|
||||
color: #FFCC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC00, selected, focus), .lc-FFCC00[_moz-menuactive] {
|
||||
background-color: #FFCC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999900), .lc-999900:not([_moz-menuactive]) {
|
||||
color: #999900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999900, selected, focus), .lc-999900[_moz-menuactive] {
|
||||
background-color: #999900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666600), .lc-666600:not([_moz-menuactive]) {
|
||||
color: #666600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666600, selected, focus), .lc-666600[_moz-menuactive] {
|
||||
background-color: #666600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333300), .lc-333300:not([_moz-menuactive]) {
|
||||
color: #333300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333300, selected, focus), .lc-333300[_moz-menuactive] {
|
||||
background-color: #333300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FF99), .lc-99FF99:not([_moz-menuactive]) {
|
||||
color: #99FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FF99, selected, focus), .lc-99FF99[_moz-menuactive] {
|
||||
background-color: #99FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FF99), .lc-66FF99:not([_moz-menuactive]) {
|
||||
color: #66FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FF99, selected, focus), .lc-66FF99[_moz-menuactive] {
|
||||
background-color: #66FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FF33), .lc-33FF33:not([_moz-menuactive]) {
|
||||
color: #33FF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FF33, selected, focus), .lc-33FF33[_moz-menuactive] {
|
||||
background-color: #33FF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CC00), .lc-33CC00:not([_moz-menuactive]) {
|
||||
color: #33CC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CC00, selected, focus), .lc-33CC00[_moz-menuactive] {
|
||||
background-color: #33CC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-009900), .lc-009900:not([_moz-menuactive]) {
|
||||
color: #009900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-009900, selected, focus), .lc-009900[_moz-menuactive] {
|
||||
background-color: #009900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-006600), .lc-006600:not([_moz-menuactive]) {
|
||||
color: #006600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-006600, selected, focus), .lc-006600[_moz-menuactive] {
|
||||
background-color: #006600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003300), .lc-003300:not([_moz-menuactive]) {
|
||||
color: #003300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003300, selected, focus), .lc-003300[_moz-menuactive] {
|
||||
background-color: #003300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FFFF), .lc-99FFFF:not([_moz-menuactive]) {
|
||||
color: #99FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FFFF, selected, focus), .lc-99FFFF[_moz-menuactive] {
|
||||
background-color: #99FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FFFF), .lc-33FFFF:not([_moz-menuactive]) {
|
||||
color: #33FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FFFF, selected, focus), .lc-33FFFF[_moz-menuactive] {
|
||||
background-color: #33FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66CCCC), .lc-66CCCC:not([_moz-menuactive]) {
|
||||
color: #66CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66CCCC, selected, focus), .lc-66CCCC[_moz-menuactive] {
|
||||
background-color: #66CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-00CCCC), .lc-00CCCC:not([_moz-menuactive]) {
|
||||
color: #00CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-00CCCC, selected, focus), .lc-00CCCC[_moz-menuactive] {
|
||||
background-color: #00CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-339999), .lc-339999:not([_moz-menuactive]) {
|
||||
color: #339999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-339999, selected, focus), .lc-339999[_moz-menuactive] {
|
||||
background-color: #339999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-336666), .lc-336666:not([_moz-menuactive]) {
|
||||
color: #336666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-336666, selected, focus), .lc-336666[_moz-menuactive] {
|
||||
background-color: #336666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003333), .lc-003333:not([_moz-menuactive]) {
|
||||
color: #003333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003333, selected, focus), .lc-003333[_moz-menuactive] {
|
||||
background-color: #003333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCFFFF), .lc-CCFFFF:not([_moz-menuactive]) {
|
||||
color: #CCFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCFFFF, selected, focus), .lc-CCFFFF[_moz-menuactive] {
|
||||
background-color: #CCFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FFFF), .lc-66FFFF:not([_moz-menuactive]) {
|
||||
color: #66FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FFFF, selected, focus), .lc-66FFFF[_moz-menuactive] {
|
||||
background-color: #66FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CCFF), .lc-33CCFF:not([_moz-menuactive]) {
|
||||
color: #33CCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CCFF, selected, focus), .lc-33CCFF[_moz-menuactive] {
|
||||
background-color: #33CCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3366FF), .lc-3366FF:not([_moz-menuactive]) {
|
||||
color: #3366FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3366FF, selected, focus), .lc-3366FF[_moz-menuactive] {
|
||||
background-color: #3366FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3333FF), .lc-3333FF:not([_moz-menuactive]) {
|
||||
color: #3333FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3333FF, selected, focus), .lc-3333FF[_moz-menuactive] {
|
||||
background-color: #3333FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000099), .lc-000099:not([_moz-menuactive]) {
|
||||
color: #000099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000099, selected, focus), .lc-000099[_moz-menuactive] {
|
||||
background-color: #000099;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000066), .lc-000066:not([_moz-menuactive]) {
|
||||
color: #000066
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000066, selected, focus), .lc-000066[_moz-menuactive] {
|
||||
background-color: #000066;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCFF), .lc-CCCCFF:not([_moz-menuactive]) {
|
||||
color: #CCCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCFF, selected, focus), .lc-CCCCFF[_moz-menuactive] {
|
||||
background-color: #CCCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-9999FF), .lc-9999FF:not([_moz-menuactive]) {
|
||||
color: #9999FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-9999FF, selected, focus), .lc-9999FF[_moz-menuactive] {
|
||||
background-color: #9999FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6666CC), .lc-6666CC:not([_moz-menuactive]) {
|
||||
color: #6666CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6666CC, selected, focus), .lc-6666CC[_moz-menuactive] {
|
||||
background-color: #6666CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6633FF), .lc-6633FF:not([_moz-menuactive]) {
|
||||
color: #6633FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6633FF, selected, focus), .lc-6633FF[_moz-menuactive] {
|
||||
background-color: #6633FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6600CC), .lc-6600CC:not([_moz-menuactive]) {
|
||||
color: #6600CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6600CC, selected, focus), .lc-6600CC[_moz-menuactive] {
|
||||
background-color: #6600CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333399), .lc-333399:not([_moz-menuactive]) {
|
||||
color: #333399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333399, selected, focus), .lc-333399[_moz-menuactive] {
|
||||
background-color: #333399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330099), .lc-330099:not([_moz-menuactive]) {
|
||||
color: #330099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330099, selected, focus), .lc-330099[_moz-menuactive] {
|
||||
background-color: #330099;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCFF), .lc-FFCCFF:not([_moz-menuactive]) {
|
||||
color: #FFCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCFF, selected, focus), .lc-FFCCFF[_moz-menuactive] {
|
||||
background-color: #FFCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF99FF), .lc-FF99FF:not([_moz-menuactive]) {
|
||||
color: #FF99FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF99FF, selected, focus), .lc-FF99FF[_moz-menuactive] {
|
||||
background-color: #FF99FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC66CC), .lc-CC66CC:not([_moz-menuactive]) {
|
||||
color: #CC66CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC66CC, selected, focus), .lc-CC66CC[_moz-menuactive] {
|
||||
background-color: #CC66CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC33CC), .lc-CC33CC:not([_moz-menuactive]) {
|
||||
color: #CC33CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC33CC, selected, focus), .lc-CC33CC[_moz-menuactive] {
|
||||
background-color: #CC33CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993399), .lc-993399:not([_moz-menuactive]) {
|
||||
color: #993399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993399, selected, focus), .lc-993399[_moz-menuactive] {
|
||||
background-color: #993399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663366), .lc-663366:not([_moz-menuactive]) {
|
||||
color: #663366
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663366, selected, focus), .lc-663366[_moz-menuactive] {
|
||||
background-color: #663366;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330033), .lc-330033:not([_moz-menuactive]) {
|
||||
color: #330033
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330033, selected, focus), .lc-330033[_moz-menuactive] {
|
||||
background-color: #330033;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-white, selected, focus) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-cell-text(lc-black, selected, focus) {
|
||||
color: #000000
|
||||
}
|
||||
@ -14,6 +14,7 @@ classic.jar:
|
||||
skin/classic/messenger/messenger.css
|
||||
skin/classic/messenger/fakeAccount.css
|
||||
skin/classic/messenger/mailWindow1.css
|
||||
skin/classic/messenger/tagColors.css
|
||||
skin/classic/messenger/messageWindow.css
|
||||
skin/classic/messenger/searchBox.css
|
||||
skin/classic/messenger/junkMail.css
|
||||
|
||||
@ -46,6 +46,7 @@
|
||||
@import url("chrome://global/skin/toolbar.css");
|
||||
@import url("chrome://messenger/skin/folderMenus.css");
|
||||
@import url("chrome://messenger/skin/folderPane.css");
|
||||
@import url("chrome://messenger/skin/tagColors.css");
|
||||
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
@ -268,523 +269,6 @@ treechildren::-moz-tree-image(subjectCol, imapdeleted) {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* ::::: thread labels decoration ::::: */
|
||||
|
||||
/* There are 10x7 color definitions (size of the color picker used)
|
||||
times 2 (2 style definitions for each color) + 2 general black
|
||||
and white color definitions.
|
||||
The color definitions can be in the following formats:
|
||||
color: red;
|
||||
color: #FF0000;
|
||||
color: rgb(128, 0, 0);
|
||||
*/
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFFF) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFFF, selected, focus) {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCCC) {
|
||||
color: #CCCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCCC, selected, focus) {
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-C0C0C0) {
|
||||
color: #C0C0C0
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-C0C0C0, selected, focus) {
|
||||
background-color: #C0C0C0;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999999) {
|
||||
color: #999999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999999, selected, focus) {
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666666) {
|
||||
color: #666666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666666, selected, focus) {
|
||||
background-color: #666666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333333) {
|
||||
color: #333333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333333, selected, focus) {
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000000) {
|
||||
color: #000000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000000, selected, focus) {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCCC) {
|
||||
color: #FFCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCCC, selected, focus) {
|
||||
background-color: #FFCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6666) {
|
||||
color: #FF6666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6666, selected, focus) {
|
||||
background-color: #FF6666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF0000) {
|
||||
color: #FF0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF0000, selected, focus) {
|
||||
background-color: #FF0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC0000) {
|
||||
color: #CC0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC0000, selected, focus) {
|
||||
background-color: #CC0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-990000) {
|
||||
color: #990000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-990000, selected, focus) {
|
||||
background-color: #990000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-660000) {
|
||||
color: #660000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-660000, selected, focus) {
|
||||
background-color: #660000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330000) {
|
||||
color: #330000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330000, selected, focus) {
|
||||
background-color: #330000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC99) {
|
||||
color: #FFCC99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC99, selected, focus) {
|
||||
background-color: #FFCC99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9966) {
|
||||
color: #FF9966
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9966, selected, focus) {
|
||||
background-color: #FF9966;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9900) {
|
||||
color: #FF9900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9900, selected, focus) {
|
||||
background-color: #FF9900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6600) {
|
||||
color: #FF6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6600, selected, focus) {
|
||||
background-color: #FF6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC6600) {
|
||||
color: #CC6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC6600, selected, focus) {
|
||||
background-color: #CC6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993300) {
|
||||
color: #993300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993300, selected, focus) {
|
||||
background-color: #993300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663300) {
|
||||
color: #663300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663300, selected, focus) {
|
||||
background-color: #663300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF99) {
|
||||
color: #FFFF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF99, selected, focus) {
|
||||
background-color: #FFFF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF66) {
|
||||
color: #FFFF66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF66, selected, focus) {
|
||||
background-color: #FFFF66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC66) {
|
||||
color: #FFCC66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC66, selected, focus) {
|
||||
background-color: #FFCC66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC33) {
|
||||
color: #FFCC33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC33, selected, focus) {
|
||||
background-color: #FFCC33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC9933) {
|
||||
color: #CC9933
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC9933, selected, focus) {
|
||||
background-color: #CC9933;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-996633) {
|
||||
color: #996633
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-996633, selected, focus) {
|
||||
background-color: #996633;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663333) {
|
||||
color: #663333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663333, selected, focus) {
|
||||
background-color: #663333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFCC) {
|
||||
color: #FFFFCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFCC, selected, focus) {
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF33) {
|
||||
color: #FFFF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF33, selected, focus) {
|
||||
background-color: #FFFF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF00) {
|
||||
color: #FFFF00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF00, selected, focus) {
|
||||
background-color: #FFFF00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC00) {
|
||||
color: #FFCC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC00, selected, focus) {
|
||||
background-color: #FFCC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999900) {
|
||||
color: #999900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999900, selected, focus) {
|
||||
background-color: #999900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666600) {
|
||||
color: #666600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666600, selected, focus) {
|
||||
background-color: #666600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333300) {
|
||||
color: #333300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333300, selected, focus) {
|
||||
background-color: #333300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FF99) {
|
||||
color: #99FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FF99, selected, focus) {
|
||||
background-color: #99FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FF99) {
|
||||
color: #66FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FF99, selected, focus) {
|
||||
background-color: #66FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FF33) {
|
||||
color: #33FF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FF33, selected, focus) {
|
||||
background-color: #33FF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CC00) {
|
||||
color: #33CC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CC00, selected, focus) {
|
||||
background-color: #33CC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-009900) {
|
||||
color: #009900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-009900, selected, focus) {
|
||||
background-color: #009900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-006600) {
|
||||
color: #006600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-006600, selected, focus) {
|
||||
background-color: #006600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003300) {
|
||||
color: #003300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003300, selected, focus) {
|
||||
background-color: #003300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FFFF) {
|
||||
color: #99FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FFFF, selected, focus) {
|
||||
background-color: #99FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FFFF) {
|
||||
color: #33FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FFFF, selected, focus) {
|
||||
background-color: #33FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66CCCC) {
|
||||
color: #66CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66CCCC, selected, focus) {
|
||||
background-color: #66CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-00CCCC) {
|
||||
color: #00CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-00CCCC, selected, focus) {
|
||||
background-color: #00CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-339999) {
|
||||
color: #339999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-339999, selected, focus) {
|
||||
background-color: #339999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-336666) {
|
||||
color: #336666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-336666, selected, focus) {
|
||||
background-color: #336666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003333) {
|
||||
color: #003333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003333, selected, focus) {
|
||||
background-color: #003333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCFFFF) {
|
||||
color: #CCFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCFFFF, selected, focus) {
|
||||
background-color: #CCFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FFFF) {
|
||||
color: #66FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FFFF, selected, focus) {
|
||||
background-color: #66FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CCFF) {
|
||||
color: #33CCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CCFF, selected, focus) {
|
||||
background-color: #33CCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3366FF) {
|
||||
color: #3366FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3366FF, selected, focus) {
|
||||
background-color: #3366FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3333FF) {
|
||||
color: #3333FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3333FF, selected, focus) {
|
||||
background-color: #3333FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000099) {
|
||||
color: #000099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000099, selected, focus) {
|
||||
background-color: #000099;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000066) {
|
||||
color: #000066
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000066, selected, focus) {
|
||||
background-color: #000066;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCFF) {
|
||||
color: #CCCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCFF, selected, focus) {
|
||||
background-color: #CCCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-9999FF) {
|
||||
color: #9999FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-9999FF, selected, focus) {
|
||||
background-color: #9999FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6666CC) {
|
||||
color: #6666CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6666CC, selected, focus) {
|
||||
background-color: #6666CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6633FF) {
|
||||
color: #6633FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6633FF, selected, focus) {
|
||||
background-color: #6633FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6600CC) {
|
||||
color: #6600CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6600CC, selected, focus) {
|
||||
background-color: #6600CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333399) {
|
||||
color: #333399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333399, selected, focus) {
|
||||
background-color: #333399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330099) {
|
||||
color: #330099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330099, selected, focus) {
|
||||
background-color: #330099;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCFF) {
|
||||
color: #FFCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCFF, selected, focus) {
|
||||
background-color: #FFCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF99FF) {
|
||||
color: #FF99FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF99FF, selected, focus) {
|
||||
background-color: #FF99FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC66CC) {
|
||||
color: #CC66CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC66CC, selected, focus) {
|
||||
background-color: #CC66CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC33CC) {
|
||||
color: #CC33CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC33CC, selected, focus) {
|
||||
background-color: #CC33CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993399) {
|
||||
color: #993399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993399, selected, focus) {
|
||||
background-color: #993399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663366) {
|
||||
color: #663366
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663366, selected, focus) {
|
||||
background-color: #663366;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330033) {
|
||||
color: #330033
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330033, selected, focus) {
|
||||
background-color: #330033;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-white, selected, focus) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-cell-text(lc-black, selected, focus) {
|
||||
color: #000000
|
||||
}
|
||||
|
||||
/* :::::
|
||||
:: Make sure the min height is small so we can
|
||||
:: resize the pane vertically -EDV
|
||||
|
||||
@ -169,8 +169,8 @@ description[selectable="true"]:focus > descriptionitem[selected="true"]
|
||||
}
|
||||
|
||||
.tagvalue {
|
||||
font-weight: bold;
|
||||
margin-left: 0px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
/* ::::: msg header email addresses ::::: */
|
||||
|
||||
@ -44,6 +44,7 @@
|
||||
======================================================================= */
|
||||
|
||||
@import url("chrome://messenger/skin/");
|
||||
@import url("chrome://messenger/skin/tagColors.css");
|
||||
|
||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
|
||||
552
mozilla/mail/themes/qute/mail/tagColors.css
Normal file
552
mozilla/mail/themes/qute/mail/tagColors.css
Normal file
@ -0,0 +1,552 @@
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is Tag Color Style rules
|
||||
* The Initial Developer of the Original Code is
|
||||
* Scott MacGregor <mscott@mozilla.org>.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2006
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
|
||||
/* ::::: thread labels decoration ::::: */
|
||||
|
||||
/* There are 10x7 color definitions (size of the color picker used)
|
||||
times 2 (2 style definitions for each color) + 2 general black
|
||||
and white color definitions.
|
||||
The color definitions can be in the following formats:
|
||||
color: red;
|
||||
color: #FF0000;
|
||||
color: rgb(128, 0, 0);
|
||||
*/
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFFF), .lc-FFFFFF:not([_moz-menuactive]) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFFF, selected, focus), .lc-FFFFFF[_moz-menuactive] {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCCC), .lc-CCCCCC:not([_moz-menuactive]) {
|
||||
color: #CCCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCCC, selected, focus), .lc-CCCCCC[_moz-menuactive] {
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-C0C0C0), .lc-C0C0C0:not([_moz-menuactive]) {
|
||||
color: #C0C0C0
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-C0C0C0, selected, focus), .lc-C0C0C0[_moz-menuactive] {
|
||||
background-color: #C0C0C0;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999999), .lc-999999:not([_moz-menuactive]) {
|
||||
color: #999999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999999, selected, focus), .lc-999999[_moz-menuactive] {
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666666), .lc-666666:not([_moz-menuactive]) {
|
||||
color: #666666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666666, selected, focus), .lc-666666[_moz-menuactive] {
|
||||
background-color: #666666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333333), .lc-333333:not([_moz-menuactive]) {
|
||||
color: #333333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333333, selected, focus), .lc-333333[_moz-menuactive] {
|
||||
background-color: #333333;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000000), .lc-000000:not([_moz-menuactive]) {
|
||||
color: #000000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000000, selected, focus), .lc-000000[_moz-menuactive] {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCCC), .lc-FFCCCC:not([_moz-menuactive]) {
|
||||
color: #FFCCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCCC, selected, focus), .lc-FFCCCC[_moz-menuactive] {
|
||||
background-color: #FFCCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6666), .lc-FF6666:not([_moz-menuactive]) {
|
||||
color: #FF6666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6666, selected, focus), .lc-FF6666[_moz-menuactive] {
|
||||
background-color: #FF6666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF0000), .lc-FF0000:not([_moz-menuactive]) {
|
||||
color: #FF0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF0000, selected, focus), .lc-FF0000[_moz-menuactive] {
|
||||
background-color: #FF0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC0000), .lc-CC0000:not([_moz-menuactive]) {
|
||||
color: #CC0000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC0000, selected, focus), .lc-CC0000[_moz-menuactive] {
|
||||
background-color: #CC0000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-990000), .lc-990000:not([_moz-menuactive]) {
|
||||
color: #990000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-990000, selected, focus), .lc-990000[_moz-menuactive] {
|
||||
background-color: #990000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-660000), .lc-660000:not([_moz-menuactive]) {
|
||||
color: #660000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-660000, selected, focus), .lc-660000[_moz-menuactive] {
|
||||
background-color: #660000;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330000), .lc-330000:not([_moz-menuactive]) {
|
||||
color: #330000
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330000, selected, focus), .lc-330000[_moz-menuactive] {
|
||||
background-color: #330000;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC99), .lc-FFCC99:not([_moz-menuactive]) {
|
||||
color: #FFCC99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC99, selected, focus), .lc-FFCC99[_moz-menuactive] {
|
||||
background-color: #FFCC99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9966), .lc-FF9966:not([_moz-menuactive]) {
|
||||
color: #FF9966
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9966, selected, focus), .lc-FF9966[_moz-menuactive] {
|
||||
background-color: #FF9966;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF9900), .lc-FF9900:not([_moz-menuactive]) {
|
||||
color: #FF9900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF9900, selected, focus), .lc-FF9900[_moz-menuactive] {
|
||||
background-color: #FF9900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF6600), .lc-FF6600:not([_moz-menuactive]) {
|
||||
color: #FF6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF6600, selected, focus), .lc-FF6600[_moz-menuactive] {
|
||||
background-color: #FF6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC6600), .lc-CC6600:not([_moz-menuactive]) {
|
||||
color: #CC6600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC6600, selected, focus), .lc-CC6600[_moz-menuactive] {
|
||||
background-color: #CC6600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993300), .lc-993300:not([_moz-menuactive]) {
|
||||
color: #993300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993300, selected, focus), .lc-993300[_moz-menuactive] {
|
||||
background-color: #993300;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663300), .lc-663300:not([_moz-menuactive]) {
|
||||
color: #663300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663300, selected, focus), .lc-663300[_moz-menuactive] {
|
||||
background-color: #663300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF99), .lc-FFFF99:not([_moz-menuactive]) {
|
||||
color: #FFFF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF99, selected, focus), .lc-FFFF99[_moz-menuactive] {
|
||||
background-color: #FFFF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF66), .lc-FFFF66:not([_moz-menuactive]) {
|
||||
color: #FFFF66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF66, selected, focus), .lc-FFFF66[_moz-menuactive] {
|
||||
background-color: #FFFF66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC66), .lc-FFCC66:not([_moz-menuactive]) {
|
||||
color: #FFCC66
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC66, selected, focus), .lc-FFCC66[_moz-menuactive] {
|
||||
background-color: #FFCC66;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC33), .lc-FFCC33:not([_moz-menuactive]) {
|
||||
color: #FFCC33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC33, selected, focus), .lc-FFCC33[_moz-menuactive] {
|
||||
background-color: #FFCC33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC9933), .lc-CC9933:not([_moz-menuactive]) {
|
||||
color: #CC9933
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC9933, selected, focus), .lc-CC9933[_moz-menuactive] {
|
||||
background-color: #CC9933;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-996633), .lc-996633:not([_moz-menuactive]) {
|
||||
color: #996633
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-996633, selected, focus), .lc-996633[_moz-menuactive] {
|
||||
background-color: #996633;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663333), .lc-663333:not([_moz-menuactive]) {
|
||||
color: #663333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663333, selected, focus), .lc-663333[_moz-menuactive] {
|
||||
background-color: #663333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFFCC), .lc-FFFFCC:not([_moz-menuactive]) {
|
||||
color: #FFFFCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFFCC, selected, focus), .lc-FFFFCC[_moz-menuactive] {
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF33), .lc-FFFF33:not([_moz-menuactive]) {
|
||||
color: #FFFF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF33, selected, focus), .lc-FFFF33[_moz-menuactive] {
|
||||
background-color: #FFFF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFFF00), .lc-FFFF00:not([_moz-menuactive]) {
|
||||
color: #FFFF00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFFF00, selected, focus), .lc-FFFF00[_moz-menuactive] {
|
||||
background-color: #FFFF00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCC00), .lc-FFCC00:not([_moz-menuactive]) {
|
||||
color: #FFCC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCC00, selected, focus), .lc-FFCC00[_moz-menuactive] {
|
||||
background-color: #FFCC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-999900), .lc-999900:not([_moz-menuactive]) {
|
||||
color: #999900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-999900, selected, focus), .lc-999900[_moz-menuactive] {
|
||||
background-color: #999900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-666600), .lc-666600:not([_moz-menuactive]) {
|
||||
color: #666600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-666600, selected, focus), .lc-666600[_moz-menuactive] {
|
||||
background-color: #666600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333300), .lc-333300:not([_moz-menuactive]) {
|
||||
color: #333300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333300, selected, focus), .lc-333300[_moz-menuactive] {
|
||||
background-color: #333300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FF99), .lc-99FF99:not([_moz-menuactive]) {
|
||||
color: #99FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FF99, selected, focus), .lc-99FF99[_moz-menuactive] {
|
||||
background-color: #99FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FF99), .lc-66FF99:not([_moz-menuactive]) {
|
||||
color: #66FF99
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FF99, selected, focus), .lc-66FF99[_moz-menuactive] {
|
||||
background-color: #66FF99;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FF33), .lc-33FF33:not([_moz-menuactive]) {
|
||||
color: #33FF33
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FF33, selected, focus), .lc-33FF33[_moz-menuactive] {
|
||||
background-color: #33FF33;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CC00), .lc-33CC00:not([_moz-menuactive]) {
|
||||
color: #33CC00
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CC00, selected, focus), .lc-33CC00[_moz-menuactive] {
|
||||
background-color: #33CC00;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-009900), .lc-009900:not([_moz-menuactive]) {
|
||||
color: #009900
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-009900, selected, focus), .lc-009900[_moz-menuactive] {
|
||||
background-color: #009900;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-006600), .lc-006600:not([_moz-menuactive]) {
|
||||
color: #006600
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-006600, selected, focus), .lc-006600[_moz-menuactive] {
|
||||
background-color: #006600;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003300), .lc-003300:not([_moz-menuactive]) {
|
||||
color: #003300
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003300, selected, focus), .lc-003300[_moz-menuactive] {
|
||||
background-color: #003300;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-99FFFF), .lc-99FFFF:not([_moz-menuactive]) {
|
||||
color: #99FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-99FFFF, selected, focus), .lc-99FFFF[_moz-menuactive] {
|
||||
background-color: #99FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33FFFF), .lc-33FFFF:not([_moz-menuactive]) {
|
||||
color: #33FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33FFFF, selected, focus), .lc-33FFFF[_moz-menuactive] {
|
||||
background-color: #33FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66CCCC), .lc-66CCCC:not([_moz-menuactive]) {
|
||||
color: #66CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66CCCC, selected, focus), .lc-66CCCC[_moz-menuactive] {
|
||||
background-color: #66CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-00CCCC), .lc-00CCCC:not([_moz-menuactive]) {
|
||||
color: #00CCCC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-00CCCC, selected, focus), .lc-00CCCC[_moz-menuactive] {
|
||||
background-color: #00CCCC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-339999), .lc-339999:not([_moz-menuactive]) {
|
||||
color: #339999
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-339999, selected, focus), .lc-339999[_moz-menuactive] {
|
||||
background-color: #339999;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-336666), .lc-336666:not([_moz-menuactive]) {
|
||||
color: #336666
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-336666, selected, focus), .lc-336666[_moz-menuactive] {
|
||||
background-color: #336666;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-003333), .lc-003333:not([_moz-menuactive]) {
|
||||
color: #003333
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-003333, selected, focus), .lc-003333[_moz-menuactive] {
|
||||
background-color: #003333;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCFFFF), .lc-CCFFFF:not([_moz-menuactive]) {
|
||||
color: #CCFFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCFFFF, selected, focus), .lc-CCFFFF[_moz-menuactive] {
|
||||
background-color: #CCFFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-66FFFF), .lc-66FFFF:not([_moz-menuactive]) {
|
||||
color: #66FFFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-66FFFF, selected, focus), .lc-66FFFF[_moz-menuactive] {
|
||||
background-color: #66FFFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-33CCFF), .lc-33CCFF:not([_moz-menuactive]) {
|
||||
color: #33CCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-33CCFF, selected, focus), .lc-33CCFF[_moz-menuactive] {
|
||||
background-color: #33CCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3366FF), .lc-3366FF:not([_moz-menuactive]) {
|
||||
color: #3366FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3366FF, selected, focus), .lc-3366FF[_moz-menuactive] {
|
||||
background-color: #3366FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-3333FF), .lc-3333FF:not([_moz-menuactive]) {
|
||||
color: #3333FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-3333FF, selected, focus), .lc-3333FF[_moz-menuactive] {
|
||||
background-color: #3333FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000099), .lc-000099:not([_moz-menuactive]) {
|
||||
color: #000099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000099, selected, focus), .lc-000099[_moz-menuactive] {
|
||||
background-color: #000099;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-000066), .lc-000066:not([_moz-menuactive]) {
|
||||
color: #000066
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-000066, selected, focus), .lc-000066[_moz-menuactive] {
|
||||
background-color: #000066;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CCCCFF), .lc-CCCCFF:not([_moz-menuactive]) {
|
||||
color: #CCCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CCCCFF, selected, focus), .lc-CCCCFF[_moz-menuactive] {
|
||||
background-color: #CCCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-9999FF), .lc-9999FF:not([_moz-menuactive]) {
|
||||
color: #9999FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-9999FF, selected, focus), .lc-9999FF[_moz-menuactive] {
|
||||
background-color: #9999FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6666CC), .lc-6666CC:not([_moz-menuactive]) {
|
||||
color: #6666CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6666CC, selected, focus), .lc-6666CC[_moz-menuactive] {
|
||||
background-color: #6666CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6633FF), .lc-6633FF:not([_moz-menuactive]) {
|
||||
color: #6633FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6633FF, selected, focus), .lc-6633FF[_moz-menuactive] {
|
||||
background-color: #6633FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-6600CC), .lc-6600CC:not([_moz-menuactive]) {
|
||||
color: #6600CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-6600CC, selected, focus), .lc-6600CC[_moz-menuactive] {
|
||||
background-color: #6600CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-333399), .lc-333399:not([_moz-menuactive]) {
|
||||
color: #333399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-333399, selected, focus), .lc-333399[_moz-menuactive] {
|
||||
background-color: #333399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330099), .lc-330099:not([_moz-menuactive]) {
|
||||
color: #330099
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330099, selected, focus), .lc-330099[_moz-menuactive] {
|
||||
background-color: #330099;
|
||||
}
|
||||
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FFCCFF), .lc-FFCCFF:not([_moz-menuactive]) {
|
||||
color: #FFCCFF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FFCCFF, selected, focus), .lc-FFCCFF[_moz-menuactive] {
|
||||
background-color: #FFCCFF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-FF99FF), .lc-FF99FF:not([_moz-menuactive]) {
|
||||
color: #FF99FF
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-FF99FF, selected, focus), .lc-FF99FF[_moz-menuactive] {
|
||||
background-color: #FF99FF;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC66CC), .lc-CC66CC:not([_moz-menuactive]) {
|
||||
color: #CC66CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC66CC, selected, focus), .lc-CC66CC[_moz-menuactive] {
|
||||
background-color: #CC66CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-CC33CC), .lc-CC33CC:not([_moz-menuactive]) {
|
||||
color: #CC33CC
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-CC33CC, selected, focus), .lc-CC33CC[_moz-menuactive] {
|
||||
background-color: #CC33CC;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-993399), .lc-993399:not([_moz-menuactive]) {
|
||||
color: #993399
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-993399, selected, focus), .lc-993399[_moz-menuactive] {
|
||||
background-color: #993399;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-663366), .lc-663366:not([_moz-menuactive]) {
|
||||
color: #663366
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-663366, selected, focus), .lc-663366[_moz-menuactive] {
|
||||
background-color: #663366;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-330033), .lc-330033:not([_moz-menuactive]) {
|
||||
color: #330033
|
||||
}
|
||||
treechildren::-moz-tree-row(lc-330033, selected, focus), .lc-330033[_moz-menuactive] {
|
||||
background-color: #330033;
|
||||
}
|
||||
|
||||
treechildren::-moz-tree-cell-text(lc-white, selected, focus) {
|
||||
color: #FFFFFF
|
||||
}
|
||||
treechildren::-moz-tree-cell-text(lc-black, selected, focus) {
|
||||
color: #000000
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user