From 0c7f928db227e5dcf900830c3cf317205c2acd33 Mon Sep 17 00:00:00 2001 From: robert Date: Mon, 5 Jan 2004 15:02:12 +0000 Subject: [PATCH 01/16] some small design improvements for focus and hover; prepare for 1.6 release --- LCARStrek/contents.rdf | 44 +++++++++++++++++------------------ LCARStrek/global/button.css | 4 ++-- LCARStrek/global/checkbox.css | 7 +++++- LCARStrek/global/radio.css | 9 +++++-- LCARStrek/global/textbox.css | 10 ++++---- LCARStrek/global/tree.css | 20 +++++++--------- 6 files changed, 51 insertions(+), 43 deletions(-) diff --git a/LCARStrek/contents.rdf b/LCARStrek/contents.rdf index cb3e4b2f..4e3c61ca 100644 --- a/LCARStrek/contents.rdf +++ b/LCARStrek/contents.rdf @@ -5,42 +5,42 @@ - + - - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + - - - + + + diff --git a/LCARStrek/global/button.css b/LCARStrek/global/button.css index a5f42446..3e364c65 100644 --- a/LCARStrek/global/button.css +++ b/LCARStrek/global/button.css @@ -55,7 +55,7 @@ button { .button-box { -moz-border-radius: 3px; -/* border: 1px solid transparent; */ + border: 1px solid transparent; padding: 1px 4px 2px 3px; } @@ -71,7 +71,7 @@ button:focus { } button:focus > .button-box { -/* border: 1px dotted #FF9F00; */ + border: 1px dotted #008484; } /* .......... default state .......... */ diff --git a/LCARStrek/global/checkbox.css b/LCARStrek/global/checkbox.css index 3002ae12..6ef631fc 100644 --- a/LCARStrek/global/checkbox.css +++ b/LCARStrek/global/checkbox.css @@ -63,7 +63,7 @@ checkbox { /* ..... focused state ..... */ checkbox:focus > .checkbox-label-box { - border: 1px dotted #FF9F00; + border: 1px dotted #008484; } /* ..... disabled state ..... */ @@ -92,6 +92,11 @@ checkbox:hover:active > .checkbox-check { border: 1px solid #FFCF00; } +checkbox:hover > .checkbox-label-box, +checkbox:hover:active > .checkbox-label-box { + color: #FFCF00; +} + /* ..... checked state ..... */ checkbox[checked="true"] > .checkbox-check { diff --git a/LCARStrek/global/radio.css b/LCARStrek/global/radio.css index 9352a05b..395fbcdb 100644 --- a/LCARStrek/global/radio.css +++ b/LCARStrek/global/radio.css @@ -65,8 +65,8 @@ radio { /* ..... focused state ..... */ -radio[focused="true"] > .radio-label-box { - border: 1px dotted #FF9F00; +radio[focused="true"] > .radio-label-box { + border: 1px dotted #008484; } /* ..... disabled state ..... */ @@ -101,6 +101,11 @@ radio:hover:active > .radio-check-box1 { border: 1px solid #FFCF00; } +radio:hover > .radio-label-box, +radio:hover:active > .radio-label-box { + color: #FFCF00; +} + radio[disabled="true"] > .radio-check-box1 { border: 1px solid #8050B0 !important; } diff --git a/LCARStrek/global/textbox.css b/LCARStrek/global/textbox.css index 30948ac2..115c7b1a 100644 --- a/LCARStrek/global/textbox.css +++ b/LCARStrek/global/textbox.css @@ -94,10 +94,10 @@ textbox[disabled="true"] { /* ..... focused state ..... */ textbox[focused="true"] { - -moz-border-top-colors: #FFCF00 #FFCF00; - -moz-border-right-colors: #FFCF00 #FFCF00; - -moz-border-bottom-colors: #FFCF00 #FFCF00; - -moz-border-left-colors: #FFCF00 #FFCF00; + -moz-border-top-colors: #008484 #008484; + -moz-border-right-colors: #008484 #008484; + -moz-border-bottom-colors: #008484 #008484; + -moz-border-left-colors: #008484 #008484; margin: 1px 3px; } @@ -115,4 +115,4 @@ textbox.plain { margin: 0px !important; border: none !important; min-height: 0px; -} \ No newline at end of file +} diff --git a/LCARStrek/global/tree.css b/LCARStrek/global/tree.css index b7d6f427..6c43d0f8 100644 --- a/LCARStrek/global/tree.css +++ b/LCARStrek/global/tree.css @@ -109,37 +109,35 @@ treechildren::-moz-tree-cell-text { } tree[selstyle="primary"] > treechildren::-moz-tree-cell-text(primary) { - border: 2px solid transparent; + border: 1px solid transparent; padding: 0px 1px 1px 1px; } -/* treechildren::-moz-tree-cell-text(selected) { - color: #FFFFFF; + color: #FFCF00; } tree[selstyle="primary"] > treechildren::-moz-tree-cell-text(primary, selected) { - background-color: #808080; - color: #FFFFFF; + background-color: #008484; + color: #FFCF00; } treechildren::-moz-tree-cell-text(selected, focus) { - color: #FFFFFF; + color: #FFCF00; } tree[selstyle="primary"] > treechildren::-moz-tree-cell-text(primary, selected, focus) { - background-color: #336699; - color: #FFFFFF; + background-color: #008484; + color: #FFCF00; } tree[selstyle="primary"] > treechildren::-moz-tree-cell-text(primary, current, focus) { - border: 1px dotted #9999CC; + border: 1px dotted #FF9F00; } tree[selstyle="primary"] > treechildren::-moz-tree-cell-text(primary, selected, current, focus) { - border: 1px dotted #666699; + border: 1px dotted #FF9F00; } -*/ /* ::::: lines connecting cells ::::: */ -- 2.35.3 From f2d093769f95436789f9bd0d9bec33447eaa9d59 Mon Sep 17 00:00:00 2001 From: robert Date: Mon, 5 Jan 2004 15:02:27 +0000 Subject: [PATCH 02/16] prepare for 1.6 release --- EarlyBlue/contents.rdf | 44 +++++++++++++++++++-------------------- EarlyBlue/global/tree.css | 2 +- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/EarlyBlue/contents.rdf b/EarlyBlue/contents.rdf index 36a5a4f0..adb0cf93 100644 --- a/EarlyBlue/contents.rdf +++ b/EarlyBlue/contents.rdf @@ -5,42 +5,42 @@ - + - - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + - - - + + + diff --git a/EarlyBlue/global/tree.css b/EarlyBlue/global/tree.css index becca354..5fcb4de0 100644 --- a/EarlyBlue/global/tree.css +++ b/EarlyBlue/global/tree.css @@ -110,7 +110,7 @@ treechildren::-moz-tree-cell-text(selected) { } tree[selstyle="primary"] > treechildren::-moz-tree-cell-text(primary) { - border: 2px solid transparent; + border: 1px solid transparent; padding: 0px 1px 1px 1px; } -- 2.35.3 From 88166091b3c048013455504307785c00815afc81 Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 22 Jan 2004 20:31:23 +0000 Subject: [PATCH 03/16] update chatzilla skinto Mozilla 1.6 version --- EarlyBlue/chatzilla/browserOverlay.css | 37 +++++++++ EarlyBlue/chatzilla/chatzilla.css | 72 +++++++++++++++--- EarlyBlue/chatzilla/images/halfop-graphic.gif | Bin 0 -> 103 bytes EarlyBlue/chatzilla/images/halfop-symbol.gif | Bin 0 -> 89 bytes EarlyBlue/chatzilla/images/input-send.gif | Bin 0 -> 97 bytes EarlyBlue/chatzilla/images/is-op.gif | Bin 78 -> 0 bytes EarlyBlue/chatzilla/images/is-voice.gif | Bin 78 -> 0 bytes EarlyBlue/chatzilla/images/isnt-op.gif | Bin 67 -> 0 bytes .../chatzilla/images/multiline-contract.gif | Bin 0 -> 93 bytes .../chatzilla/images/multiline-expand.gif | Bin 0 -> 93 bytes .../images/{isnt-voice.gif => no-graphic.gif} | Bin EarlyBlue/chatzilla/images/no-symbol.gif | Bin 0 -> 76 bytes EarlyBlue/chatzilla/images/op-graphic.gif | Bin 0 -> 78 bytes EarlyBlue/chatzilla/images/op-symbol.gif | Bin 0 -> 92 bytes EarlyBlue/chatzilla/images/voice-graphic.gif | Bin 0 -> 78 bytes EarlyBlue/chatzilla/images/voice-symbol.gif | Bin 0 -> 83 bytes EarlyBlue/chatzilla/output-dark.css | 28 +++++++ EarlyBlue/chatzilla/output-default.css | 24 +----- EarlyBlue/chatzilla/output-light.css | 45 ++++++++++- 19 files changed, 169 insertions(+), 37 deletions(-) create mode 100644 EarlyBlue/chatzilla/browserOverlay.css create mode 100644 EarlyBlue/chatzilla/images/halfop-graphic.gif create mode 100644 EarlyBlue/chatzilla/images/halfop-symbol.gif create mode 100644 EarlyBlue/chatzilla/images/input-send.gif delete mode 100644 EarlyBlue/chatzilla/images/is-op.gif delete mode 100644 EarlyBlue/chatzilla/images/is-voice.gif delete mode 100644 EarlyBlue/chatzilla/images/isnt-op.gif create mode 100644 EarlyBlue/chatzilla/images/multiline-contract.gif create mode 100644 EarlyBlue/chatzilla/images/multiline-expand.gif rename EarlyBlue/chatzilla/images/{isnt-voice.gif => no-graphic.gif} (100%) create mode 100644 EarlyBlue/chatzilla/images/no-symbol.gif create mode 100644 EarlyBlue/chatzilla/images/op-graphic.gif create mode 100644 EarlyBlue/chatzilla/images/op-symbol.gif create mode 100644 EarlyBlue/chatzilla/images/voice-graphic.gif create mode 100644 EarlyBlue/chatzilla/images/voice-symbol.gif diff --git a/EarlyBlue/chatzilla/browserOverlay.css b/EarlyBlue/chatzilla/browserOverlay.css new file mode 100644 index 00000000..3db1f357 --- /dev/null +++ b/EarlyBlue/chatzilla/browserOverlay.css @@ -0,0 +1,37 @@ +/* ***** 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 ChatZilla. + * + * The Initial Developer of the Original Code is Andreas Premstaller. + * + * Contributor(s): + * James Ross + * + * 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 ***** */ + +#tb-chatzilla-open { + list-style-image: url("chrome://chatzilla/skin/images/taskbar-irc.gif"); +} diff --git a/EarlyBlue/chatzilla/chatzilla.css b/EarlyBlue/chatzilla/chatzilla.css index ad079556..93abb5db 100644 --- a/EarlyBlue/chatzilla/chatzilla.css +++ b/EarlyBlue/chatzilla/chatzilla.css @@ -69,7 +69,7 @@ window { } .view-button { - color: #000000; + /* do NOT set color, at least not without background. :) */ } .view-button[state="current"] { @@ -101,6 +101,10 @@ window { padding-right: 10px; } +#user-list { + margin: 0px; +} + #server-nick { padding-top: 5px; } @@ -128,20 +132,66 @@ window { border: 1px inset #CCD0DD; } -/* op image column */ -treechildren::-moz-tree-image(usercol-op, state-true) { - list-style-image: url(chrome://chatzilla/skin/images/is-op.gif) +treecol { + border: none; +} + +treechildren::-moz-tree-cell-text { + padding-top: 1px; +} + +/* The userlist can be in one of two state. In "symbol", the user's + * channel mode is shown as a @ or + image, while in "graphic" mode, the + * image is one of the LED images. + */ + +/* no mode */ +treechildren::-moz-tree-image { + list-style-image: url(chrome://chatzilla/skin/images/no-symbol.gif); + margin-right: 3px; +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image { + list-style-image: url(chrome://chatzilla/skin/images/no-graphic.gif); +} + +/* voice */ +treechildren::-moz-tree-image(voice-true) { + list-style-image: url(chrome://chatzilla/skin/images/voice-symbol.gif); +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image(voice-true) { + list-style-image: url(chrome://chatzilla/skin/images/voice-graphic.gif); +} + +/* half-chanop */ +treechildren::-moz-tree-image(halfop-true) { + list-style-image: url(chrome://chatzilla/skin/images/halfop-symbol.gif); +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image(halfop-true) { + list-style-image: url(chrome://chatzilla/skin/images/halfop-graphic.gif); +} + +/* chanop */ +treechildren::-moz-tree-image(op-true) { + list-style-image: url(chrome://chatzilla/skin/images/op-symbol.gif); } -treechildren::-moz-tree-image(usercol-op, state-false) { - list-style-image: url(chrome://chatzilla/skin/images/isnt-op.gif) +#user-list[mode="graphic"] treechildren::-moz-tree-image(op-true) { + list-style-image: url(chrome://chatzilla/skin/images/op-graphic.gif); } -/* voice image column */ -treechildren::-moz-tree-image(usercol-voice, state-true) { - list-style-image: url(chrome://chatzilla/skin/images/is-voice.gif) +.colorGrid { + width: 24px; + height: 16px; + border: 1px solid black; + -moz-box-align: center; + -moz-box-pack: center; } -treechildren::-moz-tree-image(usercol-voice, state-false) { - list-style-image: url(chrome://chatzilla/skin/images/isnt-voice.gif) +#colorTooltip { + padding: 0px; + -moz-box-align: center; + -moz-box-pack: center; } diff --git a/EarlyBlue/chatzilla/images/halfop-graphic.gif b/EarlyBlue/chatzilla/images/halfop-graphic.gif new file mode 100644 index 0000000000000000000000000000000000000000..d1909422e8b2fb221cd9def32bfc338a1b4c8c7f GIT binary patch literal 103 zcmZ?wbhEHbjEB+I8E=o--Nlj5G&n(GM2+2rQaQE~LU{L(Y!pOzI o$e;sK2-3p9B;M1%lCz+1LCP^lv+I|)-jhg)zR@T*U4+3J0A>~%nE(I) literal 0 HcmV?d00001 diff --git a/EarlyBlue/chatzilla/images/input-send.gif b/EarlyBlue/chatzilla/images/input-send.gif new file mode 100644 index 0000000000000000000000000000000000000000..8bf0a55cdd094187466c7e2c9e5210a5d133ac00 GIT binary patch literal 97 zcmZ?wbhEHb6krfwXkcVuWMKIJ|G(ltQRkx6#FEq$h4Rdj426)4R0VfW-v9>1pDc`A yKt(zXKmgLhz$D+(zw-23t^?MECqq8E&MZ6c`sl{QXXTS_eXDuPa@>uP!5RRH%OPC= literal 0 HcmV?d00001 diff --git a/EarlyBlue/chatzilla/images/is-op.gif b/EarlyBlue/chatzilla/images/is-op.gif deleted file mode 100644 index 83f3fa50f59314b020bf1425d1088f8c24a12573..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 78 zcmZ?wbhEHb3YK diff --git a/EarlyBlue/chatzilla/images/multiline-contract.gif b/EarlyBlue/chatzilla/images/multiline-contract.gif new file mode 100644 index 0000000000000000000000000000000000000000..8cd0f0e0cdf686ef92ad01130d87ec2a609d0931 GIT binary patch literal 93 zcmZ?wbhEHb6krfwXkcUjg8%>jEB+I8E=o--Nlj5G&n(GM2+2rQaQE~LU{L(Y!pOzI s$e;sK2-3p9B;C`$^7LDVyNwP~SjEB+I8E=o--Nlj5G&n(GM2+2rQaQE~LU{L(Y!pOzI s$e;sK2-3p9B;C`$@-)ZXh8DM|4CB)>{!%duJSN^Vu6uB59V>%10L!Wy?*IS* literal 0 HcmV?d00001 diff --git a/EarlyBlue/chatzilla/images/isnt-voice.gif b/EarlyBlue/chatzilla/images/no-graphic.gif similarity index 100% rename from EarlyBlue/chatzilla/images/isnt-voice.gif rename to EarlyBlue/chatzilla/images/no-graphic.gif diff --git a/EarlyBlue/chatzilla/images/no-symbol.gif b/EarlyBlue/chatzilla/images/no-symbol.gif new file mode 100644 index 0000000000000000000000000000000000000000..4cde0402c8a4bc948493f9faa70658495423adbd GIT binary patch literal 76 zcmZ?wbhEHbjEB+I8E=o--Nlj5G&n(GM2+2rQaQE~LU{L(Y!pOzI s$e;sK2-3p9B-PWulI!jqhDiq{qc$I#^y_l$qZc-pg{EpmF)&yI0LJ+oo&W#< literal 0 HcmV?d00001 diff --git a/EarlyBlue/chatzilla/images/voice-graphic.gif b/EarlyBlue/chatzilla/images/voice-graphic.gif new file mode 100644 index 0000000000000000000000000000000000000000..b9fc0d015e03cc9e1196d88fa5e29f211e3c935d GIT binary patch literal 78 zcmZ?wbhEHbd7w-NC1I3>#j0_A+3_1)z0Fq~5lAprLSuQCb)NCRZ c@bFONXSv$B%uz~P6%x8Sgf8!MV`Q)f04K^CF#rGn literal 0 HcmV?d00001 diff --git a/EarlyBlue/chatzilla/images/voice-symbol.gif b/EarlyBlue/chatzilla/images/voice-symbol.gif new file mode 100644 index 0000000000000000000000000000000000000000..be617306010185d4a41d74618815ba62ba858790 GIT binary patch literal 83 zcmZ?wbhEHbjEB+I8E=o--Nlj5G&n(GM2+2rQaQE~LU{L(Y!pOzI i$e;sK2-3p9B-qoxQu@I2xa0-5Rv1j3{CmC#gEauq{usaj literal 0 HcmV?d00001 diff --git a/EarlyBlue/chatzilla/output-dark.css b/EarlyBlue/chatzilla/output-dark.css index ef9523ef..65b4a86e 100644 --- a/EarlyBlue/chatzilla/output-dark.css +++ b/EarlyBlue/chatzilla/output-dark.css @@ -43,6 +43,34 @@ a.chatzilla-link:visited { color: #666699; } +.header-outer { + background-color: black; +} + +.header { + color: lightslategrey; + background-color: #333333; +/* -moz-opacity: 0.9; causes memory leak? */ + -moz-border-radius: 7px; +} + +.value { + color: silver; +} + +#splash { + color: #444444; +} + +#usr-descnodes, +#ch-topicnodes { + color: white; +} + +[condition] { + font-weight: bold; +} + .msg-data[msg-type="JOIN"] a.chatzilla-link, .msg-data[msg-type="PART"] a.chatzilla-link { color: lightcyan; diff --git a/EarlyBlue/chatzilla/output-default.css b/EarlyBlue/chatzilla/output-default.css index 85a0a689..855a8190 100644 --- a/EarlyBlue/chatzilla/output-default.css +++ b/EarlyBlue/chatzilla/output-default.css @@ -41,28 +41,8 @@ a.chatzilla-link:visited { color: #666699; } -.chatzilla-highlight[name="Bold"] { - font-weight: bold; -} - -.chatzilla-highlight[name="Italic"] { - font-style: italic; -} - -.chatzilla-highlight[name="Large"] { - font-size: 12pt; -} - -.chatzilla-highlight[name="Small"] { - font-size: 8pt; -} - -.chatzilla-highlight[name="SmallCap"] { - font-variant: small-caps; -} - -.msg-data[msg-type="ACTION"] { - font-style: italic; +.header-outer { + background-color: white; } .msg-type[msg-type="JOIN"], diff --git a/EarlyBlue/chatzilla/output-light.css b/EarlyBlue/chatzilla/output-light.css index 7e0d4de5..9ec1e65d 100644 --- a/EarlyBlue/chatzilla/output-light.css +++ b/EarlyBlue/chatzilla/output-light.css @@ -18,27 +18,64 @@ * * Contributor(s): * Robert Ginda, rginda@ndcico.com, original author - * + * * Styles for output window * */ -/* +/* * a light background/dark text version of the output window. - * see output-base.css for details. + * see output-base.css for details. */ @import url(chrome://chatzilla/content/output-base.css); body.chatzilla-body { /* The topmost container in the ChatZilla */ background: white; /* output window. */ - color: #222222; + color: #222222; } a.chatzilla-link { color: #777499 /*#ea3838*/; } +.header-outer { + background-color: #d1d0ea; +} + +.header { + color: darkslategrey; + background-color: #EEEEEE; +/* -moz-opacity: 0.9;*/ + border: 1px #777499 solid; + -moz-border-radius: 7px; +} + +#splash { + color: #DDDDDD; +} + +#usr-descnodes, +#ch-topicnodes { + color: black; +} + +[condition] { + font-weight: bold; +} + +[condition="red"] { + color: red; +} + +[condition="yellow"] { + color: orange; +} + +[condition="green"] { + color: #2ec908; +} + .msg-data[msg-type="QUIT"] a.chatzilla-link { color: #d1ecf9; } -- 2.35.3 From 5273e2880cca5f54674a20d582dd34e0b926a5ce Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 22 Jan 2004 22:38:51 +0000 Subject: [PATCH 04/16] some fixes to chatzilla that went in during work on LCARStrek --- EarlyBlue/chatzilla/chatzilla.css | 16 ++++++++-------- EarlyBlue/chatzilla/images/no-graphic.gif | Bin 67 -> 67 bytes 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/EarlyBlue/chatzilla/chatzilla.css b/EarlyBlue/chatzilla/chatzilla.css index 93abb5db..ddf0be99 100644 --- a/EarlyBlue/chatzilla/chatzilla.css +++ b/EarlyBlue/chatzilla/chatzilla.css @@ -183,15 +183,15 @@ treechildren::-moz-tree-image(op-true) { } .colorGrid { - width: 24px; - height: 16px; - border: 1px solid black; - -moz-box-align: center; - -moz-box-pack: center; + width: 24px; + height: 16px; + border: 1px solid black; + -moz-box-align: center; + -moz-box-pack: center; } #colorTooltip { - padding: 0px; - -moz-box-align: center; - -moz-box-pack: center; + padding: 0px; + -moz-box-align: center; + -moz-box-pack: center; } diff --git a/EarlyBlue/chatzilla/images/no-graphic.gif b/EarlyBlue/chatzilla/images/no-graphic.gif index aa02b846fa3196c536c11e66ebe74c13172ce3fd..9854148718f1677c8a691a7a47decd1ed0927446 100644 GIT binary patch delta 22 dcmZ>E7I61;v#?C$Vc=nCU}Tsx=l?_jV*olQ1>*n! delta 22 dcmZ>E7I61;v#?C$Vc=nCU|^Uz^UOp6V*oia1*rf4 -- 2.35.3 From a8dfd76fcd1e6fb6fb5b31418931a033c6ec4e1c Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 22 Jan 2004 22:40:33 +0000 Subject: [PATCH 05/16] make LCARStrek work with Mozilla 1.6 chatzilla; provide really good dark and default motif --- LCARStrek/chatzilla/chatzilla.css | 72 ++++++-- LCARStrek/chatzilla/images/halfop-graphic.gif | Bin 0 -> 78 bytes LCARStrek/chatzilla/images/halfop-symbol.gif | Bin 0 -> 64 bytes LCARStrek/chatzilla/images/input-send.gif | Bin 0 -> 72 bytes LCARStrek/chatzilla/images/is-op.gif | Bin 78 -> 0 bytes LCARStrek/chatzilla/images/is-voice.gif | Bin 78 -> 0 bytes LCARStrek/chatzilla/images/isnt-op.gif | Bin 67 -> 0 bytes LCARStrek/chatzilla/images/isnt-voice.gif | Bin 67 -> 0 bytes .../chatzilla/images/multiline-contract.gif | Bin 0 -> 68 bytes .../chatzilla/images/multiline-expand.gif | Bin 0 -> 68 bytes LCARStrek/chatzilla/images/no-graphic.gif | Bin 0 -> 67 bytes LCARStrek/chatzilla/images/no-symbol.gif | Bin 0 -> 76 bytes LCARStrek/chatzilla/images/op-graphic.gif | Bin 0 -> 78 bytes LCARStrek/chatzilla/images/op-symbol.gif | Bin 0 -> 67 bytes LCARStrek/chatzilla/images/voice-graphic.gif | Bin 0 -> 78 bytes LCARStrek/chatzilla/images/voice-symbol.gif | Bin 0 -> 58 bytes LCARStrek/chatzilla/output-dark.css | 145 ++++++++------- LCARStrek/chatzilla/output-default.css | 172 +++++++++++++++--- LCARStrek/chatzilla/output-light.css | 37 ++++ 19 files changed, 322 insertions(+), 104 deletions(-) create mode 100644 LCARStrek/chatzilla/images/halfop-graphic.gif create mode 100644 LCARStrek/chatzilla/images/halfop-symbol.gif create mode 100644 LCARStrek/chatzilla/images/input-send.gif delete mode 100644 LCARStrek/chatzilla/images/is-op.gif delete mode 100644 LCARStrek/chatzilla/images/is-voice.gif delete mode 100644 LCARStrek/chatzilla/images/isnt-op.gif delete mode 100644 LCARStrek/chatzilla/images/isnt-voice.gif create mode 100644 LCARStrek/chatzilla/images/multiline-contract.gif create mode 100644 LCARStrek/chatzilla/images/multiline-expand.gif create mode 100644 LCARStrek/chatzilla/images/no-graphic.gif create mode 100644 LCARStrek/chatzilla/images/no-symbol.gif create mode 100644 LCARStrek/chatzilla/images/op-graphic.gif create mode 100644 LCARStrek/chatzilla/images/op-symbol.gif create mode 100644 LCARStrek/chatzilla/images/voice-graphic.gif create mode 100644 LCARStrek/chatzilla/images/voice-symbol.gif diff --git a/LCARStrek/chatzilla/chatzilla.css b/LCARStrek/chatzilla/chatzilla.css index 0ea174cd..15bf9381 100644 --- a/LCARStrek/chatzilla/chatzilla.css +++ b/LCARStrek/chatzilla/chatzilla.css @@ -68,7 +68,7 @@ window { } .view-button { - color: #FF9F00; + /* do NOT set color, at least not without background. :) */ } .view-button[state="current"] { @@ -104,6 +104,10 @@ window { padding-right: 10px; } +#user-list { + margin: 0px; +} + #server-nick { padding-top: 5px; } @@ -132,20 +136,66 @@ window { border: 1px solid #9C9CFF; } -/* op image column */ -treechildren::-moz-tree-image(usercol-op, state-true) { - list-style-image: url(chrome://chatzilla/skin/images/is-op.gif) +treecol { + border: none; +} + +treechildren::-moz-tree-cell-text { + padding-top: 1px; +} + +/* The userlist can be in one of two state. In "symbol", the user's + * channel mode is shown as a @ or + image, while in "graphic" mode, the + * image is one of the LED images. + */ + +/* no mode */ +treechildren::-moz-tree-image { + list-style-image: url(chrome://chatzilla/skin/images/no-symbol.gif); + margin-right: 3px; +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image { + list-style-image: url(chrome://chatzilla/skin/images/no-graphic.gif); +} + +/* voice */ +treechildren::-moz-tree-image(voice-true) { + list-style-image: url(chrome://chatzilla/skin/images/voice-symbol.gif); +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image(voice-true) { + list-style-image: url(chrome://chatzilla/skin/images/voice-graphic.gif); +} + +/* half-chanop */ +treechildren::-moz-tree-image(halfop-true) { + list-style-image: url(chrome://chatzilla/skin/images/halfop-symbol.gif); +} + +#user-list[mode="graphic"] treechildren::-moz-tree-image(halfop-true) { + list-style-image: url(chrome://chatzilla/skin/images/halfop-graphic.gif); +} + +/* chanop */ +treechildren::-moz-tree-image(op-true) { + list-style-image: url(chrome://chatzilla/skin/images/op-symbol.gif); } -treechildren::-moz-tree-image(usercol-op, state-false) { - list-style-image: url(chrome://chatzilla/skin/images/isnt-op.gif) +#user-list[mode="graphic"] treechildren::-moz-tree-image(op-true) { + list-style-image: url(chrome://chatzilla/skin/images/op-graphic.gif); } -/* voice image column */ -treechildren::-moz-tree-image(usercol-voice, state-true) { - list-style-image: url(chrome://chatzilla/skin/images/is-voice.gif) +.colorGrid { + width: 24px; + height: 16px; + border: 1px solid 9C9CFF; + -moz-box-align: center; + -moz-box-pack: center; } -treechildren::-moz-tree-image(usercol-voice, state-false) { - list-style-image: url(chrome://chatzilla/skin/images/isnt-voice.gif) +#colorTooltip { + padding: 0px; + -moz-box-align: center; + -moz-box-pack: center; } diff --git a/LCARStrek/chatzilla/images/halfop-graphic.gif b/LCARStrek/chatzilla/images/halfop-graphic.gif new file mode 100644 index 0000000000000000000000000000000000000000..8ac3b82e53fe4f2c567579b6efc53ffc7d6ffd98 GIT binary patch literal 78 zcmZ?wbhEHb0P<1_!kK=CIFBLf2ygAM}_faDpNuP!5RQRXByN1 literal 0 HcmV?d00001 diff --git a/LCARStrek/chatzilla/images/is-op.gif b/LCARStrek/chatzilla/images/is-op.gif deleted file mode 100644 index fb2c946c746fb2ffbb6903f098dcf9f9b00a8335..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 78 zcmZ?wbhEHb1N|Hl8pK=CIFBLf2ygAM}_faDpN+EaP^R)Z TgT=YJ3au3p-&?tY85pbqeb*Bc diff --git a/LCARStrek/chatzilla/images/isnt-voice.gif b/LCARStrek/chatzilla/images/isnt-voice.gif deleted file mode 100644 index ca2f3e094d9132e8e16fab75f2d7a6a215cc3432..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 67 zcmZ?wbhEHb7ZY8@+sH2|8r6=whd literal 0 HcmV?d00001 diff --git a/LCARStrek/chatzilla/images/no-graphic.gif b/LCARStrek/chatzilla/images/no-graphic.gif new file mode 100644 index 0000000000000000000000000000000000000000..aa02b846fa3196c536c11e66ebe74c13172ce3fd GIT binary patch literal 67 zcmZ?wbhEHb+EaP^R)Z TgT=YJ3au3p-&?tY85pbqW5W`b literal 0 HcmV?d00001 diff --git a/LCARStrek/chatzilla/images/no-symbol.gif b/LCARStrek/chatzilla/images/no-symbol.gif new file mode 100644 index 0000000000000000000000000000000000000000..4cde0402c8a4bc948493f9faa70658495423adbd GIT binary patch literal 76 zcmZ?wbhEHb0PAOr)&pDc_F3``6<3_t*qXJC?_!pd1LDIe5qA{FrP aP~>O1+PTb8N?R2Yx;lg|?{i~hum%A17#UUo literal 0 HcmV?d00001 diff --git a/LCARStrek/chatzilla/images/op-symbol.gif b/LCARStrek/chatzilla/images/op-symbol.gif new file mode 100644 index 0000000000000000000000000000000000000000..0015847e9c9c56e1b013349f10582dc13e1c1676 GIT binary patch literal 67 zcmZ?wbhEHb Date: Thu, 8 Jul 2004 20:53:32 +0000 Subject: [PATCH 06/16] update with classic theme development, keep about:plugins compatible for 1.7 release --- .../communicator/bookmarks/bookmarks.css | 37 ++-- .../bookmarks/bookmarksWindow.css | 19 +- .../communicator/icons/smileys/cool_n.gif | Bin 0 -> 434 bytes .../communicator/icons/smileys/cry_n.gif | Bin 0 -> 170 bytes .../icons/smileys/embarrassed_n.gif | Bin 0 -> 169 bytes .../communicator/icons/smileys/foot_n.gif | Bin 0 -> 182 bytes .../communicator/icons/smileys/frown_n.gif | Bin 0 -> 189 bytes .../communicator/icons/smileys/innocent_n.gif | Bin 0 -> 146 bytes .../communicator/icons/smileys/kiss_n.gif | Bin 0 -> 733 bytes .../communicator/icons/smileys/laughing_n.gif | Bin 0 -> 147 bytes .../communicator/icons/smileys/money_n.gif | Bin 0 -> 131 bytes .../communicator/icons/smileys/sealed_n.gif | Bin 0 -> 116 bytes .../communicator/icons/smileys/smile_n.gif | Bin 0 -> 144 bytes .../communicator/icons/smileys/surprise_n.gif | Bin 0 -> 151 bytes .../communicator/icons/smileys/tongue_n.gif | Bin 0 -> 145 bytes .../icons/smileys/undecided_n.gif | Bin 0 -> 179 bytes .../communicator/icons/smileys/wink_n.gif | Bin 0 -> 139 bytes .../communicator/icons/smileys/yell_n.gif | Bin 0 -> 135 bytes EarlyBlue/communicator/prefpanels.css | 12 +- EarlyBlue/communicator/profile/profile.css | 9 +- .../communicator/sidebar/sidebarBindings.xml | 2 +- .../communicator/sidebar/sidebarListView.css | 9 +- EarlyBlue/communicator/smileys.css | 168 ++++++++++++++++++ EarlyBlue/editor/EdImageMapPage.css | 8 +- EarlyBlue/editor/editorFormatToolbar.css | 94 +++++----- EarlyBlue/global/browser.css | 7 +- EarlyBlue/global/checkbox.css | 29 +-- EarlyBlue/global/global.css | 22 ++- EarlyBlue/global/globalBindings.xml | 20 +++ EarlyBlue/global/menu.css | 16 +- EarlyBlue/global/menulist.css | 10 +- EarlyBlue/global/plugins.css | 135 ++++++++++++++ EarlyBlue/global/popup.css | 2 +- EarlyBlue/global/progressmeter.css | 3 +- EarlyBlue/global/radio.css | 35 ++-- EarlyBlue/global/scrollbars.css | 10 +- EarlyBlue/global/tree.css | 41 ++++- EarlyBlue/global/tree/checkbox-checked.gif | Bin 0 -> 67 bytes EarlyBlue/global/tree/checkbox.gif | Bin 0 -> 59 bytes .../messenger/addressbook/addressbook.css | 21 +-- EarlyBlue/messenger/folderPane.css | 8 +- .../icons/server-remote-lock-new.gif | Bin 0 -> 136 bytes EarlyBlue/messenger/messageBody.css | 103 +---------- EarlyBlue/messenger/messageHeader.css | 10 +- .../messenger/smime/msgReadSecurityInfo.css | 9 - EarlyBlue/navigator/navigator.css | 24 +-- 46 files changed, 572 insertions(+), 291 deletions(-) create mode 100644 EarlyBlue/communicator/icons/smileys/cool_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/cry_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/embarrassed_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/foot_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/frown_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/innocent_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/kiss_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/laughing_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/money_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/sealed_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/smile_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/surprise_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/tongue_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/undecided_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/wink_n.gif create mode 100644 EarlyBlue/communicator/icons/smileys/yell_n.gif create mode 100644 EarlyBlue/communicator/smileys.css create mode 100644 EarlyBlue/global/plugins.css create mode 100644 EarlyBlue/global/tree/checkbox-checked.gif create mode 100644 EarlyBlue/global/tree/checkbox.gif create mode 100644 EarlyBlue/messenger/icons/server-remote-lock-new.gif diff --git a/EarlyBlue/communicator/bookmarks/bookmarks.css b/EarlyBlue/communicator/bookmarks/bookmarks.css index 605d951a..adf45615 100644 --- a/EarlyBlue/communicator/bookmarks/bookmarks.css +++ b/EarlyBlue/communicator/bookmarks/bookmarks.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -21,10 +21,11 @@ * Contributor(s): * Ben Goodger * Josh Soref + * Dan Cannon * Robert Kaiser * * 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 + * 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 @@ -39,23 +40,26 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -/** - * Style rules for generic bookmarks items. - */ - +/** + * Style rules for generic bookmarks items. + */ + treechildren::-moz-tree-image(Name) { padding-right: 2px; } - -.bookmark-item, treechildren::-moz-tree-image(Name) { + +.bookmark-item, +treechildren::-moz-tree-image(Name) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); } -.bookmark-item[container="true"], treechildren::-moz-tree-image(Name, container) { +.bookmark-item[container="true"], +treechildren::-moz-tree-image(Name, container) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif"); } -.bookmark-item[container="true"][open="true"], treechildren::-moz-tree-image(Name, open) { +.bookmark-item[open="true"], +treechildren::-moz-tree-image(Name, open) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-open.gif"); } @@ -63,7 +67,8 @@ treechildren::-moz-tree-image(Name) { list-style-image: url("chrome://global/skin/icons/loading.gif") !important; } -.bookmark-item[status="new"] { +.bookmark-item[status="new"], +treechildren::-moz-tree-image(Name, new) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item-updated.gif") !important; } @@ -71,20 +76,14 @@ treechildren::-moz-tree-image(Name) { height: 16px; } -.bookmark-item > .menu-iconic-left > .menu-iconic-icon { - max-width: 16px; - max-height: 16px; -} - toolbarbutton.bookmark-item > .toolbarbutton-menu-dropmarker { display: none; } -.tree-cell-icon, .tree-cell-primary-icon { +.bookmark-item > .toolbarbutton-box > .toolbarbutton-icon { list-style-image: inherit; height: 16px; - max-width: 16px; - max-height: 16px; + width: 16px; } treechildren::-moz-tree-twisty(group, hidetwisty) { diff --git a/EarlyBlue/communicator/bookmarks/bookmarksWindow.css b/EarlyBlue/communicator/bookmarks/bookmarksWindow.css index 22e83727..68d13c0c 100644 --- a/EarlyBlue/communicator/bookmarks/bookmarksWindow.css +++ b/EarlyBlue/communicator/bookmarks/bookmarksWindow.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -41,25 +41,10 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -/** - * XXX - disable print plus. This needs to go into ns/!!! - */ -#navprintplus { - display: none !important; -} - #status-bar { height: 1em; } -#notification-icon { - list-style-image: url("chrome://communicator/skin/bookmarks/notification.gif"); -} - -#schedule-icon { - list-style-image: url("chrome://communicator/skin/bookmarks/schedule.gif"); -} - #panel-bar, #search-bar { border-top: 1px outset #CCD0DD; diff --git a/EarlyBlue/communicator/icons/smileys/cool_n.gif b/EarlyBlue/communicator/icons/smileys/cool_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..e62ae6566a575544bd6e971862fdfdc09b2f28ea GIT binary patch literal 434 zcmZ8cze^lZ5S};l-rIBcJULHYA)aK_$RVB*-1YVd2|+?aikNtf*m;3S?6g%#5v**L zKpKE7|hnHMjghvjMxa&QPB7)m5! z$dLqa$%KVcGE0CZS&A6vC37Pj z^F&sL!5jYOCy?LvzRcC0zDa%j{`PBErSLgj@E=dye^uQ$*xwypOAq)%{<{aOTZdCS z6)&^w^lm)ap4{4;pB-B)bQfpJuR*k+2;F8;BD9^Ek{4zJhuWM{dwYQ7yZKyOzmI|4 zL6o;xkYQo#piRYWmNLXEOApf>uHP?hujr1f=X>w<42-6PTlDO(@96mC^eFt%S35hd vo&P@nb9oV#uY!O7gR8NNpY_H`?b7KSo?iLzi+4YJKVJQ`@VCouLU?oy;gx?G literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/cry_n.gif b/EarlyBlue/communicator/icons/smileys/cry_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..4ecbcb6b86f6a5dd073b1a9e847bd0a37d270a84 GIT binary patch literal 170 zcmZ?wbhEHb6lM@+*v!CSXka+=%>V!Y8UFoa`1Xw+| zz`)6%1Cjxm!N3x3aI$lit8uW(F7c^qh4GwOGK|w+T9z@Ntcq|d674OY!K1|Judw{H zM8i^s1py{An{4K97Pk4b%u_?q`>L0|nAUl>;!|0d;&-_{>od-rc0!E*tb4*Y6($C2 E0H-20IsgCw literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/embarrassed_n.gif b/EarlyBlue/communicator/icons/smileys/embarrassed_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..719ecd7ea828cc577578900f21de4dac1268a244 GIT binary patch literal 169 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYn~I#{bVS{GSQr{$~IQ{#X3T!pOkD&Y%P20#yn# zFfiv;?7EhxZ6w^Vb)l#0`r`p9HA_V0?wZbuJ65@xYw^^ZE6gRNS?zz>-f_La&BW?- zx*=WX3)`W_lAXprxeS_(3}1P+1vw~xxLc&3y5V$Goy7s~b0sg=Y+ky2_lkvM>+G)88^?8(@!%uYB>y?xRtXvznX=z!Ewvq$EBWg+H2GWvNSKu(zvSV{`czCF4dI{5^YQg3@#i# zd-_f`2nfw^4|pe>#l$7L^rh*aibWdh%4Ou@b)HQxeDgWYw#7g3U+3$JCpJba<=1=E W=IKPG)a$6mg(^#?D@h45SOWl+vOfO+ literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/innocent_n.gif b/EarlyBlue/communicator/icons/smileys/innocent_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..e94bf35131f9f280386ea7ca88cd77c03003e2cd GIT binary patch literal 146 zcmZ?wbhEHb6lM@+Sj50!XkhsNKg03)4F7=?1C#_Z6o0ZXGBB_*=m6P3mBI`R%;6DH zm;NQ`s%wYlPCR?Er)Lvuie!$2nn0Sj&`hlzPeV5_F4>=CxzFPM+2fX?zWW&x45HK; r_c4A};dSzENVxWONn!gv{U1kMvpQrqAMyGel9%(K`mSTB5Q8-Uvzs-~ literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/kiss_n.gif b/EarlyBlue/communicator/icons/smileys/kiss_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..0c7fdad171d1e55b981ae637c3bce036f786ef6a GIT binary patch literal 733 zcmb_ZO=}ZT6us}=H#2EWTWx9jVS;I@5o-;Zq=uxmqNVK^9kHks6bhYmg4mS^ZiRlYqE_4qf+8+l)Qt$Wg5VF(Slqa>bd$`y_niI*@8ZBc+KA}WljLP&1|nOYN^GUQSK1t8!Ghs#<`f-9jai6cl&QdiQdpbn=s=}n?5 z(2psAuAG%3aC@3XZPJgj57qI9G&F zg{yI{xxCH`-J4R5CcUUcVRSIv?Oee>x_2gVD69jl6ECBO#6gr&A|j=f5RU_|_3%Gd zXO(%n1?bt)-1!M;a;8u$HPm->1>1t9g;L|5G zOg7b>&h;CwhBHu-)lI^#KeB5d~9qierLCqKQ|*A&Tov?}@G(?tepJeZ|Ksmzn(}=7GEYWMK=>$_E?}b{N#9WJ7UiI@=aI$4Ep~8tbyUo literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/laughing_n.gif b/EarlyBlue/communicator/icons/smileys/laughing_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..e404456bd2199928e0ac9ab9930dcd11f6f45fb7 GIT binary patch literal 147 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYrPYK+^a>kOL9{k%~WA7#SGY7<7Paph{r|2Ih#2 zU036@HwiUtUFhk${&+x0%@R?myTvOd**Tg`dt7;Vm>5b^XZG%mJ1nB|s-Z9FQ-+d& t9G|+-%QaC;mt85f&I;TfA-jALGjsG~of6fDKmC-4nrMC%O2cL#M2O}daA ZWIAb^guSrF?~6~;W_e5&@nm4I1_0KxE9n3L literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/sealed_n.gif b/EarlyBlue/communicator/icons/smileys/sealed_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..29931c3a45a1542470aa888cd95e2e6a73c1fb46 GIT binary patch literal 116 zcmZ?wbhEHb6lM@+n8?6jXkhsNKLZf_|Nmd{CkrD312cmTh!2uyU~-+Kzp|)TXc5mz zNekmri-te0XH+#)gC;5MD)VvQXsFXIDUOLlG*e0$9K$D-cH RXN_L0-Ozt@MIZx%H30jKDfj>Y literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/smile_n.gif b/EarlyBlue/communicator/icons/smileys/smile_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..6fc401425cda9a871b3b0befb4dc693c05ac71bb GIT binary patch literal 144 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYn~I4F8Q8fZ#un4+e@qSr{1@SQ&IcJdj!j=Fo^; zSNyb%gc`Ok^mJW+Jiw)9iKy7zpS=p@mieC-P1U@uGvO&iPxbceSx2=eHn}F8Q88d* pS>v|WoHf=+9`j6v}y3nK#qD}xS*3sTF#922qY zlAgAa<0@5OEw2M_MMVmo9)vnL7-b0X$QkTde&S?i&Y{GEr3S(7N4ftRY+3l~(hrl~ wbC1)x=31>d&wZdU$;*&`wSHA<-ie#{Zf?pgF`SefDf_?4bg{eJBnAd+08cYHXaE2J literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/tongue_n.gif b/EarlyBlue/communicator/icons/smileys/tongue_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..d657df0ce43d50d264afc4017f46e34d00d56817 GIT binary patch literal 145 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYrPY4F4HG;6IQL28usf7#SE?8FWBAkXi=ju!vn( z{IrdP8n!Og(5+&3Jb8O8RX@%gJ?Esc||eE0ENeR$Scm))KW4AuZsAY#`Q zKW!tShOG-dUDqEEaH&}$Di-@Qb&hJ!s?M+@1_#vmQVQ-q*>&fsxUiV#k;UqrI;I)t jR91gaWO7=`?zq9~p`3^3sw1~-b}#4knjNOXz+epkepoTD literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/icons/smileys/yell_n.gif b/EarlyBlue/communicator/icons/smileys/yell_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..de13db16e5b1df024c82f78d7e503328198bd6a7 GIT binary patch literal 135 zcmZ?wbhEHb6lM@+Sj52a|3Ab3REBc~42BFK@E^zr1I3>#j0_B{3_2hlNG$`iPsFY( ze%eM%t5|)ts;sB=UQdk{tx^vuxN&onz?)g`Y_?z5?aO($!1h-2@#-5*$L6a(Q|4ef fb^et23bw4CIbV0NJY{2^ktVvNSKZB*iNP8G;M6ZS literal 0 HcmV?d00001 diff --git a/EarlyBlue/communicator/prefpanels.css b/EarlyBlue/communicator/prefpanels.css index d5384bf7..4b864055 100644 --- a/EarlyBlue/communicator/prefpanels.css +++ b/EarlyBlue/communicator/prefpanels.css @@ -44,7 +44,7 @@ /* ::::: Themes ::::: */ #skinsTree { height: 80px; -} +} *|*.themesLink { margin-left: 5px; @@ -59,12 +59,12 @@ #previewImageContainer { padding: 1px; - height: 92px; + height: 92px; /* background-color: #000000; */ } #previewImage { - max-width: 355px; + max-width: 355px; min-width: 355px; max-height: 85px; min-height: 85px; @@ -86,9 +86,3 @@ #mouseWheelMode { width: 9em; } - -/* ::::: Smart Browsing ::::: */ - -#disabledDomains { - max-height: 13em; -} \ No newline at end of file diff --git a/EarlyBlue/communicator/profile/profile.css b/EarlyBlue/communicator/profile/profile.css index 288d2ddf..b9e28309 100644 --- a/EarlyBlue/communicator/profile/profile.css +++ b/EarlyBlue/communicator/profile/profile.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -45,11 +45,12 @@ window.dialog { padding: 0; } -#profiles > listitem { +treechildren::-moz-tree-image { + margin-right: 2px; list-style-image: url("chrome://communicator/skin/profile/profileicon-large.gif"); } -#profiles > listitem[rowMigrate="no"] { +treechildren::-moz-tree-image(rowMigrate-no) { list-style-image: url("chrome://communicator/skin/profile/migrate.gif"); } diff --git a/EarlyBlue/communicator/sidebar/sidebarBindings.xml b/EarlyBlue/communicator/sidebar/sidebarBindings.xml index 04500f01..920cab85 100644 --- a/EarlyBlue/communicator/sidebar/sidebarBindings.xml +++ b/EarlyBlue/communicator/sidebar/sidebarBindings.xml @@ -8,7 +8,7 @@ - + diff --git a/EarlyBlue/communicator/sidebar/sidebarListView.css b/EarlyBlue/communicator/sidebar/sidebarListView.css index f7b7e8b0..5d8193c4 100644 --- a/EarlyBlue/communicator/sidebar/sidebarListView.css +++ b/EarlyBlue/communicator/sidebar/sidebarListView.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -23,7 +23,7 @@ * Robert Kaiser * * 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 + * 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 @@ -38,6 +38,7 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -treehildren { - cursor: pointer; +treechildren::-moz-tree-image, +treechildren::-moz-tree-cell-text { + cursor: pointer; } diff --git a/EarlyBlue/communicator/smileys.css b/EarlyBlue/communicator/smileys.css new file mode 100644 index 00000000..9b96042b --- /dev/null +++ b/EarlyBlue/communicator/smileys.css @@ -0,0 +1,168 @@ +/* ***** 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 smiley style rules. + * + * The Initial Developer of the Original Code is + * Mozilla. + * Portions created by the Initial Developer are Copyright (C) 2004 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either of 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 ***** */ + +/* ==== smileys.css ==================================================== + == Style rules to bind smiley image types generated by editor and the mozTxtToHTMLConv + == into skinnable images. + ========================================================================== */ + +/* ::::: we also represent smilies inside of spans ::::: */ + +span.moz-smiley-s1, +span.moz-smiley-s2, +span.moz-smiley-s3, +span.moz-smiley-s4, +span.moz-smiley-s5, +span.moz-smiley-s6, +span.moz-smiley-s7, +span.moz-smiley-s8, +span.moz-smiley-s9, +span.moz-smiley-s10, +span.moz-smiley-s11, +span.moz-smiley-s12, +span.moz-smiley-s13, +span.moz-smiley-s14, +span.moz-smiley-s15, +span.moz-smiley-s16 +{ + font-size: 17px; + padding-left: 20px; + margin-left: 2px; + margin-top: 2px; + background-repeat: no-repeat; + -moz-user-select: all; + background-position: center center; +} + +span.moz-smiley-s1 > span, +span.moz-smiley-s2 > span, +span.moz-smiley-s3 > span, +span.moz-smiley-s4 > span, +span.moz-smiley-s5 > span, +span.moz-smiley-s6 > span, +span.moz-smiley-s7 > span, +span.moz-smiley-s8 > span, +span.moz-smiley-s9 > span, +span.moz-smiley-s10 > span, +span.moz-smiley-s11 > span, +span.moz-smiley-s12 > span, +span.moz-smiley-s13 > span, +span.moz-smiley-s14 > span, +span.moz-smiley-s15 > span, +span.moz-smiley-s16 > span +{ + display: none; +} + +/* smile */ +span.moz-smiley-s1{ + background-image: url("chrome://communicator/skin/icons/smileys/smile_n.gif"); +} + +/* frown */ +span.moz-smiley-s2 { + background-image: url("chrome://communicator/skin/icons/smileys/frown_n.gif"); +} + +/* wink */ +span.moz-smiley-s3 { + background-image: url("chrome://communicator/skin/icons/smileys/wink_n.gif"); +} + +/* tongue */ +span.moz-smiley-s4 { + background-image: url("chrome://communicator/skin/icons/smileys/tongue_n.gif"); +} + +/* laughing */ +span.moz-smiley-s5 { + background-image: url("chrome://communicator/skin/icons/smileys/laughing_n.gif"); +} + +/* embarassed */ +span.moz-smiley-s6 { + background-image: url("chrome://communicator/skin/icons/smileys/embarrassed_n.gif"); +} + +/* undecided */ +span.moz-smiley-s7 { + background-image: url("chrome://communicator/skin/icons/smileys/undecided_n.gif"); +} + +/* suprise */ +span.moz-smiley-s8 { + background-image: url("chrome://communicator/skin/icons/smileys/surprise_n.gif"); +} + +/* kiss */ +span.moz-smiley-s9 { + background-image: url("chrome://communicator/skin/icons/smileys/kiss_n.gif"); +} + +/* yell */ +span.moz-smiley-s10 { + background-image: url("chrome://communicator/skin/icons/smileys/yell_n.gif"); +} + +/* cool */ +span.moz-smiley-s11 { + background-image: url("chrome://communicator/skin/icons/smileys/cool_n.gif"); +} + +/* money */ +span.moz-smiley-s12 { + background-image: url("chrome://communicator/skin/icons/smileys/money_n.gif"); +} + +/* foot */ +span.moz-smiley-s13 { + background-image: url("chrome://communicator/skin/icons/smileys/foot_n.gif"); +} + +/* innocent */ +span.moz-smiley-s14 { + background-image: url("chrome://communicator/skin/icons/smileys/innocent_n.gif"); +} + +/* cry */ +span.moz-smiley-s15 { + background-image: url("chrome://communicator/skin/icons/smileys/cry_n.gif"); +} + +/* sealed */ +span.moz-smiley-s16 { + background-image: url("chrome://communicator/skin/icons/smileys/sealed_n.gif"); +} diff --git a/EarlyBlue/editor/EdImageMapPage.css b/EarlyBlue/editor/EdImageMapPage.css index 7b466ac6..0c207993 100644 --- a/EarlyBlue/editor/EdImageMapPage.css +++ b/EarlyBlue/editor/EdImageMapPage.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -39,8 +39,8 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -.rect {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1 solid #0000ff;} -.cir {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1 solid #00ff00; -moz-border-radius: 50%;} +.rect {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1px solid #0000ff;} +.cir {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1px solid #00ff00; -moz-border-radius: 50%;} .poly {position:absolute; top:0px; left:0px; height:100%; width:100%;} .point {position:absolute; top:1px; left:1px; height:3px; width:3px; background-color:#ff0000;} .pointStart {position:absolute; top:1px; left:1px; height:3px; width:3px; background-color:#8000ff;} diff --git a/EarlyBlue/editor/editorFormatToolbar.css b/EarlyBlue/editor/editorFormatToolbar.css index 9261cd98..4ab2ca94 100644 --- a/EarlyBlue/editor/editorFormatToolbar.css +++ b/EarlyBlue/editor/editorFormatToolbar.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -42,50 +42,50 @@ #FormatToolbar > toolbarbutton { min-width: 18px; } - + #FormatToolbar > toolbarbutton > .toolbarbutton-text { display: none; } #DecreaseFontSizeButton { list-style-image: url("chrome://editor/skin/icons/dec-font-size.gif"); -} +} #DecreaseFontSizeButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/dec-font-size-disabled.gif") !important; -} +} #IncreaseFontSizeButton { list-style-image: url("chrome://editor/skin/icons/inc-font-size.gif"); -} +} #IncreaseFontSizeButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/inc-font-size-disabled.gif") !important; -} +} #boldButton { - list-style-image: url(chrome://editor/skin/icons/bold.gif); + list-style-image: url(chrome://editor/skin/icons/bold.gif); } #boldButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/bold-disabled.gif") !important; -} +} #italicButton { list-style-image: url("chrome://editor/skin/icons/italic.gif"); -} +} #italicButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/italic-disabled.gif") !important; -} +} #underlineButton { list-style-image: url("chrome://editor/skin/icons/underline.gif"); -} +} #underlineButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/underline-disabled.gif") !important; -} +} #ulButton { list-style-image:url("chrome://editor/skin/icons/bullets.gif"); @@ -93,7 +93,7 @@ #ulButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/bullets-disabled.gif") !important; -} +} #olButton { list-style-image: url("chrome://editor/skin/icons/numbers.gif"); @@ -101,47 +101,47 @@ #olButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/numbers-disabled.gif") !important; -} +} #outdentButton { list-style-image: url("chrome://editor/skin/icons/outdent.gif"); -} +} #outdentButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/outdent-disabled.gif") !important; -} +} #indentButton { list-style-image: url("chrome://editor/skin/icons/indent.gif"); -} +} #indentButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/indent-disabled.gif") !important; -} +} #align-left-button { list-style-image: url("chrome://editor/skin/icons/left.gif"); -} +} #align-left-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/left-disabled.gif") !important; -} +} #align-center-button { list-style-image: url("chrome://editor/skin/icons/center.gif"); -} +} #align-center-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/center-disabled.gif") !important; -} +} #align-right-button { list-style-image: url("chrome://editor/skin/icons/right.gif"); -} +} #align-right-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/right-disabled.gif") !important; -} +} #align-justify-button { list-style-image: url("chrome://editor/skin/icons/justify.gif"); @@ -149,7 +149,7 @@ #align-justify-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/justify-disabled.gif") !important; -} +} #AlignPopupButton { list-style-image: url("chrome://editor/skin/icons/align.gif"); @@ -168,7 +168,7 @@ } #smileButtonMenu { - list-style-image: url("chrome://editor/skin/icons/smile.gif"); + list-style-image: url("chrome://editor/skin/icons/smile.gif"); } #smileButtonMenu[disabled="true"] { @@ -181,15 +181,15 @@ #AlignLeftItem { list-style-image: url("chrome://editor/skin/icons/left.gif"); -} +} #AlignCenterItem { list-style-image: url("chrome://editor/skin/icons/center.gif"); -} +} #AlignRightItem { list-style-image: url("chrome://editor/skin/icons/right.gif"); -} +} #AlignJustifyItem { list-style-image: url("chrome://editor/skin/icons/justify.gif"); @@ -220,71 +220,71 @@ /* ..... smiley menu ..... */ .insert-smile > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/smile_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/smile_n.gif"); } .insert-tongue > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/tongue_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/tongue_n.gif"); } .insert-frown > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/frown_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/frown_n.gif"); } .insert-wink > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/wink_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/wink_n.gif"); } .insert-laughing > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/laughing_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/laughing_n.gif"); } .insert-embarrassed > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/embarrassed_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/embarrassed_n.gif"); } .insert-undecided > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/undecided_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/undecided_n.gif"); } .insert-surprise > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/surprise_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/surprise_n.gif"); } .insert-kiss > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/kiss_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/kiss_n.gif"); } .insert-yell > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/yell_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/yell_n.gif"); } .insert-cool > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/cool_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/cool_n.gif"); } .insert-undecided > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/undecided_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/undecided_n.gif"); } .insert-money > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/money_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/money_n.gif"); } .insert-foot > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/foot_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/foot_n.gif"); } .insert-innocent > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/innocent_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/innocent_n.gif"); } .insert-cry > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/cry_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/cry_n.gif"); } .insert-sealed > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/sealed_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/sealed_n.gif"); } /* ::::: fg/bg color picker ::::: */ diff --git a/EarlyBlue/global/browser.css b/EarlyBlue/global/browser.css index d417862b..ec2f181c 100644 --- a/EarlyBlue/global/browser.css +++ b/EarlyBlue/global/browser.css @@ -59,10 +59,13 @@ tabpanels { margin-right: 3px; width: 16px; height: 16px; - list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item16.gif"); } -tab[busy] > .tab-icon { +tab { + list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item16.gif"); +} + +tab[busy] { list-style-image: url("chrome://global/skin/icons/loading.gif"); } diff --git a/EarlyBlue/global/checkbox.css b/EarlyBlue/global/checkbox.css index b4196538..92f25063 100644 --- a/EarlyBlue/global/checkbox.css +++ b/EarlyBlue/global/checkbox.css @@ -42,18 +42,26 @@ /* default checkbox for dialogs */ /* outer frame */ checkbox { - -moz-box-align: center; margin: 1px 2px; - padding: 1px; + border-left: 1px transparent; + border-right: 1px transparent; +} + +.checkbox-spacer-box { + -moz-box-align: center; + border-right: 4px solid transparent; +} + +.checkbox-label-center-box { + -moz-box-align: center; } .checkbox-label-box { border: 1px solid transparent; - padding: 0px 1px; -moz-box-align: center; } -.checkbox-icon { +.checkbox-icon[src] { margin-right: 2px; } @@ -63,13 +71,13 @@ checkbox { /* ..... focused state ..... */ -checkbox:focus > .checkbox-label-box { +checkbox:focus > .checkbox-label-center-box > .checkbox-label-box { border: 1px dotted #9999CC; } /* ..... disabled state ..... */ -checkbox[disabled="true"] > .checkbox-check { +checkbox[disabled="true"] > .checkbox-spacer-box > .checkbox-check { background-color: -moz-Dialog; } @@ -80,23 +88,22 @@ checkbox[disabled="true"] { /* ::::: checkmark image ::::: */ .checkbox-check { - -moz-box-align: center; border: 1px inset #CCD0DD; width: 12px; height: 12px; background: transparent 50% 50% no-repeat; } - -checkbox:hover:active > .checkbox-check { + +checkbox:hover:active > .checkbox-spacer-box > .checkbox-check { background-color: transparent; } /* ..... checked state ..... */ -checkbox[checked="true"] > .checkbox-check { +checkbox[checked="true"] > .checkbox-spacer-box > .checkbox-check { background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); } -checkbox[checked="true"][disabled="true"] > .checkbox-check { +checkbox[checked="true"][disabled="true"] > .checkbox-spacer-box > .checkbox-check { background-image: url("chrome://global/skin/checkbox/cbox-check-disabled.gif") !important } diff --git a/EarlyBlue/global/global.css b/EarlyBlue/global/global.css index c6eed4f3..92f613f6 100644 --- a/EarlyBlue/global/global.css +++ b/EarlyBlue/global/global.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998-1999 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -48,8 +48,12 @@ /* ::::: XBL bindings ::::: */ +checkbox { + -moz-binding: url("chrome://global/content/bindings/checkbox.xml#checkbox-with-spacing"); +} + radio { - -moz-binding: url("chrome://global/skin/globalBindings.xml#radio"); + -moz-binding: url("chrome://global/skin/globalBindings.xml#radio-with-spacing"); } menulist > menupopup, @@ -66,7 +70,7 @@ menulist > menupopup, window, page, dialog, -wizard { +wizard { background-color: #CCD0DD; color: #000000; font: 11px helvetica,arial,tahoma,sans-serif; @@ -75,14 +79,14 @@ wizard { page { padding: 3px; } - + /* deprecated */ -window.dialog { +window.dialog { padding: 8px 10px 10px 8px; } -[wait-cursor] { - cursor: wait !important; +[wait-cursor] { + cursor: wait !important; } /* ::::: alert icons :::::*/ @@ -145,7 +149,7 @@ statusbarpanel { .statusbarpanel-iconic { padding: 0px; -} +} resizer[dir="bottomright"] { cursor: se-resize; diff --git a/EarlyBlue/global/globalBindings.xml b/EarlyBlue/global/globalBindings.xml index deccdb6e..7449d8a9 100644 --- a/EarlyBlue/global/globalBindings.xml +++ b/EarlyBlue/global/globalBindings.xml @@ -19,4 +19,24 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/EarlyBlue/global/menu.css b/EarlyBlue/global/menu.css index 8de484e2..1c878a21 100644 --- a/EarlyBlue/global/menu.css +++ b/EarlyBlue/global/menu.css @@ -43,7 +43,7 @@ /* ::::: menu/menuitem ::::: */ -menu, +menu, menuitem { -moz-box-align: center; color: #000000; @@ -52,7 +52,7 @@ menuitem { menuitem[default="true"] { font-weight: bold; -} +} menu[disabled="true"], menuitem[disabled="true"], @@ -63,7 +63,7 @@ menuitem[_moz-menuactive="true"][disabled="true"] { /* ..... internal content .... */ -.menu-text, +.menu-text, .menu-iconic-left, .menu-iconic-text { margin: 0px 2px 0px 0px !important; @@ -75,6 +75,12 @@ menuitem[_moz-menuactive="true"][disabled="true"] { font-weight: inherit; } +.menu-description { + font-style: italic; + color: #808080; + margin-left: 1ex !important; +} + .menu-accel, .menu-iconic-accel { margin: 0px 2px 0px 7px !important; @@ -210,13 +216,13 @@ menuitem[checked="true"][type="radio"][_moz-menuactive="true"] { /* ::::: menuseparator ::::: */ menuseparator { - border: 1px inset #CCD0DD; + border: 1px inset #CCD0DD; margin: 2px 0px 2px 0px; } menulist > menupopup > menuseparator, .menulist-menupopup > menuseparator { - border: 1px inset #CCD0DD; + border: 1px inset #CCD0DD; margin: 2px 0px 2px 0px; } diff --git a/EarlyBlue/global/menulist.css b/EarlyBlue/global/menulist.css index e3853a92..14c5aca7 100644 --- a/EarlyBlue/global/menulist.css +++ b/EarlyBlue/global/menulist.css @@ -68,6 +68,12 @@ menulist[open="true"]:focus > .menulist-label-box { margin: 1px 3px !important; } +.menulist-description { + font-style: italic; + color: #808080; + margin-left: 1ex !important; +} + /* ..... dropmarker ..... */ .menulist-dropmarker { @@ -112,7 +118,7 @@ menulist[disabled="true"] { .menulist-editable-box { background-color: #FFFFFF; - padding: 2px; + padding: 2px; } html|*.menulist-editable-input { @@ -138,7 +144,7 @@ html|*.menulist-editable-input { .menulist-compact > .menulist-label { margin: 0 3px !important; text-align: right; -} +} .menulist-compact > .menulist-dropmarker { margin-left: 2px; diff --git a/EarlyBlue/global/plugins.css b/EarlyBlue/global/plugins.css new file mode 100644 index 00000000..f69ba7e0 --- /dev/null +++ b/EarlyBlue/global/plugins.css @@ -0,0 +1,135 @@ +/* ***** 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 mozilla.org code. + * + * The Initial Developer of the Original Code is + * the Mozilla Organization. + * Portions created by the Initial Developer are Copyright (C) 1998-2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Robert Kaiser + * + * 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 ***** */ + +/* ===== plugins.css ===================================================== + == Styles used by the about:plugins dialog. + ======================================================================= */ + +body { + background-color: #FFFFFF; + color: #000000; + font: 12px helvetica,arial,tahoma,sans-serif; +} + +a:link, a:visited, a:active { + color: #336699; + text-decoration: underline; +} + +hr { + display: none; +} + +div#outside { + text-align: justify; + width: 90%; + margin-left: 5%; + margin-right: 5%; +} + +div#plugs { + text-align: center; + font-size: 24px; + font-weight: bold; +} + +div#noplugs { + font-size: 18px; + font-weight: bold; +} + +div#findmore { + margin-top: 2em; +} + +div.plugname { + margin-top: 2em; + margin-bottom: 1em; + font-size: 16px; + text-align: left; + font-weight: bold; +} + +dl { + margin: 0px 0px 3px 0px; +} + +span.label { + font-style: italic; +} + +table { + background-color: #CCD0DD; + color: #000000; +/* font: message-box; */ + text-align: left; + width: 100%; + border: 1px solid #9999CC; + border-spacing: 0px; +} + +th { + text-align: center; + background-color: #666699; + color: #CCD0DD; +} + +th + th, +td + td { + border-left: 1px dotted #9999CC; +} + +td { + text-align: left; + border-top: 1px dotted #9999CC; +} + +th, td { + padding: 3px; +} + +th.type, th.suff { + width: 20%; +} + +th.desc { + width: 50%; +} + +th.enabled { + width: 10%; +} \ No newline at end of file diff --git a/EarlyBlue/global/popup.css b/EarlyBlue/global/popup.css index 22f859b2..f6cd7f2c 100644 --- a/EarlyBlue/global/popup.css +++ b/EarlyBlue/global/popup.css @@ -55,7 +55,7 @@ tooltip { background-color : #FFFFCC; border : 1px outset #FFFFCC; color: #000000; - font: smaller; + font-size: smaller; padding: 2px; max-width: 40em; } diff --git a/EarlyBlue/global/progressmeter.css b/EarlyBlue/global/progressmeter.css index 6323a036..c3aa1ad7 100644 --- a/EarlyBlue/global/progressmeter.css +++ b/EarlyBlue/global/progressmeter.css @@ -55,7 +55,7 @@ progressmeter[mode="undetermined"] { background-image: url("chrome://global/skin/progressmeter/progressmeter-busy.gif"); background-color: #CCD0DD; } - + .progress-bar { min-width: 0px; background-color: #6699CC; @@ -72,4 +72,5 @@ progressmeter[mode="undetermined"] { border: 1px solid #CCD0DD; background-color: #666699; min-width: 100px; + height: 16px; } diff --git a/EarlyBlue/global/radio.css b/EarlyBlue/global/radio.css index d3552fdf..83d476b4 100644 --- a/EarlyBlue/global/radio.css +++ b/EarlyBlue/global/radio.css @@ -44,18 +44,28 @@ /* ::::: radio ::::: */ radio { - -moz-box-align: center; margin: 1px 2px; - padding: 1px; + border-left: 1px transparent; + border-right: 1px transparent; +} + +.radio-spacer-box { + -moz-box-align: center; + border-right: 4px solid transparent; + border-top: 1px; + border-bottom: 1px; +} + +.radio-label-center-box { + -moz-box-align: center; } .radio-label-box { border: 1px solid transparent; - padding: 0px 0px 1px 1px; -moz-box-align: center; } -.radio-icon { +.radio-icon[src] { margin-right: 2px; } @@ -65,21 +75,20 @@ radio { /* ..... focused state ..... */ -radio[focused="true"] > .radio-label-box { +radio[focused="true"] > .radio-label-center-box > .radio-label-box { border: 1px dotted #9999CC; } /* ..... disabled state ..... */ -radio[disabled="true"] { +radio[disabled="true"] > .radio-spacer-box > .radio-check-box1 { color: #999999; } - + /* ::::: checkmark image ::::: */ .radio-check-box1 { - margin: 1px 0px; border: 2px outset #CCD0DD; -moz-border-radius: 50%; width: 12px; @@ -93,22 +102,22 @@ radio[disabled="true"] { width: 4px; height: 4px; list-style-image: none; -} +} radio:hover:active > .radio-check-box1 { border: 2px inset #CCD0DD; } -radio[disabled="true"]:hover:active .radio-check-box1 { +radio[disabled="true"]:hover:active > .radio-spacer-box > .radio-check-box1 { border: 2px outset #CCD0DD; } /* ..... selected state ..... */ -radio[selected="true"] > .radio-check-box1 > .radio-check-box2 { +radio[selected="true"] > .radio-spacer-box > .radio-check-box1 > .radio-check-box2 { list-style-image: url("chrome://global/skin/radio/radio-check.gif"); } - -radio[selected="true"][disabled="true"] > .radio-check-box2 { + +radio[selected="true"][disabled="true"] > .radio-spacer-box > .radio-check-box1 > .radio-check-box2 { list-style-image: url("chrome://global/skin/radio/radio-check-disabled.gif") !important } diff --git a/EarlyBlue/global/scrollbars.css b/EarlyBlue/global/scrollbars.css index de252873..742c823b 100644 --- a/EarlyBlue/global/scrollbars.css +++ b/EarlyBlue/global/scrollbars.css @@ -101,11 +101,13 @@ scrollbarbutton { scrollbarbutton:hover:active { border-style: inset; padding: 2px 0px 0px 2px; -} +} /* ::::: square at the corner of two scrollbars ::::: */ scrollcorner { + -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar-base"); + cursor: default; background-color: #999999; } @@ -117,7 +119,7 @@ scrollbarbutton[type="increment"] { scrollbarbutton[type="increment"][disabled="true"] { - background-image: url("chrome://global/skin/scrollbar/button-right-disabled.gif") + background-image: url("chrome://global/skin/scrollbar/button-right-disabled.gif") } scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] { @@ -135,7 +137,7 @@ scrollbarbutton[type="decrement"] { } scrollbarbutton[type="decrement"][disabled="true"] { - background-image: url("chrome://global/skin/scrollbar/button-left-disabled.gif") + background-image: url("chrome://global/skin/scrollbar/button-left-disabled.gif") } scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] { @@ -159,7 +161,7 @@ scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"][disabled="true" background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar; } - html|div scrollbar[orient="vertical"] + html|div scrollbar[orient="vertical"] { -moz-appearance: scrollbartrack-vertical; } diff --git a/EarlyBlue/global/tree.css b/EarlyBlue/global/tree.css index 5fcb4de0..acaac4e2 100644 --- a/EarlyBlue/global/tree.css +++ b/EarlyBlue/global/tree.css @@ -20,7 +20,7 @@ * * Contributor(s): * Robert Kaiser - * Joe Hewitt (hewitt@netscape.com) + * Joe Hewitt (hewitt@netscape.com) * Dean Tessman (dean_tessman@hotmail.com) * * Alternatively, the contents of this file may be used under the terms of @@ -46,10 +46,10 @@ /* ::::: tree ::::: */ tree { - border-spacing: 0px; + border-spacing: 0px; border: 1px inset #CCD0DD; background-color: #FFFFFF; - color: #000000; + color: #000000; } /* ::::: tree focusring ::::: */ @@ -156,7 +156,9 @@ treechildren::-moz-tree-line(selected, focus) { /* ::::: tree separator ::::: */ treechildren::-moz-tree-separator { + margin-top: 1px; border: 1px outset #CCD0DD; + height: 2px; } /* ::::: drop feedback ::::: */ @@ -178,6 +180,16 @@ treechildren::-moz-tree-drop-feedback(selected) { background-color: #FFFFFF; } +/* ::::: tree checkbox ::::: */ + +treechildren::-moz-tree-checkbox { + list-style-image: url("chrome://global/skin/tree/checkbox.gif"); +} + +treechildren::-moz-tree-checkbox(checked) { + list-style-image: url("chrome://global/skin/tree/checkbox-checked.gif"); +} + /* ::::: tree progress meter ::::: */ treechildren::-moz-tree-progressmeter { @@ -198,7 +210,7 @@ treechildren::-moz-tree-cell-text(progressmeter) { /* ::::: tree columns ::::: */ -treecol { +treecol { -moz-box-align: center; -moz-box-pack: center; border: 1px outset #CCD0DD; @@ -207,7 +219,7 @@ treecol { padding: 1px 4px; } -treecolpicker { +treecolpicker { -moz-box-align: center; -moz-box-pack: center; border: 1px solid transparent; @@ -218,7 +230,7 @@ treecolpicker { .treecol-image { padding: 1px; } - + .treecol-text { margin: 0px !important; padding: 0px !important; @@ -272,6 +284,7 @@ treechildren::-moz-tree-column(insertafter) { .treecol-sortdirection { list-style-image: none; + width: 8px; /* The image's width is 7 pixels */ } .sortDirectionIndicator[sortDirection="ascending"] .treecol-sortdirection { @@ -296,7 +309,7 @@ treechildren::-moz-tree-twisty { width: 11px; /* The image's width is 11 pixels */ list-style-image: url("chrome://global/skin/tree/twisty-closed.gif"); } - + treechildren::-moz-tree-twisty(open) { width: 11px; /* The image's width is 11 pixels */ list-style-image: url("chrome://global/skin/tree/twisty-open.gif"); @@ -316,3 +329,17 @@ treechildren.gridlines::-moz-tree-cell { treechildren.gridlines::-moz-tree-row { border: none; } + +/* ::::: alternating background ::::: */ + +treechildren[alternatingbackground="true"]::-moz-tree-row(odd) { + background-color: #F5F7FF; +} + +treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected) { + background-color: #A0A0A0; +} + +treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected, focus) { + background-color: #6699CC; +} diff --git a/EarlyBlue/global/tree/checkbox-checked.gif b/EarlyBlue/global/tree/checkbox-checked.gif new file mode 100644 index 0000000000000000000000000000000000000000..ce2ec61f01438f4a7369681efebb8547b99806f1 GIT binary patch literal 67 zcmZ?wbhEHb6kydap51D>NOkF|Kn4bD0FJ5^j{pDw literal 0 HcmV?d00001 diff --git a/EarlyBlue/global/tree/checkbox.gif b/EarlyBlue/global/tree/checkbox.gif new file mode 100644 index 0000000000000000000000000000000000000000..711a41c373fdb216ff7f203cc0f9905203cb2a2a GIT binary patch literal 59 zcmZ?wbhEHb6kyj{pDw literal 0 HcmV?d00001 diff --git a/EarlyBlue/messenger/addressbook/addressbook.css b/EarlyBlue/messenger/addressbook/addressbook.css index 1cae727b..42b37b0b 100644 --- a/EarlyBlue/messenger/addressbook/addressbook.css +++ b/EarlyBlue/messenger/addressbook/addressbook.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -23,7 +23,7 @@ * Robert Kaiser * * 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 + * 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 @@ -43,6 +43,7 @@ @import url("chrome://messenger/skin/"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); +@namespace html url("http://www.w3.org/1999/xhtml"); /* ::::: primary toolbar buttons ::::: */ @@ -52,7 +53,7 @@ #button-newcard[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/newcard-disabled.gif") !important; -} +} #button-newlist { list-style-image: url("chrome://messenger/skin/addressbook/icons/newlist.gif"); @@ -60,7 +61,7 @@ #button-newlist[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/newlist-disabled.gif") !important; -} +} #button-editcard { list-style-image:url("chrome://messenger/skin/addressbook/icons/person.gif"); @@ -68,7 +69,7 @@ #button-editcard[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/person-disabled.gif") !important; -} +} #button-newmessage { list-style-image:url("chrome://messenger/skin/addressbook/icons/newmsg.gif"); @@ -76,7 +77,7 @@ #button-newmessage[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/newmsg-disabled.gif") !important; -} +} #button-newim { list-style-image:url("chrome://messenger/skin/addressbook/icons/im.gif"); @@ -84,7 +85,7 @@ #button-newim[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/im-disabled.gif") !important; -} +} #button-delete { list-style-image:url("chrome://global/skin/icons/icons/trash.gif"); @@ -92,7 +93,7 @@ #button-delete[disabled="true"] { list-style-image: url("chrome://global/skin/icons/trash-disabled.gif") !important; -} +} /* CardView styles - used in the Card View Pane */ @@ -123,7 +124,7 @@ min-width: 120px; margin: 0px; } - + .cardViewGroup { margin-top: 8px; padding-bottom: 5px; @@ -175,7 +176,7 @@ html|p { /* ::::: border adjustments ::::: */ -#dirTree, #abResultsTree { +#dirTree, #abResultsTree { border: none; margin: 0px; } diff --git a/EarlyBlue/messenger/folderPane.css b/EarlyBlue/messenger/folderPane.css index a9e05fc2..f0dfc3fe 100644 --- a/EarlyBlue/messenger/folderPane.css +++ b/EarlyBlue/messenger/folderPane.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -25,7 +25,7 @@ * Robert Kaiser * * 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 + * 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 @@ -142,6 +142,10 @@ treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-imap, isS list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif"); } +treechildren::-moz-tree-image(folderNameCol, biffState-NewMail, isServer-true, isSecure-true) { + list-style-image: url("chrome://messenger/skin/icons/server-remote-lock-new.gif"); +} + treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-none) { padding-right: 2px; list-style-image: url("chrome://messenger/skin/icons/server-local.gif"); diff --git a/EarlyBlue/messenger/icons/server-remote-lock-new.gif b/EarlyBlue/messenger/icons/server-remote-lock-new.gif new file mode 100644 index 0000000000000000000000000000000000000000..58fe120e24e0fe8c4ac75accad65e0c96f111c53 GIT binary patch literal 136 zcmZ?wbhEHb6kyaGGynhpZw!Pmp!iSJxhOTUBsE2$JhLQ2AtWPJ z!QIn0fI;ym3nLc;JA)1b5P%F}U^b~xU$gF!t3+06v8Ca!1efMsS&x>-8I4J&DkC=R f2(vu#?scg}?%)0e1(Roqw$6BHuslajh`|~FYkWAV literal 0 HcmV?d00001 diff --git a/EarlyBlue/messenger/messageBody.css b/EarlyBlue/messenger/messageBody.css index cbcc521d..0852b3d3 100644 --- a/EarlyBlue/messenger/messageBody.css +++ b/EarlyBlue/messenger/messageBody.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -35,6 +35,7 @@ * * ***** END LICENSE BLOCK ***** */ +@import url("chrome://communicator/skin/smileys.css"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ===== messageBody.css ================================================= @@ -127,6 +128,11 @@ span.moz-txt-underscore { text-decoration: underline; } +span.moz-txt-formfeed { + display: block; + height: 100%; +} + /* ::::: signature ::::: */ .moz-txt-sig, @@ -138,96 +144,3 @@ span.moz-txt-underscore { .moz-signature > a { color: #7777FF; /* light blue */ } - -/* ::::: smilies ::::: */ - -span.moz-smiley-s1, -span.moz-smiley-s2, -span.moz-smiley-s3, -span.moz-smiley-s4, -span.moz-smiley-s5, -span.moz-smiley-s6, -span.moz-smiley-s7, -span.moz-smiley-s8, -span.moz-smiley-s9, -span.moz-smiley-s10, -span.moz-smiley-s11, -span.moz-smiley-s12, -span.moz-smiley-s13, -span.moz-smiley-s14, -span.moz-smiley-s15, -span.moz-smiley-s16 { - min-height: 17px; margin-left: 2px; margin-top: 2px; - padding-left: 20px; - background-repeat: no-repeat; - background-position: center center; - -moz-user-select: all; -} - -span.moz-smiley-s1 > span, -span.moz-smiley-s2 > span, -span.moz-smiley-s3 > span, -span.moz-smiley-s4 > span, -span.moz-smiley-s5 > span, -span.moz-smiley-s6 > span, -span.moz-smiley-s7 > span, -span.moz-smiley-s8 > span, -span.moz-smiley-s9 > span, -span.moz-smiley-s10 > span, -span.moz-smiley-s11 > span, -span.moz-smiley-s12 > span, -span.moz-smiley-s13 > span, -span.moz-smiley-s14 > span, -span.moz-smiley-s15 > span, -span.moz-smiley-s16 > span { - display: none; -} - -span.moz-smiley-s1 { - background-image: url(chrome://editor/content/images/smile_n.gif); -} -span.moz-smiley-s2 { - background-image: url(chrome://editor/content/images/frown_n.gif); -} -span.moz-smiley-s3 { - background-image: url(chrome://editor/content/images/wink_n.gif); -} -span.moz-smiley-s4 { - background-image: url(chrome://editor/content/images/tongue_n.gif); -} -span.moz-smiley-s5 { - background-image: url(chrome://editor/content/images/laughing_n.gif); -} -span.moz-smiley-s6 { - background-image: url(chrome://editor/content/images/embarrassed_n.gif); -} -span.moz-smiley-s7 { - background-image: url(chrome://editor/content/images/undecided_n.gif); -} -span.moz-smiley-s8 { - background-image: url("chrome://editor/content/images/surprise_n.gif"); -} -span.moz-smiley-s9 { - background-image: url("chrome://editor/content/images/kiss_n.gif"); -} -span.moz-smiley-s10 { - background-image: url("chrome://editor/content/images/yell_n.gif"); -} -span.moz-smiley-s11 { - background-image: url("chrome://editor/content/images/cool_n.gif"); -} -span.moz-smiley-s12 { - background-image: url("chrome://editor/content/images/money_n.gif"); -} -span.moz-smiley-s13 { - background-image: url("chrome://editor/content/images/foot_n.gif"); -} -span.moz-smiley-s14 { - background-image: url("chrome://editor/content/images/innocent_n.gif"); -} -span.moz-smiley-s15 { - background-image: url("chrome://editor/content/images/cry_n.gif"); -} -span.moz-smiley-s16 { - background-image: url("chrome://editor/content/images/sealed_n.gif"); -} diff --git a/EarlyBlue/messenger/messageHeader.css b/EarlyBlue/messenger/messageHeader.css index 70144a3f..10d901f7 100644 --- a/EarlyBlue/messenger/messageHeader.css +++ b/EarlyBlue/messenger/messageHeader.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -110,7 +110,7 @@ color: #336699; cursor: pointer; margin: 0px; - padding: 0px 1px; + padding: 0px 1px; } .emailDisplayButton:hover { @@ -169,8 +169,8 @@ width: 12em; } -.collapsedHeaderDisplayName { - margin: 0 .5em 0 .8em; +.collapsedHeaderDisplayName { + margin: 0 .5em 0 .55em; min-height: 16px; font-weight: bold; } diff --git a/EarlyBlue/messenger/smime/msgReadSecurityInfo.css b/EarlyBlue/messenger/smime/msgReadSecurityInfo.css index 2eb10065..fdd23799 100644 --- a/EarlyBlue/messenger/smime/msgReadSecurityInfo.css +++ b/EarlyBlue/messenger/smime/msgReadSecurityInfo.css @@ -43,15 +43,6 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -#msgReadSecurityInfo { - width: 40em; - max-width: 50em; -} - -#outer_vbox { - margin: 5px; -} - #signatureLabel { font-weight: bold; } diff --git a/EarlyBlue/navigator/navigator.css b/EarlyBlue/navigator/navigator.css index 2498945d..b7052a3a 100644 --- a/EarlyBlue/navigator/navigator.css +++ b/EarlyBlue/navigator/navigator.css @@ -35,7 +35,7 @@ * * ***** END LICENSE BLOCK ***** */ -/** Contains style definitions for the navigator application +/** Contains style definitions for the navigator application **/ @import url("chrome://navigator/content/navigator.css"); @@ -77,7 +77,7 @@ #stop-button[disabled="true"] { list-style-image: url("chrome://global/skin/icons/stop-disabled.gif") !important; -} +} #print-button { list-style-image: url("chrome://global/skin/icons/print.gif"); @@ -104,7 +104,7 @@ } #fullscreen-exit-button > .toolbarbutton-text { - display: normal; +/* display: normal; */ } /* ::::: small primary toolbar buttons ::::: */ @@ -158,7 +158,7 @@ toolbar[toolbarmode="small"] > toolbargrippy { min-width: 0px; margin: 7px 4px 8px 4px; } - + #urlbar { border: 1px solid; -moz-border-top-colors: #71737A; @@ -166,10 +166,10 @@ toolbar[toolbarmode="small"] > toolbargrippy { -moz-border-bottom-colors: #EFF0F4; -moz-border-left-colors: #71737A; margin: 0px 7px 0px 0px; -} +} /* ::::: page proxy icon ::::: */ - + #page-proxy-deck, #page-proxy-favicon, #page-proxy-button { @@ -183,14 +183,14 @@ toolbar[toolbarmode="small"] > toolbargrippy { } #page-proxy-button { - list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); + list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); padding-top: 2px; padding-bottom: 2px; -} +} #page-proxy-favicon { list-style-image: none; -} +} /* ::::: autocomplete ::::: */ @@ -228,7 +228,7 @@ toolbar[toolbarmode="small"] > toolbargrippy { /* ::::: go and searchbuttons ::::: */ -#search-button, +#search-button, #go-button { margin: 0px 3px 0px 0px; /* min-height: 25px; */ @@ -260,6 +260,10 @@ toolbar[toolbarmode="small"] > toolbargrippy { list-style-image:url("chrome://communicator/skin/icons/lock-broken.gif"); } +#privacy-button { + list-style-image: url("chrome://communicator/skin/cookie/taskbar-cookie.gif"); +} + #popupIcon { list-style-image:url("chrome://navigator/skin/icons/popup-blocked.gif"); } -- 2.35.3 From 8b0a3b3abb4192249decf5328ec8565c42c0c215 Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 8 Jul 2004 20:58:24 +0000 Subject: [PATCH 07/16] prepare 1.7 release --- EarlyBlue/contents.rdf | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/EarlyBlue/contents.rdf b/EarlyBlue/contents.rdf index adb0cf93..a19e844a 100644 --- a/EarlyBlue/contents.rdf +++ b/EarlyBlue/contents.rdf @@ -5,42 +5,42 @@ - + - - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + - - - + + + -- 2.35.3 From 593ae800bf1312161ebc7598813b75d481b6990d Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 8 Jul 2004 21:10:16 +0000 Subject: [PATCH 08/16] only support about:plugins in new location after 1.7 release --- EarlyBlue/communicator/plugins.css | 135 ----------------------------- 1 file changed, 135 deletions(-) delete mode 100644 EarlyBlue/communicator/plugins.css diff --git a/EarlyBlue/communicator/plugins.css b/EarlyBlue/communicator/plugins.css deleted file mode 100644 index f69ba7e0..00000000 --- a/EarlyBlue/communicator/plugins.css +++ /dev/null @@ -1,135 +0,0 @@ -/* ***** 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 mozilla.org code. - * - * The Initial Developer of the Original Code is - * the Mozilla Organization. - * Portions created by the Initial Developer are Copyright (C) 1998-2002 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Robert Kaiser - * - * 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 ***** */ - -/* ===== plugins.css ===================================================== - == Styles used by the about:plugins dialog. - ======================================================================= */ - -body { - background-color: #FFFFFF; - color: #000000; - font: 12px helvetica,arial,tahoma,sans-serif; -} - -a:link, a:visited, a:active { - color: #336699; - text-decoration: underline; -} - -hr { - display: none; -} - -div#outside { - text-align: justify; - width: 90%; - margin-left: 5%; - margin-right: 5%; -} - -div#plugs { - text-align: center; - font-size: 24px; - font-weight: bold; -} - -div#noplugs { - font-size: 18px; - font-weight: bold; -} - -div#findmore { - margin-top: 2em; -} - -div.plugname { - margin-top: 2em; - margin-bottom: 1em; - font-size: 16px; - text-align: left; - font-weight: bold; -} - -dl { - margin: 0px 0px 3px 0px; -} - -span.label { - font-style: italic; -} - -table { - background-color: #CCD0DD; - color: #000000; -/* font: message-box; */ - text-align: left; - width: 100%; - border: 1px solid #9999CC; - border-spacing: 0px; -} - -th { - text-align: center; - background-color: #666699; - color: #CCD0DD; -} - -th + th, -td + td { - border-left: 1px dotted #9999CC; -} - -td { - text-align: left; - border-top: 1px dotted #9999CC; -} - -th, td { - padding: 3px; -} - -th.type, th.suff { - width: 20%; -} - -th.desc { - width: 50%; -} - -th.enabled { - width: 10%; -} \ No newline at end of file -- 2.35.3 From 3d6dd546c97f902b849a45d2bf2fa7cc623cb2e9 Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 8 Jul 2004 22:15:42 +0000 Subject: [PATCH 09/16] update with classic theme development, keep about:plugins compatible for 1.7 release, prepare 1.7 release --- .../communicator/bookmarks/bookmarks.css | 37 ++-- .../bookmarks/bookmarksWindow.css | 19 +- .../communicator/icons/smileys/cool_n.gif | Bin 0 -> 434 bytes .../communicator/icons/smileys/cry_n.gif | Bin 0 -> 170 bytes .../icons/smileys/embarrassed_n.gif | Bin 0 -> 169 bytes .../communicator/icons/smileys/foot_n.gif | Bin 0 -> 182 bytes .../communicator/icons/smileys/frown_n.gif | Bin 0 -> 189 bytes .../communicator/icons/smileys/innocent_n.gif | Bin 0 -> 146 bytes .../communicator/icons/smileys/kiss_n.gif | Bin 0 -> 733 bytes .../communicator/icons/smileys/laughing_n.gif | Bin 0 -> 147 bytes .../communicator/icons/smileys/money_n.gif | Bin 0 -> 131 bytes .../communicator/icons/smileys/sealed_n.gif | Bin 0 -> 116 bytes .../communicator/icons/smileys/smile_n.gif | Bin 0 -> 144 bytes .../communicator/icons/smileys/surprise_n.gif | Bin 0 -> 151 bytes .../communicator/icons/smileys/tongue_n.gif | Bin 0 -> 145 bytes .../icons/smileys/undecided_n.gif | Bin 0 -> 179 bytes .../communicator/icons/smileys/wink_n.gif | Bin 0 -> 139 bytes .../communicator/icons/smileys/yell_n.gif | Bin 0 -> 135 bytes LCARStrek/communicator/prefpanels.css | 14 +- LCARStrek/communicator/profile/profile.css | 9 +- .../communicator/sidebar/sidebarBindings.xml | 2 +- .../communicator/sidebar/sidebarListView.css | 9 +- LCARStrek/communicator/smileys.css | 168 ++++++++++++++++++ LCARStrek/contents.rdf | 44 ++--- LCARStrek/editor/EdImageMapPage.css | 8 +- LCARStrek/editor/editorFormatToolbar.css | 124 ++++++------- LCARStrek/global/browser.css | 7 +- LCARStrek/global/checkbox.css | 35 ++-- LCARStrek/global/global.css | 22 ++- LCARStrek/global/globalBindings.xml | 20 +++ LCARStrek/global/menu.css | 14 +- LCARStrek/global/menulist.css | 10 +- LCARStrek/global/plugins.css | 158 ++++++++++++++++ LCARStrek/global/popup.css | 2 +- LCARStrek/global/progressmeter.css | 2 + LCARStrek/global/radio.css | 41 +++-- LCARStrek/global/scrollbars.css | 6 +- LCARStrek/global/tree.css | 41 ++++- LCARStrek/global/tree/checkbox-checked.gif | Bin 0 -> 67 bytes LCARStrek/global/tree/checkbox.gif | Bin 0 -> 59 bytes .../messenger/addressbook/addressbook.css | 35 ++-- LCARStrek/messenger/folderPane.css | 8 +- .../icons/server-remote-lock-new.gif | Bin 0 -> 114 bytes LCARStrek/messenger/messageBody.css | 103 +---------- LCARStrek/messenger/messageHeader.css | 12 +- .../messenger/smime/msgReadSecurityInfo.css | 9 - LCARStrek/navigator/navigator.css | 36 ++-- 47 files changed, 650 insertions(+), 345 deletions(-) create mode 100644 LCARStrek/communicator/icons/smileys/cool_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/cry_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/embarrassed_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/foot_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/frown_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/innocent_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/kiss_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/laughing_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/money_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/sealed_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/smile_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/surprise_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/tongue_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/undecided_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/wink_n.gif create mode 100644 LCARStrek/communicator/icons/smileys/yell_n.gif create mode 100644 LCARStrek/communicator/smileys.css create mode 100644 LCARStrek/global/plugins.css create mode 100644 LCARStrek/global/tree/checkbox-checked.gif create mode 100644 LCARStrek/global/tree/checkbox.gif create mode 100644 LCARStrek/messenger/icons/server-remote-lock-new.gif diff --git a/LCARStrek/communicator/bookmarks/bookmarks.css b/LCARStrek/communicator/bookmarks/bookmarks.css index 17516b3b..bb35c005 100644 --- a/LCARStrek/communicator/bookmarks/bookmarks.css +++ b/LCARStrek/communicator/bookmarks/bookmarks.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -21,10 +21,11 @@ * Contributor(s): * Ben Goodger * Josh Soref + * Dan Cannon * Robert Kaiser * * 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 + * 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 @@ -39,23 +40,26 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -/** - * Style rules for generic bookmarks items. - */ - +/** + * Style rules for generic bookmarks items. + */ + treechildren::-moz-tree-image(Name) { padding-right: 2px; } - -.bookmark-item, treechildren::-moz-tree-image(Name) { + +.bookmark-item, +treechildren::-moz-tree-image(Name) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); } -.bookmark-item[container="true"], treechildren::-moz-tree-image(Name, container) { +.bookmark-item[container="true"], +treechildren::-moz-tree-image(Name, container) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif"); } -.bookmark-item[container="true"][open="true"], treechildren::-moz-tree-image(Name, open) { +.bookmark-item[open="true"], +treechildren::-moz-tree-image(Name, open) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-open.gif"); } @@ -63,7 +67,8 @@ treechildren::-moz-tree-image(Name) { list-style-image: url("chrome://global/skin/icons/loading.gif") !important; } -.bookmark-item[status="new"] { +.bookmark-item[status="new"], +treechildren::-moz-tree-image(Name, new) { list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item-updated.gif") !important; } @@ -71,20 +76,14 @@ treechildren::-moz-tree-image(Name) { height: 16px; } -.bookmark-item > .menu-iconic-left > .menu-iconic-icon { - max-width: 16px; - max-height: 16px; -} - toolbarbutton.bookmark-item > .toolbarbutton-menu-dropmarker { display: none; } -.tree-cell-icon, .tree-cell-primary-icon { +.bookmark-item > .toolbarbutton-box > .toolbarbutton-icon { list-style-image: inherit; height: 16px; - max-width: 16px; - max-height: 16px; + width: 16px; } treechildren::-moz-tree-twisty(group, hidetwisty) { diff --git a/LCARStrek/communicator/bookmarks/bookmarksWindow.css b/LCARStrek/communicator/bookmarks/bookmarksWindow.css index bc2e8b82..68f1dcdd 100644 --- a/LCARStrek/communicator/bookmarks/bookmarksWindow.css +++ b/LCARStrek/communicator/bookmarks/bookmarksWindow.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -41,25 +41,10 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -/** - * XXX - disable print plus. This needs to go into ns/!!! - */ -#navprintplus { - display: none !important; -} - #status-bar { height: 1em; } -#notification-icon { - list-style-image: url("chrome://communicator/skin/bookmarks/notification.gif"); -} - -#schedule-icon { - list-style-image: url("chrome://communicator/skin/bookmarks/schedule.gif"); -} - #panel-bar, #search-bar { border-top: 1px solid #9C9CFF; diff --git a/LCARStrek/communicator/icons/smileys/cool_n.gif b/LCARStrek/communicator/icons/smileys/cool_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..e62ae6566a575544bd6e971862fdfdc09b2f28ea GIT binary patch literal 434 zcmZ8cze^lZ5S};l-rIBcJULHYA)aK_$RVB*-1YVd2|+?aikNtf*m;3S?6g%#5v**L zKpKE7|hnHMjghvjMxa&QPB7)m5! z$dLqa$%KVcGE0CZS&A6vC37Pj z^F&sL!5jYOCy?LvzRcC0zDa%j{`PBErSLgj@E=dye^uQ$*xwypOAq)%{<{aOTZdCS z6)&^w^lm)ap4{4;pB-B)bQfpJuR*k+2;F8;BD9^Ek{4zJhuWM{dwYQ7yZKyOzmI|4 zL6o;xkYQo#piRYWmNLXEOApf>uHP?hujr1f=X>w<42-6PTlDO(@96mC^eFt%S35hd vo&P@nb9oV#uY!O7gR8NNpY_H`?b7KSo?iLzi+4YJKVJQ`@VCouLU?oy;gx?G literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/cry_n.gif b/LCARStrek/communicator/icons/smileys/cry_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..4ecbcb6b86f6a5dd073b1a9e847bd0a37d270a84 GIT binary patch literal 170 zcmZ?wbhEHb6lM@+*v!CSXka+=%>V!Y8UFoa`1Xw+| zz`)6%1Cjxm!N3x3aI$lit8uW(F7c^qh4GwOGK|w+T9z@Ntcq|d674OY!K1|Judw{H zM8i^s1py{An{4K97Pk4b%u_?q`>L0|nAUl>;!|0d;&-_{>od-rc0!E*tb4*Y6($C2 E0H-20IsgCw literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/embarrassed_n.gif b/LCARStrek/communicator/icons/smileys/embarrassed_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..719ecd7ea828cc577578900f21de4dac1268a244 GIT binary patch literal 169 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYn~I#{bVS{GSQr{$~IQ{#X3T!pOkD&Y%P20#yn# zFfiv;?7EhxZ6w^Vb)l#0`r`p9HA_V0?wZbuJ65@xYw^^ZE6gRNS?zz>-f_La&BW?- zx*=WX3)`W_lAXprxeS_(3}1P+1vw~xxLc&3y5V$Goy7s~b0sg=Y+ky2_lkvM>+G)88^?8(@!%uYB>y?xRtXvznX=z!Ewvq$EBWg+H2GWvNSKu(zvSV{`czCF4dI{5^YQg3@#i# zd-_f`2nfw^4|pe>#l$7L^rh*aibWdh%4Ou@b)HQxeDgWYw#7g3U+3$JCpJba<=1=E W=IKPG)a$6mg(^#?D@h45SOWl+vOfO+ literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/innocent_n.gif b/LCARStrek/communicator/icons/smileys/innocent_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..e94bf35131f9f280386ea7ca88cd77c03003e2cd GIT binary patch literal 146 zcmZ?wbhEHb6lM@+Sj50!XkhsNKg03)4F7=?1C#_Z6o0ZXGBB_*=m6P3mBI`R%;6DH zm;NQ`s%wYlPCR?Er)Lvuie!$2nn0Sj&`hlzPeV5_F4>=CxzFPM+2fX?zWW&x45HK; r_c4A};dSzENVxWONn!gv{U1kMvpQrqAMyGel9%(K`mSTB5Q8-Uvzs-~ literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/kiss_n.gif b/LCARStrek/communicator/icons/smileys/kiss_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..0c7fdad171d1e55b981ae637c3bce036f786ef6a GIT binary patch literal 733 zcmb_ZO=}ZT6us}=H#2EWTWx9jVS;I@5o-;Zq=uxmqNVK^9kHks6bhYmg4mS^ZiRlYqE_4qf+8+l)Qt$Wg5VF(Slqa>bd$`y_niI*@8ZBc+KA}WljLP&1|nOYN^GUQSK1t8!Ghs#<`f-9jai6cl&QdiQdpbn=s=}n?5 z(2psAuAG%3aC@3XZPJgj57qI9G&F zg{yI{xxCH`-J4R5CcUUcVRSIv?Oee>x_2gVD69jl6ECBO#6gr&A|j=f5RU_|_3%Gd zXO(%n1?bt)-1!M;a;8u$HPm->1>1t9g;L|5G zOg7b>&h;CwhBHu-)lI^#KeB5d~9qierLCqKQ|*A&Tov?}@G(?tepJeZ|Ksmzn(}=7GEYWMK=>$_E?}b{N#9WJ7UiI@=aI$4Ep~8tbyUo literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/laughing_n.gif b/LCARStrek/communicator/icons/smileys/laughing_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..e404456bd2199928e0ac9ab9930dcd11f6f45fb7 GIT binary patch literal 147 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYrPYK+^a>kOL9{k%~WA7#SGY7<7Paph{r|2Ih#2 zU036@HwiUtUFhk${&+x0%@R?myTvOd**Tg`dt7;Vm>5b^XZG%mJ1nB|s-Z9FQ-+d& t9G|+-%QaC;mt85f&I;TfA-jALGjsG~of6fDKmC-4nrMC%O2cL#M2O}daA ZWIAb^guSrF?~6~;W_e5&@nm4I1_0KxE9n3L literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/sealed_n.gif b/LCARStrek/communicator/icons/smileys/sealed_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..29931c3a45a1542470aa888cd95e2e6a73c1fb46 GIT binary patch literal 116 zcmZ?wbhEHb6lM@+n8?6jXkhsNKLZf_|Nmd{CkrD312cmTh!2uyU~-+Kzp|)TXc5mz zNekmri-te0XH+#)gC;5MD)VvQXsFXIDUOLlG*e0$9K$D-cH RXN_L0-Ozt@MIZx%H30jKDfj>Y literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/smile_n.gif b/LCARStrek/communicator/icons/smileys/smile_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..6fc401425cda9a871b3b0befb4dc693c05ac71bb GIT binary patch literal 144 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYn~I4F8Q8fZ#un4+e@qSr{1@SQ&IcJdj!j=Fo^; zSNyb%gc`Ok^mJW+Jiw)9iKy7zpS=p@mieC-P1U@uGvO&iPxbceSx2=eHn}F8Q88d* pS>v|WoHf=+9`j6v}y3nK#qD}xS*3sTF#922qY zlAgAa<0@5OEw2M_MMVmo9)vnL7-b0X$QkTde&S?i&Y{GEr3S(7N4ftRY+3l~(hrl~ wbC1)x=31>d&wZdU$;*&`wSHA<-ie#{Zf?pgF`SefDf_?4bg{eJBnAd+08cYHXaE2J literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/tongue_n.gif b/LCARStrek/communicator/icons/smileys/tongue_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..d657df0ce43d50d264afc4017f46e34d00d56817 GIT binary patch literal 145 zcmZ?wbhEHb6lM@+Sj52a|3AZ-GYrPY4F4HG;6IQL28usf7#SE?8FWBAkXi=ju!vn( z{IrdP8n!Og(5+&3Jb8O8RX@%gJ?Esc||eE0ENeR$Scm))KW4AuZsAY#`Q zKW!tShOG-dUDqEEaH&}$Di-@Qb&hJ!s?M+@1_#vmQVQ-q*>&fsxUiV#k;UqrI;I)t jR91gaWO7=`?zq9~p`3^3sw1~-b}#4knjNOXz+epkepoTD literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/icons/smileys/yell_n.gif b/LCARStrek/communicator/icons/smileys/yell_n.gif new file mode 100644 index 0000000000000000000000000000000000000000..de13db16e5b1df024c82f78d7e503328198bd6a7 GIT binary patch literal 135 zcmZ?wbhEHb6lM@+Sj52a|3Ab3REBc~42BFK@E^zr1I3>#j0_B{3_2hlNG$`iPsFY( ze%eM%t5|)ts;sB=UQdk{tx^vuxN&onz?)g`Y_?z5?aO($!1h-2@#-5*$L6a(Q|4ef fb^et23bw4CIbV0NJY{2^ktVvNSKZB*iNP8G;M6ZS literal 0 HcmV?d00001 diff --git a/LCARStrek/communicator/prefpanels.css b/LCARStrek/communicator/prefpanels.css index 8705a5ec..1d7b718d 100644 --- a/LCARStrek/communicator/prefpanels.css +++ b/LCARStrek/communicator/prefpanels.css @@ -44,7 +44,7 @@ /* ::::: Themes ::::: */ #skinsTree { height: 80px; -} +} *|*.themesLink { margin-left: 5px; @@ -60,16 +60,16 @@ #themesLink:active { color: #FFCF00; -} +} #previewImageContainer { padding: 1px; - height: 92px; + height: 92px; /* background-color: #000000; */ } #previewImage { - max-width: 355px; + max-width: 355px; min-width: 355px; max-height: 85px; min-height: 85px; @@ -91,9 +91,3 @@ #mouseWheelMode { width: 9em; } - -/* ::::: Smart Browsing ::::: */ - -#disabledDomains { - max-height: 13em; -} diff --git a/LCARStrek/communicator/profile/profile.css b/LCARStrek/communicator/profile/profile.css index df5a4df3..b5999ec2 100644 --- a/LCARStrek/communicator/profile/profile.css +++ b/LCARStrek/communicator/profile/profile.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -45,11 +45,12 @@ window.dialog { padding: 0; } -#profiles > listitem { +treechildren::-moz-tree-image { + margin-right: 2px; list-style-image: url("chrome://communicator/skin/profile/profileicon-large.gif"); } -#profiles > listitem[rowMigrate="no"] { +treechildren::-moz-tree-image(rowMigrate-no) { list-style-image: url("chrome://communicator/skin/profile/migrate.gif"); } diff --git a/LCARStrek/communicator/sidebar/sidebarBindings.xml b/LCARStrek/communicator/sidebar/sidebarBindings.xml index 80ab04b8..0d1ddae6 100644 --- a/LCARStrek/communicator/sidebar/sidebarBindings.xml +++ b/LCARStrek/communicator/sidebar/sidebarBindings.xml @@ -9,7 +9,7 @@ - + diff --git a/LCARStrek/communicator/sidebar/sidebarListView.css b/LCARStrek/communicator/sidebar/sidebarListView.css index 058ffbd8..5d8193c4 100644 --- a/LCARStrek/communicator/sidebar/sidebarListView.css +++ b/LCARStrek/communicator/sidebar/sidebarListView.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -23,7 +23,7 @@ * Robert Kaiser * * 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 + * 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 @@ -38,6 +38,7 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -treechildren { - cursor: pointer; +treechildren::-moz-tree-image, +treechildren::-moz-tree-cell-text { + cursor: pointer; } diff --git a/LCARStrek/communicator/smileys.css b/LCARStrek/communicator/smileys.css new file mode 100644 index 00000000..9b96042b --- /dev/null +++ b/LCARStrek/communicator/smileys.css @@ -0,0 +1,168 @@ +/* ***** 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 smiley style rules. + * + * The Initial Developer of the Original Code is + * Mozilla. + * Portions created by the Initial Developer are Copyright (C) 2004 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either of 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 ***** */ + +/* ==== smileys.css ==================================================== + == Style rules to bind smiley image types generated by editor and the mozTxtToHTMLConv + == into skinnable images. + ========================================================================== */ + +/* ::::: we also represent smilies inside of spans ::::: */ + +span.moz-smiley-s1, +span.moz-smiley-s2, +span.moz-smiley-s3, +span.moz-smiley-s4, +span.moz-smiley-s5, +span.moz-smiley-s6, +span.moz-smiley-s7, +span.moz-smiley-s8, +span.moz-smiley-s9, +span.moz-smiley-s10, +span.moz-smiley-s11, +span.moz-smiley-s12, +span.moz-smiley-s13, +span.moz-smiley-s14, +span.moz-smiley-s15, +span.moz-smiley-s16 +{ + font-size: 17px; + padding-left: 20px; + margin-left: 2px; + margin-top: 2px; + background-repeat: no-repeat; + -moz-user-select: all; + background-position: center center; +} + +span.moz-smiley-s1 > span, +span.moz-smiley-s2 > span, +span.moz-smiley-s3 > span, +span.moz-smiley-s4 > span, +span.moz-smiley-s5 > span, +span.moz-smiley-s6 > span, +span.moz-smiley-s7 > span, +span.moz-smiley-s8 > span, +span.moz-smiley-s9 > span, +span.moz-smiley-s10 > span, +span.moz-smiley-s11 > span, +span.moz-smiley-s12 > span, +span.moz-smiley-s13 > span, +span.moz-smiley-s14 > span, +span.moz-smiley-s15 > span, +span.moz-smiley-s16 > span +{ + display: none; +} + +/* smile */ +span.moz-smiley-s1{ + background-image: url("chrome://communicator/skin/icons/smileys/smile_n.gif"); +} + +/* frown */ +span.moz-smiley-s2 { + background-image: url("chrome://communicator/skin/icons/smileys/frown_n.gif"); +} + +/* wink */ +span.moz-smiley-s3 { + background-image: url("chrome://communicator/skin/icons/smileys/wink_n.gif"); +} + +/* tongue */ +span.moz-smiley-s4 { + background-image: url("chrome://communicator/skin/icons/smileys/tongue_n.gif"); +} + +/* laughing */ +span.moz-smiley-s5 { + background-image: url("chrome://communicator/skin/icons/smileys/laughing_n.gif"); +} + +/* embarassed */ +span.moz-smiley-s6 { + background-image: url("chrome://communicator/skin/icons/smileys/embarrassed_n.gif"); +} + +/* undecided */ +span.moz-smiley-s7 { + background-image: url("chrome://communicator/skin/icons/smileys/undecided_n.gif"); +} + +/* suprise */ +span.moz-smiley-s8 { + background-image: url("chrome://communicator/skin/icons/smileys/surprise_n.gif"); +} + +/* kiss */ +span.moz-smiley-s9 { + background-image: url("chrome://communicator/skin/icons/smileys/kiss_n.gif"); +} + +/* yell */ +span.moz-smiley-s10 { + background-image: url("chrome://communicator/skin/icons/smileys/yell_n.gif"); +} + +/* cool */ +span.moz-smiley-s11 { + background-image: url("chrome://communicator/skin/icons/smileys/cool_n.gif"); +} + +/* money */ +span.moz-smiley-s12 { + background-image: url("chrome://communicator/skin/icons/smileys/money_n.gif"); +} + +/* foot */ +span.moz-smiley-s13 { + background-image: url("chrome://communicator/skin/icons/smileys/foot_n.gif"); +} + +/* innocent */ +span.moz-smiley-s14 { + background-image: url("chrome://communicator/skin/icons/smileys/innocent_n.gif"); +} + +/* cry */ +span.moz-smiley-s15 { + background-image: url("chrome://communicator/skin/icons/smileys/cry_n.gif"); +} + +/* sealed */ +span.moz-smiley-s16 { + background-image: url("chrome://communicator/skin/icons/smileys/sealed_n.gif"); +} diff --git a/LCARStrek/contents.rdf b/LCARStrek/contents.rdf index 4e3c61ca..9b01bc03 100644 --- a/LCARStrek/contents.rdf +++ b/LCARStrek/contents.rdf @@ -5,42 +5,42 @@ - + - - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + - - - + + + diff --git a/LCARStrek/editor/EdImageMapPage.css b/LCARStrek/editor/EdImageMapPage.css index e123ead2..449dd3f4 100644 --- a/LCARStrek/editor/EdImageMapPage.css +++ b/LCARStrek/editor/EdImageMapPage.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -37,8 +37,8 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -.rect {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1 solid #0000ff;} -.cir {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1 solid #00ff00; -moz-border-radius: 50%;} +.rect {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1px solid #0000ff;} +.cir {position:absolute; top:1px; left:1px; height:1px; width:1px; border: 1px solid #00ff00; -moz-border-radius: 50%;} .poly {position:absolute; top:0px; left:0px; height:100%; width:100%;} .point {position:absolute; top:1px; left:1px; height:3px; width:3px; background-color:#ff0000;} .pointStart {position:absolute; top:1px; left:1px; height:3px; width:3px; background-color:#8000ff;} diff --git a/LCARStrek/editor/editorFormatToolbar.css b/LCARStrek/editor/editorFormatToolbar.css index db59c107..fa8b4ab7 100644 --- a/LCARStrek/editor/editorFormatToolbar.css +++ b/LCARStrek/editor/editorFormatToolbar.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -42,75 +42,75 @@ #FormatToolbar > toolbarbutton { min-width: 18px; } - + #FormatToolbar > toolbarbutton > .toolbarbutton-text { display: none; } #DecreaseFontSizeButton { list-style-image: url("chrome://editor/skin/icons/dec-font-size.gif"); -} +} #DecreaseFontSizeButton:hover, #DecreaseFontSizeButton:hover:active { list-style-image: url("chrome://editor/skin/icons/dec-font-size-hover.gif"); -} +} #DecreaseFontSizeButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/dec-font-size-disabled.gif") !important; -} +} #IncreaseFontSizeButton { list-style-image: url("chrome://editor/skin/icons/inc-font-size.gif"); -} +} #IncreaseFontSizeButton:hover, #IncreaseFontSizeButton:hover:active { list-style-image: url("chrome://editor/skin/icons/inc-font-size-hover.gif"); -} +} #IncreaseFontSizeButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/inc-font-size-disabled.gif") !important; -} +} #boldButton { - list-style-image: url(chrome://editor/skin/icons/bold.gif); + list-style-image: url(chrome://editor/skin/icons/bold.gif); } #boldButton:hover, #boldButton:hover:active { list-style-image: url("chrome://editor/skin/icons/bold-hover.gif"); -} +} #boldButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/bold-disabled.gif") !important; -} +} #italicButton { list-style-image: url("chrome://editor/skin/icons/italic.gif"); -} +} #italicButton:hover, #italicButton:hover:active { list-style-image: url("chrome://editor/skin/icons/italic-hover.gif"); -} +} #italicButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/italic-disabled.gif") !important; -} +} #underlineButton { list-style-image: url("chrome://editor/skin/icons/underline.gif"); -} +} #underlineButton:hover, #underlineButton:hover:active { list-style-image: url("chrome://editor/skin/icons/underline-hover.gif"); -} +} #underlineButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/underline-disabled.gif") !important; -} +} #ulButton { list-style-image:url("chrome://editor/skin/icons/bullets.gif"); @@ -119,11 +119,11 @@ #ulButton:hover, #ulButton:hover:active { list-style-image: url("chrome://editor/skin/icons/bullets-hover.gif"); -} +} #ulButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/bullets-disabled.gif") !important; -} +} #olButton { list-style-image: url("chrome://editor/skin/icons/numbers.gif"); @@ -132,76 +132,76 @@ #olButton:hover, #olButton:hover:active { list-style-image: url("chrome://editor/skin/icons/numbers-hover.gif"); -} +} #olButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/numbers-disabled.gif") !important; -} +} #outdentButton { list-style-image: url("chrome://editor/skin/icons/outdent.gif"); -} +} #outdentButton:hover, #outdentButton:hover:active { list-style-image: url("chrome://editor/skin/icons/outdent-hover.gif"); -} +} #outdentButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/outdent-disabled.gif") !important; -} +} #indentButton { list-style-image: url("chrome://editor/skin/icons/indent.gif"); -} +} #indentButton:hover, #indentButton:hover:active { list-style-image: url("chrome://editor/skin/icons/indent-hover.gif"); -} +} #indentButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/indent-disabled.gif") !important; -} +} #align-left-button { list-style-image: url("chrome://editor/skin/icons/left.gif"); -} +} #align-left-button:hover, #align-left-button:hover:active { list-style-image: url("chrome://editor/skin/icons/left-hover.gif"); -} +} #align-left-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/left-disabled.gif") !important; -} +} #align-center-button { list-style-image: url("chrome://editor/skin/icons/center.gif"); -} +} #align-center-button:hover, #align-center-button:hover:active { list-style-image: url("chrome://editor/skin/icons/center-hover.gif"); -} +} #align-center-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/center-disabled.gif") !important; -} +} #align-right-button { list-style-image: url("chrome://editor/skin/icons/right.gif"); -} +} #align-right-button:hover, #align-right-button:hover:active { list-style-image: url("chrome://editor/skin/icons/right-hover.gif"); -} +} #align-right-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/right-disabled.gif") !important; -} +} #align-justify-button { list-style-image: url("chrome://editor/skin/icons/justify.gif"); @@ -214,7 +214,7 @@ #align-justify-button[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/justify-disabled.gif") !important; -} +} #AlignPopupButton { list-style-image: url("chrome://editor/skin/icons/align.gif"); @@ -245,7 +245,7 @@ } #smileButtonMenu { - list-style-image: url("chrome://editor/skin/icons/smile.gif"); + list-style-image: url("chrome://editor/skin/icons/smile.gif"); } #smileButtonMenu[disabled="true"] { @@ -258,30 +258,30 @@ #AlignLeftItem { list-style-image: url("chrome://editor/skin/icons/left.gif"); -} +} #AlignLeftItem:hover, #AlignLeftItem:hover:active { list-style-image: url("chrome://editor/skin/icons/left-hover.gif"); -} +} #AlignCenterItem { list-style-image: url("chrome://editor/skin/icons/center.gif"); -} +} #AlignCenterItem:hover, #AlignCenterItem:hover:active { list-style-image: url("chrome://editor/skin/icons/center-hover.gif"); -} +} #AlignRightItem { list-style-image: url("chrome://editor/skin/icons/right.gif"); -} +} #AlignRightItem:hover, #AlignRightItem:hover:active { list-style-image: url("chrome://editor/skin/icons/right-hover.gif"); -} +} #AlignJustifyItem { list-style-image: url("chrome://editor/skin/icons/justify.gif"); @@ -342,71 +342,71 @@ /* ..... smiley menu ..... */ .insert-smile > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/smile_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/smile_n.gif"); } .insert-tongue > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/tongue_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/tongue_n.gif"); } .insert-frown > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/frown_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/frown_n.gif"); } .insert-wink > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/wink_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/wink_n.gif"); } .insert-laughing > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/laughing_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/laughing_n.gif"); } .insert-embarrassed > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/embarrassed_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/embarrassed_n.gif"); } .insert-undecided > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/undecided_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/undecided_n.gif"); } .insert-surprise > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/surprise_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/surprise_n.gif"); } .insert-kiss > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/kiss_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/kiss_n.gif"); } .insert-yell > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/yell_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/yell_n.gif"); } .insert-cool > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/cool_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/cool_n.gif"); } .insert-undecided > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/undecided_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/undecided_n.gif"); } .insert-money > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/money_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/money_n.gif"); } .insert-foot > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/foot_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/foot_n.gif"); } .insert-innocent > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/innocent_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/innocent_n.gif"); } .insert-cry > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/cry_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/cry_n.gif"); } .insert-sealed > .menu-iconic-left { - list-style-image: url("chrome://editor/content/images/sealed_n.gif"); + list-style-image: url("chrome://communicator/skin/icons/smileys/sealed_n.gif"); } /* ::::: fg/bg color picker ::::: */ diff --git a/LCARStrek/global/browser.css b/LCARStrek/global/browser.css index 5212e853..450d863d 100644 --- a/LCARStrek/global/browser.css +++ b/LCARStrek/global/browser.css @@ -56,10 +56,13 @@ margin-right: 3px; width: 16px; height: 16px; - list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item16.gif"); } -tab[busy] > .tab-icon { +tab { + list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item16.gif"); +} + +tab[busy] { list-style-image: url("chrome://global/skin/icons/loading.gif"); } diff --git a/LCARStrek/global/checkbox.css b/LCARStrek/global/checkbox.css index 6ef631fc..d83141be 100644 --- a/LCARStrek/global/checkbox.css +++ b/LCARStrek/global/checkbox.css @@ -40,19 +40,27 @@ /* stylesheet for XUL element */ checkbox { - -moz-box-align: center; margin: 1px 2px; - padding: 1px; + border-left: 1px transparent; + border-right: 1px transparent; +} + +.checkbox-spacer-box { + -moz-box-align: center; + border-right: 4px solid transparent; +} + +.checkbox-label-center-box { + -moz-box-align: center; } .checkbox-label-box { border: 1px solid transparent; - padding: 0px 1px; color: #FF9F00; -moz-box-align: center; } -.checkbox-icon { +.checkbox-icon[src] { margin-right: 2px; } @@ -62,13 +70,13 @@ checkbox { /* ..... focused state ..... */ -checkbox:focus > .checkbox-label-box { +checkbox:focus > .checkbox-label-center-box > .checkbox-label-box { border: 1px dotted #008484; } /* ..... disabled state ..... */ -checkbox[disabled="true"] > .checkbox-check { +checkbox[disabled="true"] > .checkbox-spacer-box > .checkbox-check { border: 1px solid #8050B0 !important; } @@ -80,29 +88,28 @@ checkbox[disabled="true"] { .checkbox-check { -moz-border-radius: 2px; - -moz-box-align: center; border: 1px solid #FF9F00; width: 12px; height: 12px; background: transparent 50% 50% no-repeat; } -checkbox:hover > .checkbox-check, -checkbox:hover:active > .checkbox-check { +checkbox:hover > .checkbox-spacer-box > .checkbox-check, +checkbox:hover:active > .checkbox-spacer-box > .checkbox-check { border: 1px solid #FFCF00; } -checkbox:hover > .checkbox-label-box, -checkbox:hover:active > .checkbox-label-box { +checkbox:hover > .checkbox-label-center-box > .checkbox-label-box, +checkbox:hover:active > .checkbox-label-center-box > .checkbox-label-box { color: #FFCF00; } /* ..... checked state ..... */ -checkbox[checked="true"] > .checkbox-check { +checkbox[checked="true"] > .checkbox-spacer-box > .checkbox-check { background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); } - -checkbox[checked="true"][disabled="true"] > .checkbox-check { + +checkbox[checked="true"][disabled="true"] > .checkbox-spacer-box > .checkbox-check { background-image: url("chrome://global/skin/checkbox/cbox-check-disabled.gif") !important } diff --git a/LCARStrek/global/global.css b/LCARStrek/global/global.css index 2b3491f4..4b3b0d66 100644 --- a/LCARStrek/global/global.css +++ b/LCARStrek/global/global.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -48,8 +48,12 @@ /* ::::: XBL bindings ::::: */ +checkbox { + -moz-binding: url("chrome://global/content/bindings/checkbox.xml#checkbox-with-spacing"); +} + radio { - -moz-binding: url("chrome://global/skin/globalBindings.xml#radio"); + -moz-binding: url("chrome://global/skin/globalBindings.xml#radio-with-spacing"); } menulist > menupopup, @@ -80,7 +84,7 @@ menubar { window, page, dialog, -wizard { +wizard { background-color: #000000; color: #FF9F00; /* font: 3mm "Final Frontier",tahoma,arial,helvetica,sans-serif; */ @@ -89,13 +93,13 @@ wizard { } /* deprecated */ -window.dialog { +window.dialog { background-color: #000000; padding: 8px 10px 10px 8px; } -[wait-cursor] { - cursor: wait !important; +[wait-cursor] { + cursor: wait !important; } /* ::::: alert icons :::::*/ @@ -167,7 +171,7 @@ statusbarpanel { -moz-box-pack: center; padding: 0px 1px 0px 1px; } - + .statusbar-resizerpanel { -moz-box-align: end; -moz-box-pack: end; @@ -176,7 +180,7 @@ statusbarpanel { .statusbarpanel-iconic { padding: 0px; -} +} resizer[dir="bottomright"] { cursor: se-resize; diff --git a/LCARStrek/global/globalBindings.xml b/LCARStrek/global/globalBindings.xml index e8234612..4fdab86f 100755 --- a/LCARStrek/global/globalBindings.xml +++ b/LCARStrek/global/globalBindings.xml @@ -19,6 +19,26 @@ + + + + + + + + + + + + + + + + + + + diff --git a/LCARStrek/global/menu.css b/LCARStrek/global/menu.css index 767d78fe..5e105a3e 100644 --- a/LCARStrek/global/menu.css +++ b/LCARStrek/global/menu.css @@ -54,7 +54,7 @@ menuitem { menuitem[default="true"] { font-weight: bold; -} +} menu[disabled="true"], menuitem[disabled="true"], @@ -65,7 +65,7 @@ menuitem[_moz-menuactive="true"][disabled="true"] { /* ..... internal content .... */ -.menu-text, +.menu-text, .menu-iconic-left, .menu-iconic-text { margin: 0px 2px 0px 0px !important; @@ -77,6 +77,12 @@ menuitem[_moz-menuactive="true"][disabled="true"] { font-weight: inherit; } +.menu-description { + font-style: italic; + color: #8050B0; + margin-left: 1ex !important; +} + .menu-accel, .menu-iconic-accel { margin: 0px 2px 0px 7px !important; @@ -214,13 +220,13 @@ menuitem[checked="true"][type="radio"][_moz-menuactive="true"] { /* ::::: menuseparator ::::: */ menuseparator { - border: 1px solid #9C9CFF; + border: 1px solid #9C9CFF; margin: 2px 0px 2px 0px; } menulist > menupopup > menuseparator, .menulist-menupopup > menuseparator { - border: 1px solid #9C9CFF; + border: 1px solid #9C9CFF; margin: 2px 0px 2px 0px; } diff --git a/LCARStrek/global/menulist.css b/LCARStrek/global/menulist.css index b69677e4..0742b2c8 100644 --- a/LCARStrek/global/menulist.css +++ b/LCARStrek/global/menulist.css @@ -83,6 +83,12 @@ menulist[open="true"]:focus > .menulist-label-box { margin: 1px 3px !important; } +.menulist-description { + font-style: italic; + color: #8050B0; + margin-left: 1ex !important; +} + /* ..... dropmarker ..... */ .menulist-dropmarker { @@ -143,7 +149,7 @@ menulist[disabled="true"] { .menulist-editable-box { background-color: #000000; - padding: 2px; + padding: 2px; } html|*.menulist-editable-input { @@ -167,7 +173,7 @@ html|*.menulist-editable-input { .menulist-compact > .menulist-label { margin: 0 3px !important; text-align: right; -} +} .menulist-compact[open="true"] { border: 1px solid #FFCF00; diff --git a/LCARStrek/global/plugins.css b/LCARStrek/global/plugins.css new file mode 100644 index 00000000..99f70f76 --- /dev/null +++ b/LCARStrek/global/plugins.css @@ -0,0 +1,158 @@ +/* ***** 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 mozilla.org code. + * + * The Initial Developer of the Original Code is + * the Mozilla Organization. + * Portions created by the Initial Developer are Copyright (C) 1998-2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Robert Kaiser + * + * 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 ***** */ + +/* ===== plugins.css ===================================================== + == Styles used by the about:plugins dialog. + ======================================================================= */ + +body { + background-color: #000000; + color: #FF9F00; + font: 12px helvetica,arial,tahoma,sans-serif; +} + +a:link, a:visited, a:active { + -moz-border-radius: 3px; + color: #FFCF00; + background-color: #000000; + text-decoration: none; +} + +a:hover { + color: #000000; + background-color: #FFCF00; +} + +hr { + display: none; +} + +div#outside { + text-align: justify; + width: 90%; + margin-left: 5%; + margin-right: 5%; +} + +div#plugs { + -moz-border-radius: 15px; + background-color: #008484; + color: #000000; + padding: 3px; + text-align: center; + font-size: 24px; + font-weight: bold; +} + +div#noplugs { + color: #FF0000; + font-size: 18px; + font-weight: bold; +} + +div#findmore { + margin-top: 2em; +} + +div.plugname { + -moz-border-radius: 10px; + background-color: #E7ADE7; + color: #000000; + padding: 2px; + padding-left: 12px; + margin-top: 2em; + margin-bottom: 1em; + font-size: 16px; + text-align: left; + font-weight: bold; +} + +dl { + margin: 0px 0px 3px 0px; +} + +span.label { + font-style: italic; + color: #8050B0; +} + +table { + background-color: #000000; + color: #E7ADE7; + text-align: left; + width: 100%; + -moz-border-radius: 10px; + border: 1px solid #9C9FFF; + border-spacing: 0px; +} + +th { + text-align: center; + background-color: #008484; + color: #FFCF00; +} + +th + th, +td + td { + border-left: 1px dotted #9C9FFF; +} + +td { + text-align: left; + border-top: 1px dotted #9C9FFF; +} + +th, td { + padding: 3px; +} + +th.type { + -moz-border-radius: 9px 0px 0px 0px; +} + +th.type, th.suff { + width: 20%; +} + +th.desc { + width: 50%; +} + +th.enabled { + width: 10%; + -moz-border-radius: 0px 9px 0px 0px; +} \ No newline at end of file diff --git a/LCARStrek/global/popup.css b/LCARStrek/global/popup.css index 8063cb68..fe402a05 100644 --- a/LCARStrek/global/popup.css +++ b/LCARStrek/global/popup.css @@ -56,7 +56,7 @@ tooltip { background-color: #9C9CFF; border: 1px solid #FFCF00; color: #000000; - font: smaller; + font-size: smaller; padding: 2px; max-width: 40em; } diff --git a/LCARStrek/global/progressmeter.css b/LCARStrek/global/progressmeter.css index 7b74d97a..1815f956 100644 --- a/LCARStrek/global/progressmeter.css +++ b/LCARStrek/global/progressmeter.css @@ -67,7 +67,9 @@ progressmeter[mode="undetermined"] { } /* ::::: statusbar progressmeter ::::: */ + .progressmeter-statusbar { margin: 0px 2px 0px 2px; min-width: 100px; + height: 16px; } diff --git a/LCARStrek/global/radio.css b/LCARStrek/global/radio.css index 395fbcdb..d030ce24 100644 --- a/LCARStrek/global/radio.css +++ b/LCARStrek/global/radio.css @@ -44,18 +44,28 @@ /* ::::: radio ::::: */ radio { - -moz-box-align: center; margin: 1px 2px; - padding: 1px; + border-left: 1px transparent; + border-right: 1px transparent; +} + +.radio-spacer-box { + -moz-box-align: center; + border-right: 4px solid transparent; + border-top: 1px; + border-bottom: 1px; +} + +.radio-label-center-box { + -moz-box-align: center; } .radio-label-box { border: 1px solid transparent; - padding: 0px 0px 1px 1px; -moz-box-align: center; } -.radio-icon { +.radio-icon[src] { margin-right: 2px; } @@ -65,13 +75,13 @@ radio { /* ..... focused state ..... */ -radio[focused="true"] > .radio-label-box { +radio[focused="true"] > .radio-label-center-box > .radio-label-box { border: 1px dotted #008484; } /* ..... disabled state ..... */ -radio[disabled="true"] { +radio[disabled="true"] > .radio-spacer-box > .radio-check-box1 { color: #8050B0; } @@ -80,7 +90,6 @@ radio[disabled="true"] { .radio-check-box1 { /* -moz-box-align: center; -moz-box-pack: center; */ - margin: 1px 0px; border: 1px solid #FF9F00; -moz-border-radius: 50%; width: 10px; @@ -94,28 +103,28 @@ radio[disabled="true"] { width: 8px; height: 8px; list-style-image: none; -} +} -radio:hover > .radio-check-box1, -radio:hover:active > .radio-check-box1 { +radio:hover > .radio-spacer-box > .radio-check-box1, +radio:hover:active > .radio-spacer-box > .radio-check-box1 { border: 1px solid #FFCF00; } -radio:hover > .radio-label-box, -radio:hover:active > .radio-label-box { +radio:hover > .radio-label-center-box > .radio-label-box, +radio:hover:active > .radio-label-center-box > .radio-label-box { color: #FFCF00; } -radio[disabled="true"] > .radio-check-box1 { +radio[disabled="true"] > .radio-spacer-box > .radio-check-box1 { border: 1px solid #8050B0 !important; } /* ..... selected state ..... */ -radio[selected="true"] > .radio-check-box1 > .radio-check-box2 { +radio[selected="true"] > .radio-spacer-box > .radio-check-box1 > .radio-check-box2 { list-style-image: url("chrome://global/skin/radio/radio-check.gif"); } - -radio[selected="true"][disabled="true"] > .radio-check-box2 { + +radio[selected="true"][disabled="true"] > .radio-spacer-box > .radio-check-box1 > .radio-check-box2 { list-style-image: url("chrome://global/skin/radio/radio-check-disabled.gif") !important } diff --git a/LCARStrek/global/scrollbars.css b/LCARStrek/global/scrollbars.css index 530f0dfc..7df7d7a8 100644 --- a/LCARStrek/global/scrollbars.css +++ b/LCARStrek/global/scrollbars.css @@ -107,11 +107,13 @@ scrollbarbutton { scrollbarbutton:hover:active { padding: 2px 0px 0px 2px; -} +} /* ::::: square at the corner of two scrollbars ::::: */ scrollcorner { + -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar-base"); + cursor: default; background-color: #000000; } @@ -184,7 +186,7 @@ scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"][disabled="true" background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar; } - html|div scrollbar[orient="vertical"] + html|div scrollbar[orient="vertical"] { -moz-appearance: scrollbartrack-vertical; } diff --git a/LCARStrek/global/tree.css b/LCARStrek/global/tree.css index 6c43d0f8..60e09442 100644 --- a/LCARStrek/global/tree.css +++ b/LCARStrek/global/tree.css @@ -20,7 +20,7 @@ * * Contributor(s): * Robert Kaiser - * Joe Hewitt (hewitt@netscape.com) + * Joe Hewitt (hewitt@netscape.com) * Dean Tessman (dean_tessman@hotmail.com) * * Alternatively, the contents of this file may be used under the terms of @@ -47,7 +47,7 @@ tree { -moz-border-radius: 5px; - border-spacing: 0px; + border-spacing: 0px; border: 1px solid #9C9CFF; background-color: #000000; color: #FF9F00; @@ -159,7 +159,9 @@ treechildren::-moz-tree-line(selected) { /* ::::: tree separator ::::: */ treechildren::-moz-tree-separator { + margin-top: 1px; border: 1px solid #9C9CFF; + height: 2px; } /* ::::: drop feedback ::::: */ @@ -181,6 +183,16 @@ treechildren::-moz-tree-drop-feedback(selected) { background-color: #FFCF00; } +/* ::::: tree checkbox ::::: */ + +treechildren::-moz-tree-checkbox { + list-style-image: url("chrome://global/skin/tree/checkbox.gif"); +} + +treechildren::-moz-tree-checkbox(checked) { + list-style-image: url("chrome://global/skin/tree/checkbox-checked.gif"); +} + /* ::::: tree progress meter ::::: */ treechildren::-moz-tree-progressmeter { @@ -201,7 +213,7 @@ treechildren::-moz-tree-cell-text(progressmeter) { /* ::::: tree columns ::::: */ -treecol { +treecol { -moz-box-align: center; -moz-box-pack: center; border: 1px solid #FF9F00; @@ -210,13 +222,13 @@ treecol { padding: 1px 4px; } -treecolpicker { +treecolpicker { -moz-box-align: center; -moz-box-pack: center; border: 1px solid transparent; background-color: #000000; padding: 1px 0px; -} +} .treecol-image { padding: 1px; @@ -238,7 +250,7 @@ treecol:hover:active { border: 1px solid #FFCF00; padding: 2px 3px 0px 5px; } - + treecolpicker:hover { background-color: #FFCF00; } @@ -280,6 +292,7 @@ treechildren::-moz-tree-column(insertafter) { .treecol-sortdirection { list-style-image: none; + width: 8px; /* The image's width is 7 pixels */ } .sortDirectionIndicator[sortDirection="ascending"] .treecol-sortdirection { @@ -309,7 +322,7 @@ treechildren::-moz-tree-twisty { width: 11px; /* The image's width is 11 pixels */ list-style-image: url("chrome://global/skin/tree/twisty-closed.gif"); } - + treechildren::-moz-tree-twisty(open) { width: 11px; /* The image's width is 11 pixels */ list-style-image: url("chrome://global/skin/tree/twisty-open.gif"); @@ -329,3 +342,17 @@ treechildren.gridlines::-moz-tree-cell { treechildren.gridlines::-moz-tree-row { border: none; } + +/* ::::: alternating background ::::: */ + +treechildren[alternatingbackground="true"]::-moz-tree-row(odd) { + background-color: #6000CF; +} + +treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected) { + background-color: #E7ADE7; +} + +treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected, focus) { + background-color: #E7ADE7; +} diff --git a/LCARStrek/global/tree/checkbox-checked.gif b/LCARStrek/global/tree/checkbox-checked.gif new file mode 100644 index 0000000000000000000000000000000000000000..883235f9bcdb754163cfdf625e13e838903fdfaf GIT binary patch literal 67 zcmZ?wbhEHb6kyh($ literal 0 HcmV?d00001 diff --git a/LCARStrek/global/tree/checkbox.gif b/LCARStrek/global/tree/checkbox.gif new file mode 100644 index 0000000000000000000000000000000000000000..1adb95a2480753ca779b47e7174d76e8995a1e54 GIT binary patch literal 59 zcmZ?wbhEHb6ky * * 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 + * 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 @@ -43,6 +43,7 @@ @import url("chrome://messenger/skin/"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); +@namespace html url("http://www.w3.org/1999/xhtml"); /* ::::: primary toolbar buttons ::::: */ @@ -53,11 +54,11 @@ #button-newcard:hover, #button-newcard:hover:active { list-style-image: url("chrome://messenger/skin/addressbook/icons/newcard-hover.gif"); -} +} #button-newcard[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/newcard-disabled.gif") !important; -} +} #button-newlist { list-style-image: url("chrome://messenger/skin/addressbook/icons/newlist.gif"); @@ -66,11 +67,11 @@ #button-newlist:hover, #button-newlist:hover:active { list-style-image: url("chrome://messenger/skin/addressbook/icons/newlist-hover.gif"); -} +} #button-newlist[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/newlist-disabled.gif") !important; -} +} #button-editcard { list-style-image:url("chrome://messenger/skin/addressbook/icons/person.gif"); @@ -79,11 +80,11 @@ #button-editcard:hover, #button-editcard:hover:active { list-style-image: url("chrome://messenger/skin/addressbook/icons/person-hover.gif"); -} +} #button-editcard[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/person-disabled.gif") !important; -} +} #button-newmessage { list-style-image:url("chrome://messenger/skin/addressbook/icons/newmsg.gif"); @@ -92,11 +93,11 @@ #button-newmessage:hover, #button-newmessage:hover:active { list-style-image: url("chrome://messenger/skin/addressbook/icons/newmsg-hover.gif"); -} +} #button-newmessage[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/newmsg-disabled.gif") !important; -} +} #button-newim { list-style-image:url("chrome://messenger/skin/addressbook/icons/im.gif"); @@ -105,11 +106,11 @@ #button-newim:hover, #button-newim:hover:active { list-style-image: url("chrome://messenger/skin/addressbook/icons/im-hover.gif"); -} +} #button-newim[disabled="true"] { list-style-image: url("chrome://messenger/skin/addressbook/icons/im-disabled.gif") !important; -} +} #button-delete { list-style-image:url("chrome://global/skin/icons/trash.gif"); @@ -118,11 +119,11 @@ #button-delete:hover, #button-delete:hover:active { list-style-image:url("chrome://global/skin/icons/trash-hover.gif"); -} +} #button-delete[disabled="true"] { list-style-image: url("chrome://global/skin/icons/trash-disabled.gif") !important; -} +} /* CardView styles - used in the Card View Pane */ @@ -151,7 +152,7 @@ min-width: 120px; margin: 0px; } - + .cardViewGroup { margin-top: 8px; padding-bottom: 5px; @@ -203,11 +204,11 @@ html|p { /* ::::: border adjustments ::::: */ -#results-splitter { +#results-splitter { border: none; } -#dirTree, #abResultsTree { +#dirTree, #abResultsTree { border: none; margin: 0px; } diff --git a/LCARStrek/messenger/folderPane.css b/LCARStrek/messenger/folderPane.css index 84e3a46c..da6a6b8a 100644 --- a/LCARStrek/messenger/folderPane.css +++ b/LCARStrek/messenger/folderPane.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -25,7 +25,7 @@ * Robert Kaiser * * 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 + * 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 @@ -142,6 +142,10 @@ treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-imap, isS list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif"); } +treechildren::-moz-tree-image(folderNameCol, biffState-NewMail, isServer-true, isSecure-true) { + list-style-image: url("chrome://messenger/skin/icons/server-remote-lock-new.gif"); +} + treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-none) { padding-right: 2px; list-style-image: url("chrome://messenger/skin/icons/server-local.gif"); diff --git a/LCARStrek/messenger/icons/server-remote-lock-new.gif b/LCARStrek/messenger/icons/server-remote-lock-new.gif new file mode 100644 index 0000000000000000000000000000000000000000..d49b703ce4ce1a452faa732b48102ba197a31f19 GIT binary patch literal 114 zcmZ?wbhEHb6kyII&+z{|gYkdkhJX$K!9ejR3nLc;JA)1b5P;M& zFq>DXuUYq$Q@v@cYOvL>6D`MjeAtB&9s9&J)-`=kJ;)UQEa33QJ8!ple{j?Z3NuS7 OOfmU1>w+^AgEatY;xA7C literal 0 HcmV?d00001 diff --git a/LCARStrek/messenger/messageBody.css b/LCARStrek/messenger/messageBody.css index 9a5e94bc..6956dfe8 100644 --- a/LCARStrek/messenger/messageBody.css +++ b/LCARStrek/messenger/messageBody.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -35,6 +35,7 @@ * * ***** END LICENSE BLOCK ***** */ +@import url("chrome://communicator/skin/smileys.css"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ===== messageBody.css ================================================ @@ -127,6 +128,11 @@ span.moz-txt-underscore { text-decoration: underline; } +span.moz-txt-formfeed { + display: block; + height: 100%; +} + /* ::::: signature ::::: */ .moz-txt-sig, @@ -138,96 +144,3 @@ span.moz-txt-underscore { .moz-signature > a { color: #7777FF; /* light blue */ } - -/* ::::: smilies ::::: */ - -span.moz-smiley-s1, -span.moz-smiley-s2, -span.moz-smiley-s3, -span.moz-smiley-s4, -span.moz-smiley-s5, -span.moz-smiley-s6, -span.moz-smiley-s7, -span.moz-smiley-s8, -span.moz-smiley-s9, -span.moz-smiley-s10, -span.moz-smiley-s11, -span.moz-smiley-s12, -span.moz-smiley-s13, -span.moz-smiley-s14, -span.moz-smiley-s15, -span.moz-smiley-s16 { - min-height: 17px; margin-left: 2px; margin-top: 2px; - padding-left: 20px; - background-repeat: no-repeat; - background-position: center center; - -moz-user-select: all; -} - -span.moz-smiley-s1 > span, -span.moz-smiley-s2 > span, -span.moz-smiley-s3 > span, -span.moz-smiley-s4 > span, -span.moz-smiley-s5 > span, -span.moz-smiley-s6 > span, -span.moz-smiley-s7 > span, -span.moz-smiley-s8 > span, -span.moz-smiley-s9 > span, -span.moz-smiley-s10 > span, -span.moz-smiley-s11 > span, -span.moz-smiley-s12 > span, -span.moz-smiley-s13 > span, -span.moz-smiley-s14 > span, -span.moz-smiley-s15 > span, -span.moz-smiley-s16 > span { - display: none; -} - -span.moz-smiley-s1 { - background-image: url(chrome://editor/content/images/smile_n.gif); -} -span.moz-smiley-s2 { - background-image: url(chrome://editor/content/images/frown_n.gif); -} -span.moz-smiley-s3 { - background-image: url(chrome://editor/content/images/wink_n.gif); -} -span.moz-smiley-s4 { - background-image: url(chrome://editor/content/images/tongue_n.gif); -} -span.moz-smiley-s5 { - background-image: url(chrome://editor/content/images/laughing_n.gif); -} -span.moz-smiley-s6 { - background-image: url(chrome://editor/content/images/embarrassed_n.gif); -} -span.moz-smiley-s7 { - background-image: url(chrome://editor/content/images/undecided_n.gif); -} -span.moz-smiley-s8 { - background-image: url("chrome://editor/content/images/surprise_n.gif"); -} -span.moz-smiley-s9 { - background-image: url("chrome://editor/content/images/kiss_n.gif"); -} -span.moz-smiley-s10 { - background-image: url("chrome://editor/content/images/yell_n.gif"); -} -span.moz-smiley-s11 { - background-image: url("chrome://editor/content/images/cool_n.gif"); -} -span.moz-smiley-s12 { - background-image: url("chrome://editor/content/images/money_n.gif"); -} -span.moz-smiley-s13 { - background-image: url("chrome://editor/content/images/foot_n.gif"); -} -span.moz-smiley-s14 { - background-image: url("chrome://editor/content/images/innocent_n.gif"); -} -span.moz-smiley-s15 { - background-image: url("chrome://editor/content/images/cry_n.gif"); -} -span.moz-smiley-s16 { - background-image: url("chrome://editor/content/images/sealed_n.gif"); -} diff --git a/LCARStrek/messenger/messageHeader.css b/LCARStrek/messenger/messageHeader.css index 6d44e5ed..a319de52 100644 --- a/LCARStrek/messenger/messageHeader.css +++ b/LCARStrek/messenger/messageHeader.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -118,7 +118,7 @@ color: #008484; cursor: pointer; margin: 0px; - padding: 0px 1px; + padding: 0px 1px; } .emailDisplayButton:hover { @@ -182,10 +182,10 @@ width: 12em; } -.collapsedHeaderDisplayName { - margin: 2px .5em 2px .8em; +.collapsedHeaderDisplayName { + margin: 2px .5em 2px .55em; min-height: 12px; - font-weight: bold; + font-weight: bold; } .collapsedHeaderValue, diff --git a/LCARStrek/messenger/smime/msgReadSecurityInfo.css b/LCARStrek/messenger/smime/msgReadSecurityInfo.css index 2eb10065..fdd23799 100644 --- a/LCARStrek/messenger/smime/msgReadSecurityInfo.css +++ b/LCARStrek/messenger/smime/msgReadSecurityInfo.css @@ -43,15 +43,6 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -#msgReadSecurityInfo { - width: 40em; - max-width: 50em; -} - -#outer_vbox { - margin: 5px; -} - #signatureLabel { font-weight: bold; } diff --git a/LCARStrek/navigator/navigator.css b/LCARStrek/navigator/navigator.css index b5f1e59d..e51fcc8c 100644 --- a/LCARStrek/navigator/navigator.css +++ b/LCARStrek/navigator/navigator.css @@ -35,7 +35,7 @@ * * ***** END LICENSE BLOCK ***** */ -/** Contains style definitions for the navigator application +/** Contains style definitions for the navigator application **/ @import url("chrome://navigator/content/navigator.css"); @@ -99,11 +99,11 @@ #stop-button:hover, #stop-button:hover:active { list-style-image: url("chrome://global/skin/icons/stop-hover.gif"); -} +} #stop-button[disabled="true"] { list-style-image: url("chrome://global/skin/icons/stop-disabled.gif") !important; -} +} #print-button { list-style-image: url("chrome://global/skin/icons/print.gif"); @@ -141,7 +141,7 @@ } #fullscreen-exit-button > .toolbarbutton-text { - display: normal; +/* display: normal; */ } /* ::::: small primary toolbar buttons ::::: */ @@ -205,7 +205,7 @@ toolbar[toolbarmode="small"] > toolbargrippy { #nav-bar-inner { padding-left: 0px; min-width: 0px; - margin: 6px 4px 7px 4px; + margin: 6px 4px 7px 4px; } #urlbar { @@ -218,7 +218,7 @@ toolbar[toolbarmode="small"] > toolbargrippy { } /* ::::: page proxy icon ::::: */ - + #page-proxy-deck, #page-proxy-favicon, #page-proxy-button { @@ -229,17 +229,17 @@ toolbar[toolbarmode="small"] > toolbargrippy { #page-proxy-deck { cursor: -moz-grab; margin: 1px 1px 1px 2px; -} +} #page-proxy-button { - list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); + list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); padding-top: 2px; padding-bottom: 2px; -} - +} + #page-proxy-favicon { list-style-image: none; -} +} /* ::::: autocomplete ::::: */ @@ -256,7 +256,7 @@ toolbar[toolbarmode="small"] > toolbargrippy { border-top: 1px solid #FF9F00; background-color: #9C9CFF; color: #000000; -} +} .autocomplete-result-popup[nomatch] > .autocomplete-search-box { border-top: 1px solid #9C9CFF; @@ -264,12 +264,12 @@ toolbar[toolbarmode="small"] > toolbargrippy { .autocomplete-search-engine { padding: 2px; -} +} .autocomplete-search-engine[menuactive="true"] { background-color: #008484; color: #FFCF00; -} +} .autocomplete-search-engine-img { margin-right: 4px; @@ -277,7 +277,7 @@ toolbar[toolbarmode="small"] > toolbargrippy { /* ::::: go and searchbuttons ::::: */ -#search-button, +#search-button, #go-button { margin: 1px 3px 1px 0px; /* min-height: 25px; */ @@ -285,7 +285,7 @@ toolbar[toolbarmode="small"] > toolbargrippy { background-color: #000000; } -#search-button:hover, +#search-button:hover, #go-button:hover { background-color: #FFCF00; } @@ -314,6 +314,10 @@ toolbar[toolbarmode="small"] > toolbargrippy { list-style-image:url("chrome://communicator/skin/icons/lock-broken.gif"); } +#privacy-button { + list-style-image: url("chrome://communicator/skin/cookie/taskbar-cookie.gif"); +} + #popupIcon { list-style-image:url("chrome://navigator/skin/icons/popup-blocked.gif"); } -- 2.35.3 From 15d3cb53e5f2f5baa6d41fed4b6920728a6bdb2e Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 8 Jul 2004 22:28:00 +0000 Subject: [PATCH 10/16] correct some colors --- LCARStrek/global/global.css | 2 +- LCARStrek/messenger/icons/dot.gif | Bin 65 -> 59 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/LCARStrek/global/global.css b/LCARStrek/global/global.css index 4b3b0d66..4eea3a8e 100644 --- a/LCARStrek/global/global.css +++ b/LCARStrek/global/global.css @@ -148,7 +148,7 @@ statusbar { .statusbar-center { background-color: #8050B0; padding-left: 2px; - color: black; + color: #000000; -moz-box-align: center; } diff --git a/LCARStrek/messenger/icons/dot.gif b/LCARStrek/messenger/icons/dot.gif index ae3d21f11c501de11110f4b8173ee6b53cc4eb7e..6cab4afef381994e7630d1052a70fae8564fe6b7 100755 GIT binary patch literal 59 zcmZ?wbhEHb6ky Date: Thu, 8 Jul 2004 22:28:42 +0000 Subject: [PATCH 11/16] only support about:plugins in new location after 1.7 release --- LCARStrek/communicator/plugins.css | 158 ----------------------------- 1 file changed, 158 deletions(-) delete mode 100644 LCARStrek/communicator/plugins.css diff --git a/LCARStrek/communicator/plugins.css b/LCARStrek/communicator/plugins.css deleted file mode 100644 index 99f70f76..00000000 --- a/LCARStrek/communicator/plugins.css +++ /dev/null @@ -1,158 +0,0 @@ -/* ***** 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 mozilla.org code. - * - * The Initial Developer of the Original Code is - * the Mozilla Organization. - * Portions created by the Initial Developer are Copyright (C) 1998-2002 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Robert Kaiser - * - * 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 ***** */ - -/* ===== plugins.css ===================================================== - == Styles used by the about:plugins dialog. - ======================================================================= */ - -body { - background-color: #000000; - color: #FF9F00; - font: 12px helvetica,arial,tahoma,sans-serif; -} - -a:link, a:visited, a:active { - -moz-border-radius: 3px; - color: #FFCF00; - background-color: #000000; - text-decoration: none; -} - -a:hover { - color: #000000; - background-color: #FFCF00; -} - -hr { - display: none; -} - -div#outside { - text-align: justify; - width: 90%; - margin-left: 5%; - margin-right: 5%; -} - -div#plugs { - -moz-border-radius: 15px; - background-color: #008484; - color: #000000; - padding: 3px; - text-align: center; - font-size: 24px; - font-weight: bold; -} - -div#noplugs { - color: #FF0000; - font-size: 18px; - font-weight: bold; -} - -div#findmore { - margin-top: 2em; -} - -div.plugname { - -moz-border-radius: 10px; - background-color: #E7ADE7; - color: #000000; - padding: 2px; - padding-left: 12px; - margin-top: 2em; - margin-bottom: 1em; - font-size: 16px; - text-align: left; - font-weight: bold; -} - -dl { - margin: 0px 0px 3px 0px; -} - -span.label { - font-style: italic; - color: #8050B0; -} - -table { - background-color: #000000; - color: #E7ADE7; - text-align: left; - width: 100%; - -moz-border-radius: 10px; - border: 1px solid #9C9FFF; - border-spacing: 0px; -} - -th { - text-align: center; - background-color: #008484; - color: #FFCF00; -} - -th + th, -td + td { - border-left: 1px dotted #9C9FFF; -} - -td { - text-align: left; - border-top: 1px dotted #9C9FFF; -} - -th, td { - padding: 3px; -} - -th.type { - -moz-border-radius: 9px 0px 0px 0px; -} - -th.type, th.suff { - width: 20%; -} - -th.desc { - width: 50%; -} - -th.enabled { - width: 10%; - -moz-border-radius: 0px 9px 0px 0px; -} \ No newline at end of file -- 2.35.3 From 30ca92d0a8e9144849a95fce7aacb36190280b65 Mon Sep 17 00:00:00 2001 From: robert Date: Sat, 17 Jul 2004 12:35:15 +0000 Subject: [PATCH 12/16] forgot this change to radio --- EarlyBlue/global/progressmeter.css | 1 + EarlyBlue/global/radio.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/EarlyBlue/global/progressmeter.css b/EarlyBlue/global/progressmeter.css index c3aa1ad7..8e529004 100644 --- a/EarlyBlue/global/progressmeter.css +++ b/EarlyBlue/global/progressmeter.css @@ -67,6 +67,7 @@ progressmeter[mode="undetermined"] { } /* ::::: statusbar progressmeter ::::: */ + .progressmeter-statusbar { margin: 0px 2px 0px 2px; border: 1px solid #CCD0DD; diff --git a/EarlyBlue/global/radio.css b/EarlyBlue/global/radio.css index 83d476b4..97aa0d38 100644 --- a/EarlyBlue/global/radio.css +++ b/EarlyBlue/global/radio.css @@ -104,7 +104,7 @@ radio[disabled="true"] > .radio-spacer-box > .radio-check-box1 { list-style-image: none; } -radio:hover:active > .radio-check-box1 { +radio:hover:active > .radio-spacer-box > .radio-check-box1 { border: 2px inset #CCD0DD; } -- 2.35.3 From caf7fc110fe23265fa8401a3c5d0ff4849604a0f Mon Sep 17 00:00:00 2001 From: robert Date: Sun, 21 Nov 2004 00:59:42 +0000 Subject: [PATCH 13/16] sync with Classic in preparation for a 1.8a release --- EarlyBlue/communicator/brand.css | 2 + EarlyBlue/communicator/search/search.css | 6 +- EarlyBlue/global/button.css | 7 +- EarlyBlue/global/dialog.css | 4 +- EarlyBlue/global/filepicker.css | 10 ++- EarlyBlue/global/global.css | 6 ++ EarlyBlue/global/tabbox.css | 7 +- EarlyBlue/messenger/messageHeader.css | 5 ++ EarlyBlue/messenger/start.css | 79 +++++++++++++++++++ EarlyBlue/messenger/subscribe.css | 14 +++- .../messenger/virtualFolderListDialog.css | 16 ++++ 11 files changed, 141 insertions(+), 15 deletions(-) create mode 100644 EarlyBlue/messenger/start.css create mode 100644 EarlyBlue/messenger/virtualFolderListDialog.css diff --git a/EarlyBlue/communicator/brand.css b/EarlyBlue/communicator/brand.css index 3a8de569..c666929a 100644 --- a/EarlyBlue/communicator/brand.css +++ b/EarlyBlue/communicator/brand.css @@ -61,6 +61,7 @@ border: 1px inset #CCD0DD; } +window[chromehidden~="toolbar"] #navigator-throbber, #navigator-throbber[buttonstyle="text"], #navigator-throbber[buttonstyle="pictures"], #navigator-throbber[toolbarmode="small"] { @@ -68,6 +69,7 @@ list-style-image: url("chrome://communicator/skin/brand/throbber16-single.gif"); } +window[chromehidden~="toolbar"] #navigator-throbber[busy="true"], #navigator-throbber[buttonstyle="text"][busy="true"], #navigator-throbber[buttonstyle="pictures"][busy="true"], #navigator-throbber[toolbarmode="small"][busy="true"] { diff --git a/EarlyBlue/communicator/search/search.css b/EarlyBlue/communicator/search/search.css index 725ddada..11cf1630 100644 --- a/EarlyBlue/communicator/search/search.css +++ b/EarlyBlue/communicator/search/search.css @@ -19,7 +19,7 @@ * the Initial Developer. All Rights Reserved. * * Contributor(s): - * Joe Hewitt + * Joe Hewitt * Robert Kaiser * * Alternatively, the contents of this file may be used under the terms of @@ -42,10 +42,6 @@ == Styles specific to the Search sidebar panel. ======================================================================= */ -#stopButton { - list-style-image: url("chrome://communicator/skin/icons/loading.gif"); -} - /* :::: undo regular search listbox selection look :::: */ .searchresult-item[selected="true"] { diff --git a/EarlyBlue/global/button.css b/EarlyBlue/global/button.css index 6998d6cd..75ed8e30 100644 --- a/EarlyBlue/global/button.css +++ b/EarlyBlue/global/button.css @@ -57,7 +57,7 @@ button { border: 1px solid transparent; padding: 0px 3px 1px 2px; } - + .button-text { margin: 0px !important; text-align: center; @@ -97,12 +97,13 @@ button[checked="true"] { button:hover:active > .button-box, button[open="true"] > .button-box, button[checked="true"] > .button-box { - padding: 1px 2px 0px 3px; + padding: 1px 2px 0px 3px; } /* .......... disabled state .......... */ -button[disabled="true"] { +button[disabled="true"], +button[disabled="true"]:hover:active { border: 1px outset #CCD0DD; color: #999999; } diff --git a/EarlyBlue/global/dialog.css b/EarlyBlue/global/dialog.css index 6a43a16c..cddd89fe 100644 --- a/EarlyBlue/global/dialog.css +++ b/EarlyBlue/global/dialog.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1999 * the Initial Developer. All Rights Reserved. @@ -45,7 +45,7 @@ /* ::::: dialog ::::: */ -dialog { +dialog { padding: 8px 10px 10px 8px; } diff --git a/EarlyBlue/global/filepicker.css b/EarlyBlue/global/filepicker.css index 5289ca3a..558fffc7 100644 --- a/EarlyBlue/global/filepicker.css +++ b/EarlyBlue/global/filepicker.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998-1999 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -67,15 +67,21 @@ treechildren::-moz-tree-image(FilenameColumn, file) { .up-button { list-style-image: url("chrome://global/skin/filepicker/folder-up.gif"); + min-width: 0%; /* don't let XUL layout min-size override our max-width setting */ + min-height: 0%; max-width: 28px; } .home-button { list-style-image: url("chrome://global/skin/filepicker/folder-home.gif"); + min-width: 0%; /* don't let XUL layout min-size override our max-width setting */ + min-height: 0%; max-width: 28px; } .new-dir-button { list-style-image: url("chrome://global/skin/filepicker/folder-new.gif"); + min-width: 0%; /* don't let XUL layout min-size override our max-width setting */ + min-height: 0%; max-width: 28px; } diff --git a/EarlyBlue/global/global.css b/EarlyBlue/global/global.css index 92f613f6..837d4df9 100644 --- a/EarlyBlue/global/global.css +++ b/EarlyBlue/global/global.css @@ -65,6 +65,12 @@ menulist > menupopup, -moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-compact"); } +/* +progressmeter[mode="undetermined"] { + -moz-binding: url("chrome://global/content/bindings/progressmeter.xml#progressmeter-undetermined"); +} +*/ + /* ::::: root elements ::::: */ window, diff --git a/EarlyBlue/global/tabbox.css b/EarlyBlue/global/tabbox.css index ee41d8fc..7ed7b55e 100644 --- a/EarlyBlue/global/tabbox.css +++ b/EarlyBlue/global/tabbox.css @@ -78,7 +78,8 @@ tab { margin: 0 !important; } -tab[selected="true"] { +tab[selected="true"] { + -moz-user-focus: normal; font-weight: bold; background-color: #EDF1FF; } @@ -87,6 +88,10 @@ tab:hover { color: #336699; } +tab:focus > .tab-middle { + -moz-outline: 1px dotted invert; +} + /* tab[first-tab="true"][selected="true"] { padding-right: 5px; diff --git a/EarlyBlue/messenger/messageHeader.css b/EarlyBlue/messenger/messageHeader.css index 10d901f7..f218ec0a 100644 --- a/EarlyBlue/messenger/messageHeader.css +++ b/EarlyBlue/messenger/messageHeader.css @@ -161,6 +161,10 @@ text-align: right; } +#collapseddateValue > .textbox-input-box menupopup { + text-align: left; +} + #collapsedfromBox { width: 18em; } @@ -176,6 +180,7 @@ } .collapsedHeaderValue { + background: transparent; margin: 0; } diff --git a/EarlyBlue/messenger/start.css b/EarlyBlue/messenger/start.css new file mode 100644 index 00000000..d9083a86 --- /dev/null +++ b/EarlyBlue/messenger/start.css @@ -0,0 +1,79 @@ +/* ***** 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 mozilla.org code. + * + * The Initial Developer of the Original Code is + * the Mozilla Organization. + * Portions created by the Initial Developer are Copyright (C) 1998-2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Robert Kaiser + * + * 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 ***** */ + +/* ===== start.css ===================================================== + == Styles used by the mailnews start page. + ======================================================================= */ + +body { + margin: 0; + padding: 0; +} + +a:link, a:visited, a:active { + color: #336699; + text-decoration: underline; +} + +h1 { + color: #FFFFFF; + background-color: #9999CC; + border-bottom: 1px solid #CCD0DD; + font-size: 1.5em; + font-weight: normal; + padding: 0.25em 0.75em; /* 0.75*1.5=1, so fit with 1em below */ + margin: 0; +} + +div#main { + margin: 0 1em; +} + +p { + margin: 0.5em 0; +} + +h2 { + font-size: 1.2em; + font-weight: bold; + margin: 0.5em 0; +} + +ul { + margin: 0.5em 0; +} + diff --git a/EarlyBlue/messenger/subscribe.css b/EarlyBlue/messenger/subscribe.css index df6ec9dc..44f79a08 100644 --- a/EarlyBlue/messenger/subscribe.css +++ b/EarlyBlue/messenger/subscribe.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -47,6 +47,7 @@ #subscribetree { margin: 0px 0px 0px 0px !important; + border-bottom: 0px; } /* ::::: subscribed icons :::::: */ @@ -100,3 +101,12 @@ treechildren::-moz-tree-image(nameColumn2, nntp) { .subscribeMenuItem[ServerType="nntp"][IsSecure="true"] { list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif"); } + +/* ::::: statusbar adjustments :::::: */ + +#statusContainerBox { + border: 1px inset #CCD0DD; + border-top: 1px solid #9999CC; + background-color: #666699; + color: #CCD0DD; +} diff --git a/EarlyBlue/messenger/virtualFolderListDialog.css b/EarlyBlue/messenger/virtualFolderListDialog.css new file mode 100644 index 00000000..1eacf145 --- /dev/null +++ b/EarlyBlue/messenger/virtualFolderListDialog.css @@ -0,0 +1,16 @@ +/* ===== virtualFolderListDialog.css ================================================== + == Styles for the virtual folder list dialog. + ======================================================================= */ + +@import url("chrome://messenger/skin/mailWindow1.css"); + +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); + +treechildren::-moz-tree-image(selectedColumn) { + margin-right: 2px; + list-style-image: url("chrome://messenger/skin/icons/dot.gif"); +} + +treechildren::-moz-tree-image(selectedColumn, inVFEditSearchScope-true) { + list-style-image: url("chrome://messenger/skin/icons/check.gif"); +} -- 2.35.3 From 0d8920693c7adf75e9a58be6b3714ca67a722a31 Mon Sep 17 00:00:00 2001 From: robert Date: Fri, 26 Nov 2004 01:18:48 +0000 Subject: [PATCH 14/16] prepare for 1.8a release --- EarlyBlue/contents.rdf | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/EarlyBlue/contents.rdf b/EarlyBlue/contents.rdf index a19e844a..49adf393 100644 --- a/EarlyBlue/contents.rdf +++ b/EarlyBlue/contents.rdf @@ -5,42 +5,42 @@ - + - - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + - - - + + + -- 2.35.3 From 3a1215023d99867400955dbdef14b6986c4facae Mon Sep 17 00:00:00 2001 From: robert Date: Fri, 26 Nov 2004 01:20:27 +0000 Subject: [PATCH 15/16] sync with EarlyBlue and Classic, prepare for 1.8a release --- LCARStrek/communicator/brand.css | 2 + LCARStrek/communicator/search/search.css | 6 +- LCARStrek/contents.rdf | 44 +++++------ LCARStrek/editor/editorPrimaryToolbar.css | 31 ++++---- LCARStrek/global/button.css | 9 ++- LCARStrek/global/dialog.css | 4 +- LCARStrek/global/filepicker.css | 10 ++- LCARStrek/global/global.css | 6 ++ LCARStrek/global/tabbox.css | 13 ++- LCARStrek/messenger/messageHeader.css | 5 ++ .../messengercompose/messengercompose.css | 40 +++++----- LCARStrek/messenger/primaryToolbar.css | 34 ++++---- .../messenger/smime/msgCompSMIMEOverlay.css | 7 +- LCARStrek/messenger/start.css | 79 +++++++++++++++++++ LCARStrek/messenger/subscribe.css | 14 +++- .../messenger/virtualFolderListDialog.css | 16 ++++ 16 files changed, 221 insertions(+), 99 deletions(-) create mode 100644 LCARStrek/messenger/start.css create mode 100644 LCARStrek/messenger/virtualFolderListDialog.css diff --git a/LCARStrek/communicator/brand.css b/LCARStrek/communicator/brand.css index 75a2e2e5..aa9d9d0e 100644 --- a/LCARStrek/communicator/brand.css +++ b/LCARStrek/communicator/brand.css @@ -53,6 +53,7 @@ list-style-image: url("chrome://communicator/skin/brand/throbber-anim.gif"); } +window[chromehidden~="toolbar"] #navigator-throbber, #navigator-throbber[buttonstyle="text"], #navigator-throbber[buttonstyle="pictures"], #navigator-throbber[toolbarmode="small"] { @@ -61,6 +62,7 @@ list-style-image: url("chrome://communicator/skin/brand/throbber16-single.gif"); } +window[chromehidden~="toolbar"] #navigator-throbber[busy="true"], #navigator-throbber[buttonstyle="text"][busy="true"], #navigator-throbber[buttonstyle="pictures"][busy="true"], #navigator-throbber[toolbarmode="small"][busy="true"] { diff --git a/LCARStrek/communicator/search/search.css b/LCARStrek/communicator/search/search.css index 725ddada..11cf1630 100644 --- a/LCARStrek/communicator/search/search.css +++ b/LCARStrek/communicator/search/search.css @@ -19,7 +19,7 @@ * the Initial Developer. All Rights Reserved. * * Contributor(s): - * Joe Hewitt + * Joe Hewitt * Robert Kaiser * * Alternatively, the contents of this file may be used under the terms of @@ -42,10 +42,6 @@ == Styles specific to the Search sidebar panel. ======================================================================= */ -#stopButton { - list-style-image: url("chrome://communicator/skin/icons/loading.gif"); -} - /* :::: undo regular search listbox selection look :::: */ .searchresult-item[selected="true"] { diff --git a/LCARStrek/contents.rdf b/LCARStrek/contents.rdf index 9b01bc03..0778e205 100644 --- a/LCARStrek/contents.rdf +++ b/LCARStrek/contents.rdf @@ -5,42 +5,42 @@ - + - - - - - - - - - - - + + + + + + + + + + - - - - - + + + + + - - - + + + diff --git a/LCARStrek/editor/editorPrimaryToolbar.css b/LCARStrek/editor/editorPrimaryToolbar.css index 7fd8996e..c840cbca 100644 --- a/LCARStrek/editor/editorPrimaryToolbar.css +++ b/LCARStrek/editor/editorPrimaryToolbar.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -85,7 +85,7 @@ #saveButton[dirty="true"]:hover, #saveButton[dirty="true"]:hover:active { list-style-image: url("chrome://editor/skin/icons/savefile-hover.gif"); -} +} #saveButton[dirty="true"][disabled="true"] { list-style-image: url("chrome://editor/skin/icons/savefile-disabled.gif") !important; @@ -98,7 +98,7 @@ #publishButton:hover, #publishButton:hover:active { list-style-image: url("chrome://editor/skin/icons/publish-hover.gif"); -} +} #publishButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/publish-disabled.gif") !important; @@ -106,12 +106,12 @@ #previewButton { list-style-image: url("chrome://editor/skin/icons/preview.gif"); -} +} #previewButton:hover, #previewButton:hover:active { list-style-image: url("chrome://editor/skin/icons/preview-hover.gif"); -} +} #previewButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/preview-disabled.gif") !important; @@ -122,11 +122,10 @@ } #printButton:hover, -#printButton[buttonover="true"], -#printButton[buttondown="true"], +#printButton:hover:active, #printButton[open="true"] { list-style-image: url("chrome://global/skin/icons/print-hover.gif"); -} +} #printButton[disabled="true"] { list-style-image: url("chrome://global/skin/icons/print-disabled.gif") !important; @@ -140,7 +139,7 @@ #findButton:hover, #findButton:hover:active { list-style-image: url("chrome://editor/skin/icons/find-hover.gif"); -} +} #findButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/find-disabled.gif") !important; @@ -154,7 +153,7 @@ #linkButton:hover, #linkButton:hover:active { list-style-image: url("chrome://editor/skin/icons/link-hover.gif"); -} +} #linkButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/link-disabled.gif") !important; @@ -193,7 +192,7 @@ #hlineButton:hover, #hlineButton:hover:active { list-style-image: url("chrome://editor/skin/icons/hline-hover.gif"); -} +} #hlineButton[disabled="true"] { list-style-image: url("chrome://editor/skin/icons/hline-disabled.gif") !important; @@ -214,8 +213,8 @@ #spellingButton { list-style-image: url("chrome://editor/skin/icons/spell.gif"); -} - +} + #spellingButton:hover, #spellingButton:hover:active { list-style-image: url("chrome://editor/skin/icons/spell-hover.gif"); @@ -281,8 +280,8 @@ list-style-image: url("chrome://editor/skin/icons/form.gif"); } -#formButton[buttonover="true"], -#formButton[buttondown="true"] { +#formButton:hover, +#formButton:hover:active { list-style-image: url("chrome://editor/skin/icons/form-hover.gif"); } diff --git a/LCARStrek/global/button.css b/LCARStrek/global/button.css index 3e364c65..137ebf52 100644 --- a/LCARStrek/global/button.css +++ b/LCARStrek/global/button.css @@ -52,10 +52,10 @@ button { background-color: #000000; color: #FFCF00; } - + .button-box { -moz-border-radius: 3px; - border: 1px solid transparent; + border: 1px solid transparent; padding: 1px 4px 2px 3px; } @@ -117,12 +117,13 @@ button[checked="true"] { button:hover:active > .button-box, button[open="true"] > .button-box, button[checked="true"] > .button-box { - padding: 2px 3px 1px 4px; + padding: 2px 3px 1px 4px; } /* .......... disabled state .......... */ -button[disabled="true"] { +button[disabled="true"], +button[disabled="true"]:hover:active { border: none; background-color: #000000 !important; color: #8050B0 !important; diff --git a/LCARStrek/global/dialog.css b/LCARStrek/global/dialog.css index 219d0ea2..2d0c5d1b 100644 --- a/LCARStrek/global/dialog.css +++ b/LCARStrek/global/dialog.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1999 * the Initial Developer. All Rights Reserved. @@ -45,7 +45,7 @@ /* ::::: dialog ::::: */ -dialog { +dialog { padding: 8px 10px 10px 8px; } diff --git a/LCARStrek/global/filepicker.css b/LCARStrek/global/filepicker.css index 23fcb297..8e453a80 100644 --- a/LCARStrek/global/filepicker.css +++ b/LCARStrek/global/filepicker.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -67,6 +67,8 @@ treechildren::-moz-tree-image(FilenameColumn, file) { .up-button { list-style-image: url("chrome://global/skin/filepicker/folder-up.gif"); + min-width: 0%; /* don't let XUL layout min-size override our max-width setting */ + min-height: 0%; max-width: 26px; } @@ -76,6 +78,8 @@ treechildren::-moz-tree-image(FilenameColumn, file) { .home-button { list-style-image: url("chrome://global/skin/filepicker/folder-home.gif"); + min-width: 0%; /* don't let XUL layout min-size override our max-width setting */ + min-height: 0%; max-width: 26px; } @@ -85,6 +89,8 @@ treechildren::-moz-tree-image(FilenameColumn, file) { .new-dir-button { list-style-image: url("chrome://global/skin/filepicker/folder-new.gif"); + min-width: 0%; /* don't let XUL layout min-size override our max-width setting */ + min-height: 0%; max-width: 28px; } diff --git a/LCARStrek/global/global.css b/LCARStrek/global/global.css index 4eea3a8e..895e5802 100644 --- a/LCARStrek/global/global.css +++ b/LCARStrek/global/global.css @@ -79,6 +79,12 @@ menubar { -moz-binding: url("chrome://global/skin/globalBindings.xml#menubar"); } +/* +progressmeter[mode="undetermined"] { + -moz-binding: url("chrome://global/content/bindings/progressmeter.xml#progressmeter-undetermined"); +} +*/ + /* ::::: root elements ::::: */ window, diff --git a/LCARStrek/global/tabbox.css b/LCARStrek/global/tabbox.css index 5557fd32..b642b549 100644 --- a/LCARStrek/global/tabbox.css +++ b/LCARStrek/global/tabbox.css @@ -73,28 +73,33 @@ tab { border-bottom: none; padding: 1px 4px 2px 4px; background-color: #000000; - color: #FF9F00; + color: #FF9F00; } .tab-text { margin: 0 !important; } -tab[selected="true"] { +tab[selected="true"] { + -moz-user-focus: normal; font-weight: bold; background-color: #008484; } -tab:hover { +tab:hover { background-color: #FFCF00; color: #000000; text-decoration: underline; } -tab:hover:active { +tab:hover:active { text-decoration: none; } +tab:focus > .tab-middle { + -moz-outline: 1px dotted invert; +} + /* tab[first-tab="true"][selected="true"] { padding-right: 5px; diff --git a/LCARStrek/messenger/messageHeader.css b/LCARStrek/messenger/messageHeader.css index a319de52..24f29903 100644 --- a/LCARStrek/messenger/messageHeader.css +++ b/LCARStrek/messenger/messageHeader.css @@ -174,6 +174,10 @@ background-color: transparent; } +#collapseddateValue > .textbox-input-box menupopup { + text-align: left; +} + #collapsedfromBox { width: 18em; } @@ -190,6 +194,7 @@ .collapsedHeaderValue, #collapsedfromValue { + background: transparent; margin: 2px 0px !important; } diff --git a/LCARStrek/messenger/messengercompose/messengercompose.css b/LCARStrek/messenger/messengercompose/messengercompose.css index 9b6a212d..0ec6aedc 100644 --- a/LCARStrek/messenger/messengercompose/messengercompose.css +++ b/LCARStrek/messenger/messengercompose/messengercompose.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -23,7 +23,7 @@ * Robert Kaiser * * 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 + * 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 @@ -45,7 +45,7 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: primary toolbar buttons ::::: */ - + #button-send { list-style-image: url("chrome://messenger/skin/messengercompose/send.gif"); } @@ -53,11 +53,11 @@ #button-send:hover, #button-send:hover:active { list-style-image: url("chrome://messenger/skin/messengercompose/send-hover.gif"); -} +} #button-send[disabled="true"] { list-style-image: url("chrome://messenger/skin/messengercompose/send-disabled.gif") !important; -} +} #button-send[offline="true"] { list-style-image: url("chrome://messenger/skin/messengercompose/sendlater.gif"); @@ -79,24 +79,24 @@ #button-address:hover, #button-address:hover:active { list-style-image: url("chrome://messenger/skin/messengercompose/address-hover.gif"); -} +} #button-address[disabled="true"] { list-style-image: url("chrome://messenger/skin/messengercompose/address-disabled.gif") !important; -} +} #button-attach { list-style-image: url("chrome://messenger/skin/messengercompose/attach.gif"); } -#button-attach[buttonover="true"], -#button-attach[buttondown="true"] { +#button-attach:hover, +#button-attach:hover:active { list-style-image: url("chrome://messenger/skin/messengercompose/attach-hover.gif"); -} +} #button-attach[disabled="true"] { list-style-image: url("chrome://messenger/skin/messengercompose/attach-disabled.gif") !important; -} +} #button-quote { list-style-image: url("chrome://messenger/skin/messengercompose/quote.gif"); @@ -105,11 +105,11 @@ #button-quote:hover, #button-quote:hover:active { list-style-image: url("chrome://messenger/skin/messengercompose/quote-hover.gif"); -} +} #button-quote[disabled="true"] { list-style-image: url("chrome://messenger/skin/messengercompose/quote-disabled.gif") !important; -} +} #spellingButton { list-style-image: url("chrome://editor/skin/icons/spell.gif"); @@ -128,14 +128,14 @@ list-style-image: url("chrome://messenger/skin/messengercompose/savemsg.gif"); } -#button-save[buttonover="true"], -#button-save[buttondown="true"] { +#button-save:hover, +#button-save:hover:active { list-style-image: url("chrome://messenger/skin/messengercompose/savemsg-hover.gif"); -} +} #button-save[disabled="true"] { list-style-image: url("chrome://messenger/skin/messengercompose/savemsg-disabled.gif") !important; -} +} #button-stop { list-style-image: url("chrome://global/skin/icons/stop.gif"); @@ -144,11 +144,11 @@ #button-stop:hover, #button-stop:hover:active { list-style-image: url("chrome://global/skin/icons/stop-hover.gif"); -} +} #button-stop[disabled="true"] { list-style-image: url("chrome://global/skin/icons/stop-disabled.gif") !important; -} +} /* ::::: autocomplete icons ::::: */ @@ -186,7 +186,7 @@ treechildren::-moz-tree-image(remote-err) { #msgheaderstoolbar-box { background-color: #E7ADE7; color: #000000; -} +} #addresses-box, #attachments-box { diff --git a/LCARStrek/messenger/primaryToolbar.css b/LCARStrek/messenger/primaryToolbar.css index 3383ff98..2a092026 100644 --- a/LCARStrek/messenger/primaryToolbar.css +++ b/LCARStrek/messenger/primaryToolbar.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -48,11 +48,10 @@ } #button-getmsg:hover, -#button-getmsg[buttonover="true"], -#button-getmsg[buttondown="true"], +#button-getmsg:hover:active, #button-getmsg[open="true"] { list-style-image: url("chrome://messenger/skin/toolbar/getmsg-hover.gif"); -} +} #button-getmsg[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/getmsg-disabled.gif") !important; @@ -65,7 +64,7 @@ #button-newmsg:hover, #button-newmsg:hover:active { list-style-image: url("chrome://messenger/skin/toolbar/newmsg-hover.gif"); -} +} #button-newmsg[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/newmsg-disabled.gif") !important; @@ -78,7 +77,7 @@ #button-reply:hover, #button-reply:hover:active { list-style-image: url("chrome://messenger/skin/toolbar/reply-hover.gif"); -} +} #button-reply[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/reply-disabled.gif") !important; @@ -91,7 +90,7 @@ #button-replyall:hover, #button-replyall:hover:active { list-style-image: url("chrome://messenger/skin/toolbar/replyall-hover.gif"); -} +} #button-replyall[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/replyall-disabled.gif") !important; @@ -104,7 +103,7 @@ #button-forward:hover, #button-forward:hover:active { list-style-image: url("chrome://messenger/skin/toolbar/forward-hover.gif"); -} +} #button-forward[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/forward-disabled.gif") !important; @@ -115,9 +114,10 @@ } #button-file:hover, +#button-file:hover:active, #button-file[open="true"] { list-style-image: url("chrome://messenger/skin/toolbar/file-hover.gif"); -} +} #button-file[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/file-disabled.gif") !important; @@ -130,7 +130,7 @@ #button-next:hover, #button-next:hover:active { list-style-image: url("chrome://messenger/skin/toolbar/next-hover.gif"); -} +} #button-next[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/next-disabled.gif") !important; @@ -143,7 +143,7 @@ #button-delete:hover, #button-delete:hover:active { list-style-image: url("chrome://global/skin/icons/trash-hover.gif"); -} +} #button-delete[disabled="true"] { list-style-image: url("chrome://global/skin/icons/trash-disabled.gif") !important; @@ -154,11 +154,10 @@ } #button-mark:hover, -#button-mark[buttonover="true"], -#button-mark[buttondown="true"], +#button-mark:hover:active, #button-mark[open="true"] { list-style-image: url("chrome://messenger/skin/toolbar/mark-hover.gif"); -} +} #button-mark[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/mark-disabled.gif") !important; @@ -169,8 +168,7 @@ } #button-print:hover, -#button-print[buttonover="true"], -#button-print[buttondown="true"], +#button-print:hover:active, #button-print[open="true"] { list-style-image: url("chrome://global/skin/icons/print-hover.gif"); } @@ -201,7 +199,7 @@ #button-junk[buttondown="true"], #button-junk[open="true"] { list-style-image: url("chrome://messenger/skin/toolbar/junk-hover.gif"); -} +} #button-junk[disabled="true"] { list-style-image: url("chrome://messenger/skin/toolbar/junk-disabled.gif") !important; diff --git a/LCARStrek/messenger/smime/msgCompSMIMEOverlay.css b/LCARStrek/messenger/smime/msgCompSMIMEOverlay.css index d4ff3550..90a84640 100644 --- a/LCARStrek/messenger/smime/msgCompSMIMEOverlay.css +++ b/LCARStrek/messenger/smime/msgCompSMIMEOverlay.css @@ -48,15 +48,14 @@ } #button-security:hover, -#button-security[buttonover="true"], -#button-security[buttondown="true"], +#button-security:hover:active, #button-security[open="true"] { list-style-image: url("chrome://messenger/skin/smime/icons/lock-hover.gif"); -} +} #button-security[disabled="true"] { list-style-image: url("chrome://messenger/skin/smime/icons/lock-disabled.gif"); -} +} #msgcomposeWindow #signing-status { diff --git a/LCARStrek/messenger/start.css b/LCARStrek/messenger/start.css new file mode 100644 index 00000000..1c2a9180 --- /dev/null +++ b/LCARStrek/messenger/start.css @@ -0,0 +1,79 @@ +/* ***** 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 mozilla.org code. + * + * The Initial Developer of the Original Code is + * the Mozilla Organization. + * Portions created by the Initial Developer are Copyright (C) 1998-2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * Robert Kaiser + * + * 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 ***** */ + +/* ===== start.css ===================================================== + == Styles used by the mailnews start page. + ======================================================================= */ + +body { + margin: 0; + padding: 0; +} + +a:link, a:visited, a:active { + color: #336699; + text-decoration: underline; +} + +h1 { + color: #000000; + background-color: #E7ADE7; + border-bottom: 3px solid #000000; + font-size: 1.5em; + font-weight: normal; + padding: 0.25em 0.75em; /* 0.75*1.5=1, so fit with 1em below */ + margin: 0; +} + +div#main { + margin: 0 1em; +} + +p { + margin: 0.5em 0; +} + +h2 { + font-size: 1.2em; + font-weight: bold; + margin: 0.5em 0; +} + +ul { + margin: 0.5em 0; +} + diff --git a/LCARStrek/messenger/subscribe.css b/LCARStrek/messenger/subscribe.css index 681f60dc..e55ed462 100644 --- a/LCARStrek/messenger/subscribe.css +++ b/LCARStrek/messenger/subscribe.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -22,7 +22,7 @@ * Robert Kaiser * * 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 + * 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 @@ -100,3 +100,13 @@ treechildren::-moz-tree-image(nameColumn2, nntp) { .subscribeMenuItem[ServerType="nntp"][IsSecure="true"] { list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif"); } + +/* ::::: statusbar adjustments :::::: */ + +#statusContainerBox { + -moz-border-radius: 9px; + margin-top: 3px; + padding-right: 9px; + background-color: #8050B0; + color: #000000; +} diff --git a/LCARStrek/messenger/virtualFolderListDialog.css b/LCARStrek/messenger/virtualFolderListDialog.css new file mode 100644 index 00000000..1eacf145 --- /dev/null +++ b/LCARStrek/messenger/virtualFolderListDialog.css @@ -0,0 +1,16 @@ +/* ===== virtualFolderListDialog.css ================================================== + == Styles for the virtual folder list dialog. + ======================================================================= */ + +@import url("chrome://messenger/skin/mailWindow1.css"); + +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); + +treechildren::-moz-tree-image(selectedColumn) { + margin-right: 2px; + list-style-image: url("chrome://messenger/skin/icons/dot.gif"); +} + +treechildren::-moz-tree-image(selectedColumn, inVFEditSearchScope-true) { + list-style-image: url("chrome://messenger/skin/icons/check.gif"); +} -- 2.35.3 From 61af9d1c3f2699c8e546b10ac50c518b0f830b56 Mon Sep 17 00:00:00 2001 From: robert Date: Sat, 12 Feb 2005 15:18:41 +0000 Subject: [PATCH 16/16] keep up with Classic development --- EarlyBlue/communicator/button.css | 12 ++++------ EarlyBlue/global/listbox.css | 8 +++++-- EarlyBlue/global/toolbarbutton.css | 27 +++++++++------------- EarlyBlue/messenger/icons/winvertical.gif | Bin 0 -> 248 bytes EarlyBlue/messenger/prefPanels.css | 9 ++++++-- EarlyBlue/messenger/threadPane.css | 10 +++++--- EarlyBlue/navigator/pageInfo.css | 6 ++++- 7 files changed, 40 insertions(+), 32 deletions(-) create mode 100644 EarlyBlue/messenger/icons/winvertical.gif diff --git a/EarlyBlue/communicator/button.css b/EarlyBlue/communicator/button.css index 2b4389f8..d8591694 100644 --- a/EarlyBlue/communicator/button.css +++ b/EarlyBlue/communicator/button.css @@ -56,14 +56,13 @@ .toolbarbutton-1, .toolbarbutton-1 > .toolbarbutton-menubutton-button, -.toolbarbutton-1[disabled="true"]:hover:active, -.toolbarbutton-1[disabled="true"][buttondown="true"] { +.toolbarbutton-1[disabled="true"]:hover:active { padding: 1px; } .toolbarbutton-1:hover:active, .toolbarbutton-1[open="true"], -.toolbarbutton-1[buttondown="true"] > .toolbarbutton-menubutton-button { +.toolbarbutton-1:hover:active > .toolbarbutton-menubutton-button { padding: 2px 0px 0px 2px; } @@ -93,16 +92,13 @@ } .toolbarbutton-1[buttonstyle="text"][type="menu-button"]:hover:active > .toolbarbutton-menubutton-dropmarker, -.toolbarbutton-1[buttonstyle="text"][type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-dropmarker, .toolbarbutton-1[buttonstyle="text"][type="menu-button"][open="true"] > .toolbarbutton-menubutton-dropmarker { padding: 5px 0px 7px 2px; } .toolbarbutton-1[buttonstyle="pictures"][type="menu-button"]:hover:active > .toolbarbutton-menubutton-dropmarker, -.toolbarbutton-1[buttonstyle="pictures"][type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-dropmarker, .toolbarbutton-1[buttonstyle="pictures"][type="menu-button"][open="true"] > .toolbarbutton-menubutton-dropmarker, .toolbarbutton-1[toolbarmode="small"][type="menu-button"]:hover:active > .toolbarbutton-menubutton-dropmarker, -.toolbarbutton-1[toolbarmode="small"][type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-dropmarker, .toolbarbutton-1[toolbarmode="small"][type="menu-button"][open="true"] > .toolbarbutton-menubutton-dropmarker { padding: 1px 0px 12px 2px; } @@ -119,8 +115,8 @@ .toolbarbutton-text[buttonstyle="pictures"], .toolbarbutton-icon[buttonstyle="text"] { display: none; -} - +} + .toolbarbutton-text[buttonstyle="text"] { padding: 4px 0; } diff --git a/EarlyBlue/global/listbox.css b/EarlyBlue/global/listbox.css index 2f882bf4..94b0ee44 100644 --- a/EarlyBlue/global/listbox.css +++ b/EarlyBlue/global/listbox.css @@ -39,6 +39,10 @@ listbox { color: #000000; } +listbox[disabled="true"] { + color: #CCCCCC; +} + /* ::::: listitem ::::: */ listitem { @@ -65,7 +69,7 @@ listbox:focus > listitem[selected="true"] { /* ::::: listheader ::::: */ -listheader { +listheader { -moz-box-align: center; border: 1px outset #CCD0DD; background-color: #CCD0DD; @@ -116,7 +120,7 @@ listheader[sortable="true"]:hover:active { color: #808080; } -/* ::::: listcell checkbox ::::: */ +/* ::::: listcell checkbox ::::: */ .listcell-check { -moz-box-align: center; diff --git a/EarlyBlue/global/toolbarbutton.css b/EarlyBlue/global/toolbarbutton.css index 350a174d..a5219207 100644 --- a/EarlyBlue/global/toolbarbutton.css +++ b/EarlyBlue/global/toolbarbutton.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998-1999 * the Initial Developer. All Rights Reserved. @@ -23,7 +23,7 @@ * Robert Kaiser * * 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 + * 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 @@ -66,9 +66,8 @@ toolbarbutton { /* toolbarbutton:hover, -toolbarbutton[buttonover="true"], toolbarbutton.toolbarbutton-menubutton-button[open="true"] { -} +} */ toolbarbutton:hover { @@ -80,7 +79,7 @@ toolbarbutton[open="true"] { padding: 2px 0px 0px 2px; border: 1px inset #CCD0DD; } - + toolbarbutton[disabled="true"] { border: 1px solid transparent !important; padding: 1px !important; @@ -94,7 +93,7 @@ toolbarbutton[checked="true"] { border: 1px inset #CCD0DD !important; background-color: #DDDDDD !important; } - + /* ::::: toolbarbutton menu ::::: */ .toolbarbutton-menu-dropmarker { @@ -130,29 +129,26 @@ toolbarbutton[type="menu-button"][disabled="true"]:hover:active { .toolbarbutton-menubutton-button, .toolbarbutton-menubutton-dropmarker { border: 1px solid transparent; -} - +} + .toolbarbutton-menubutton-button[disabled="true"], .toolbarbutton-menubutton-dropmarker[disabled="true"] { border: 1px solid transparent !important; -} +} toolbarbutton[type="menu-button"]:hover > .toolbarbutton-menubutton-button, -toolbarbutton[type="menu-button"][buttonover="true"] > .toolbarbutton-menubutton-button, -toolbarbutton[type="menu-button"]:hover > .toolbarbutton-menubutton-dropmarker, -toolbarbutton[type="menu-button"][buttonover="true"] > .toolbarbutton-menubutton-dropmarker { +toolbarbutton[type="menu-button"]:hover > .toolbarbutton-menubutton-dropmarker { border: 1px outset #CCD0DD; } -toolbarbutton[type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-button, +toolbarbutton[type="menu-button"]:hover:active > .toolbarbutton-menubutton-button, toolbarbutton[type="menu-button"]:hover:active > .toolbarbutton-menubutton-dropmarker, -toolbarbutton[type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-dropmarker, toolbarbutton[type="menu-button"][open="true"] > .toolbarbutton-menubutton-button, toolbarbutton[type="menu-button"][open="true"] > .toolbarbutton-menubutton-dropmarker { border: 1px inset #CCD0DD; } -toolbarbutton[type="menu-button"][buttondown="true"] > toolbarbutton.toolbarbutton-menubutton-button, +toolbarbutton[type="menu-button"]:hover:active > toolbarbutton.toolbarbutton-menubutton-button, toolbarbutton[type="menu-button"][open="true"] > toolbarbutton.toolbarbutton-menubutton-button { padding: 2px 0px 0px 2px !important; } @@ -166,7 +162,6 @@ toolbarbutton[type="menu-button"][open="true"] > toolbarbutton.toolbarbutton-men } toolbarbutton[type="menu-button"]:hover:active > .toolbarbutton-menubutton-dropmarker, -toolbarbutton[type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-dropmarker, toolbarbutton[type="menu-button"][open="true"] > .toolbarbutton-menubutton-dropmarker { padding: 4px 0px 0px 2px; } diff --git a/EarlyBlue/messenger/icons/winvertical.gif b/EarlyBlue/messenger/icons/winvertical.gif new file mode 100644 index 0000000000000000000000000000000000000000..f206ba71f669a842cf22a382bb14a889c12b5401 GIT binary patch literal 248 zcmZ?wbhEHblwwd|Xl4L`mX?-d$Bz9c4k-R)0c!crpaaqgGJ}C-slW-()mxLE@U;DR zW^bCLz|yGJ_gaE!wpi9O%f*^Ek2?MSX%*b{c$R4VrnBqZj#$RqD8J^gUASaP<7Y14 zb2E-CK5|>TY@7WIQ`RG!%1)-9mHo2qe6$(Qa-(4HGLzy8e-E4T`mCCc47ud?CbQf= zgGRl{q2a01qbg$!izaoZ^z^E#8+9ZVcun+eoxief^^(nLQx~i=x3t * * 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 + * 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 @@ -55,3 +55,8 @@ min-height: 32px; list-style-image: url("chrome://messenger/skin/icons/winwide.gif"); } + +#vertical { + min-height: 32px; + list-style-image: url("chrome://messenger/skin/icons/winvertical.gif"); +} diff --git a/EarlyBlue/messenger/threadPane.css b/EarlyBlue/messenger/threadPane.css index bf3e58f0..14e53ec0 100644 --- a/EarlyBlue/messenger/threadPane.css +++ b/EarlyBlue/messenger/threadPane.css @@ -13,7 +13,7 @@ * * The Original Code is mozilla.org code. * - * The Initial Developer of the Original Code is + * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. @@ -24,7 +24,7 @@ * Robert Kaiser * * 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 + * 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 @@ -53,8 +53,12 @@ treechildren::-moz-tree-cell-text(unread) { font-weight: bold; } +treechildren::-moz-tree-cell-text(imapdeleted) { + text-decoration: line-through; +} + /* on a collapsed thread, if the top level message is read, but the thread has - * unread children, underline the text. 4.x mac did this, very slick + * unread children, underline the text. 4.x mac did this, very slick */ treechildren::-moz-tree-cell-text(container, closed, hasUnread, read) { text-decoration: underline; diff --git a/EarlyBlue/navigator/pageInfo.css b/EarlyBlue/navigator/pageInfo.css index ddc0b2fa..f8cdb637 100644 --- a/EarlyBlue/navigator/pageInfo.css +++ b/EarlyBlue/navigator/pageInfo.css @@ -14,7 +14,7 @@ * The Original Code is Mozilla Communicator client code. * * The Initial Developer of the Original Code is Daniel Brooks. - * Portions created by the Initial Developer are Copyright (C) 2001 + * Portions created by the Initial Developer are Copyright (C) 2001-2004 * the Initial Developer. All Rights Reserved. * * Contributor(s): @@ -65,3 +65,7 @@ textbox.header { .fixedsize { height: 8.5em; } + +textbox[disabled] { + font-style: italic; +} -- 2.35.3