diff --git a/mozilla/mailnews/ui/messenger/resources/common.css b/mozilla/mailnews/ui/messenger/resources/common.css index a1d783d4786..a3f8ab14a6e 100644 --- a/mozilla/mailnews/ui/messenger/resources/common.css +++ b/mozilla/mailnews/ui/messenger/resources/common.css @@ -1,7 +1,7 @@ window { display: block; width: 100%; - background-color: black; + background-color: white; } tree { @@ -46,4 +46,4 @@ icon { treecell[selected] { background-color: #000080; -} \ No newline at end of file +} diff --git a/mozilla/mailnews/ui/messenger/resources/folderPane.css b/mozilla/mailnews/ui/messenger/resources/folderPane.css index e4417da75fd..026ffc91b18 100644 --- a/mozilla/mailnews/ui/messenger/resources/folderPane.css +++ b/mozilla/mailnews/ui/messenger/resources/folderPane.css @@ -1,11 +1,11 @@ window { display: block; - background-color:black; + background-color:white; } tree { display: table; - background-color: #000000; + background-color: white; border: none; border-spacing: 0px; border-collapse: collapse; @@ -21,26 +21,23 @@ treehead { treebody { display: table-row-group; - } treecell { display: table-cell; - color: white; + color: black; font-family: Verdana; font-size: 10pt; } treecell[selectedcell] { - background-color: blue; + background-color: blue; } treehead treeitem treecell { + font-size: 8pt; background-color: #a0a0a0; border: thin black solid; color: black; } -treecell[selected] { - background-color: #000080; -} diff --git a/mozilla/mailnews/ui/messenger/resources/mailshell.xul b/mozilla/mailnews/ui/messenger/resources/mailshell.xul index 12deca5c3d5..958c0979765 100644 --- a/mozilla/mailnews/ui/messenger/resources/mailshell.xul +++ b/mozilla/mailnews/ui/messenger/resources/mailshell.xul @@ -7,7 +7,7 @@ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onconstruction="MsgStartUp()"> - #toolbar { + #toolbar { position: fixed; width: 100%; height: 80px; @@ -41,19 +41,19 @@ border: solid 1px black; background-color: #ffffff; } - #thread { - position: fixed; - width: auto; - height: 120px; - top: 80px; - right: 0; - bottom: auto; - left: 15em; - overflow: auto; - padding: 2px .5em; - border: solid 1px white - background-color: #cccccc; - } + #thread { + position: fixed; + width: auto; + height: 120px; + top: 80px; + right: 0; + bottom: auto; + left: 15em; + overflow: auto; + padding: 2px .5em; + border: solid 1px white + background-color: #cccccc; + } #footer { position: fixed; width: 100%; diff --git a/mozilla/mailnews/ui/messenger/resources/threadPane.css b/mozilla/mailnews/ui/messenger/resources/threadPane.css index e6e8f568f84..f62535537cf 100644 --- a/mozilla/mailnews/ui/messenger/resources/threadPane.css +++ b/mozilla/mailnews/ui/messenger/resources/threadPane.css @@ -1,52 +1,50 @@ window { - display: block; - width: 100%; - background-color: black; + display: block; + width: 100%; + background-color: white; } tree { - display: table; - background-color: #000000; - border: none; - border-spacing: 0px; - //border-collapse: collapse; - width: 100%; + display: table; + background-color: white; + border: none; + border-spacing: 0px; + //border-collapse: collapse; + width: 100%; } -treeitem { - display: table-row; -} +treeitem { + display: table-row; +} -treehead { - display: table-header-group; -} +treehead { + display: table-header-group; +} -treebody { - display: table-row-group; - -} +treebody { + display: table-row-group; +} -treecell { - display: table-cell; - color: white; - font-family: Verdana; - font-size: 10pt; -} +treecell { + display: table-cell; + color: black; + font-family: Verdana; + font-size: 10pt; +} treecell[selectedcell] { - background-color: blue; + background-color: blue; +} + +treehead treeitem treecell { + font-size: 8pt; + background-color: #a0a0a0; + border: thin black solid; + color: black; } -treehead treeitem treecell { - background-color: #a0a0a0; - border: thin black solid; - color: black; -} icon { - display: list-item; - list-style-image: url(http://www.shadowland.org/client/images/ClosedRead.gif); + display: list-item; + list-style-image: url(http://www.shadowland.org/client/images/ClosedRead.gif); } -treecell[selected] { - background-color: #000080; -} \ No newline at end of file