From: robert Date: Thu, 21 Mar 2002 19:48:06 +0000 (+0000) Subject: keeping up with classic; make labels do better & clean up margins of some elements... X-Git-Tag: EarlyBlue10rc2~15 X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=commitdiff_plain;h=2b722888dc2dfc992a2ab17b54f77fb35eb60fa8;hp=55509a9140d6ed6d8ae18e4fc1da8f5789d2279f keeping up with classic; make labels do better & clean up margins of some elements; make page prview work right (normal/hover button images) --- diff --git a/LCARStrek/communicator/bookmarks/bookmark-group.gif b/LCARStrek/communicator/bookmarks/bookmark-group.gif new file mode 100644 index 00000000..3948dc0b Binary files /dev/null and b/LCARStrek/communicator/bookmarks/bookmark-group.gif differ diff --git a/LCARStrek/communicator/bookmarks/bookmarks.css b/LCARStrek/communicator/bookmarks/bookmarks.css index 8a65166f..641ae5ba 100644 --- a/LCARStrek/communicator/bookmarks/bookmarks.css +++ b/LCARStrek/communicator/bookmarks/bookmarks.css @@ -86,3 +86,11 @@ toolbarbutton.bookmark-item > .toolbarbutton-menu-dropmarker { max-width: 16px; max-height: 16px; } + +outlinerchildren:-moz-outliner-twisty(group,hidetwisty) { + list-style-image: none; +} + +outlinerchildren:-moz-outliner-image(Name, container, group) { + list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-group.gif"); +} diff --git a/LCARStrek/communicator/bookmarks/bookmarksToolbar.css b/LCARStrek/communicator/bookmarks/bookmarksToolbar.css index b51f65ae..7f862b46 100644 --- a/LCARStrek/communicator/bookmarks/bookmarksToolbar.css +++ b/LCARStrek/communicator/bookmarks/bookmarksToolbar.css @@ -67,6 +67,10 @@ toolbarbutton.bookmark-item > .toolbarbutton-menu-dropmarker { display: none; } +.bookmark-group { + list-style-image: url(chrome://communicator/skin/bookmarks/bookmark-group.gif) !important; +} + toolbarbutton.bookmark-item[disabled="true"], toolbarbutton.bookmark-item[disabled="true"]:hover, toolbarbutton.bookmark-item[disabled="true"]:hover:active { @@ -100,6 +104,11 @@ toolbarbutton.bookmark-item[dragover-right="true"] { border-right: 2px solid #008484; } +toolbarbutton.bookmark-item[dragover-top="true"] { + background-color: #008484; + color: #FFCF00; +} + /* ::::: bookmark menus ::::: */ menu.bookmark-item, diff --git a/LCARStrek/communicator/communicator.css b/LCARStrek/communicator/communicator.css index 7b6a3eaa..11616926 100644 --- a/LCARStrek/communicator/communicator.css +++ b/LCARStrek/communicator/communicator.css @@ -35,13 +35,13 @@ * * ***** END LICENSE BLOCK ***** */ -@import url(chrome://global/skin/); +@import url("chrome://global/skin/"); @import url("chrome://communicator/content/communicator.css"); -@import url(chrome://communicator/skin/brand.css); -@import url(chrome://communicator/skin/button.css); -@import url(chrome://communicator/skin/formatting.css); +@import url("chrome://communicator/skin/brand.css"); +@import url("chrome://communicator/skin/button.css"); +@import url("chrome://communicator/skin/formatting.css"); /* the line below is only LCARStrek */ -@import url(chrome://communicator/skin/toolbar.css); +@import url("chrome://communicator/skin/toolbar.css"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ diff --git a/LCARStrek/communicator/icons/pg-landscape-small.gif b/LCARStrek/communicator/icons/pg-landscape-small.gif index 96a93810..1475f081 100644 Binary files a/LCARStrek/communicator/icons/pg-landscape-small.gif and b/LCARStrek/communicator/icons/pg-landscape-small.gif differ diff --git a/LCARStrek/communicator/icons/pg-landscape.gif b/LCARStrek/communicator/icons/pg-landscape.gif index fe94aba1..1b7fba37 100644 Binary files a/LCARStrek/communicator/icons/pg-landscape.gif and b/LCARStrek/communicator/icons/pg-landscape.gif differ diff --git a/LCARStrek/communicator/icons/pg-portrait-small.gif b/LCARStrek/communicator/icons/pg-portrait-small.gif index 4fc6745b..5a95e7df 100644 Binary files a/LCARStrek/communicator/icons/pg-portrait-small.gif and b/LCARStrek/communicator/icons/pg-portrait-small.gif differ diff --git a/LCARStrek/communicator/icons/pg-portrait.gif b/LCARStrek/communicator/icons/pg-portrait.gif index 01840302..ddf10908 100644 Binary files a/LCARStrek/communicator/icons/pg-portrait.gif and b/LCARStrek/communicator/icons/pg-portrait.gif differ diff --git a/LCARStrek/communicator/printing.css b/LCARStrek/communicator/printing.css index e74e4c57..8177065a 100644 --- a/LCARStrek/communicator/printing.css +++ b/LCARStrek/communicator/printing.css @@ -44,28 +44,52 @@ list-style-image: url("chrome://global/skin/arrow/arrow-left-sharp-end.gif"); } +.home-arrow:hover { + list-style-image: url("chrome://global/skin/arrow/arrow-left-sharp-end-hover.gif"); +} + .end-arrow { list-style-image: url("chrome://global/skin/arrow/arrow-right-sharp-end.gif"); } +.end-arrow:hover { + list-style-image: url("chrome://global/skin/arrow/arrow-right-sharp-end-hover.gif"); +} + .last-arrow { list-style-image: url("chrome://global/skin/arrow/arrow-left-sharp.gif"); } +.last-arrow:hover { + list-style-image: url("chrome://global/skin/arrow/arrow-left-sharp-hover.gif"); +} + .next-arrow { list-style-image: url("chrome://global/skin/arrow/arrow-right-sharp.gif"); } +.next-arrow:hover { + list-style-image: url("chrome://global/skin/arrow/arrow-right-sharp-hover.gif"); +} + /* ...... scale in/decrement ..... */ .up-arrow { list-style-image: url("chrome://global/skin/arrow/arrow-up-sharp.gif"); } +.up-arrow:hover { + list-style-image: url("chrome://global/skin/arrow/arrow-up-sharp-hover.gif"); +} + .down-arrow { list-style-image: url("chrome://global/skin/arrow/arrow-down-sharp.gif"); } +.down-arrow:hover { + list-style-image: url("chrome://global/skin/arrow/arrow-down-sharp-hover.gif"); +} + /* ..... orientation ..... */ .toolbar-portrait-page { diff --git a/LCARStrek/contents.rdf b/LCARStrek/contents.rdf index 92ab6787..c6cd368e 100644 --- a/LCARStrek/contents.rdf +++ b/LCARStrek/contents.rdf @@ -5,32 +5,32 @@ - + - - - - - - - + + + + + + - - - - - + + + + + diff --git a/LCARStrek/global/arrow/arrow-down-sharp-hover.gif b/LCARStrek/global/arrow/arrow-down-sharp-hover.gif new file mode 100644 index 00000000..ccd686cb Binary files /dev/null and b/LCARStrek/global/arrow/arrow-down-sharp-hover.gif differ diff --git a/LCARStrek/global/arrow/arrow-down-sharp.gif b/LCARStrek/global/arrow/arrow-down-sharp.gif index 206d7c19..c1c80551 100644 Binary files a/LCARStrek/global/arrow/arrow-down-sharp.gif and b/LCARStrek/global/arrow/arrow-down-sharp.gif differ diff --git a/LCARStrek/global/arrow/arrow-left-sharp-end-hover.gif b/LCARStrek/global/arrow/arrow-left-sharp-end-hover.gif new file mode 100644 index 00000000..bd53b474 Binary files /dev/null and b/LCARStrek/global/arrow/arrow-left-sharp-end-hover.gif differ diff --git a/LCARStrek/global/arrow/arrow-left-sharp-end.gif b/LCARStrek/global/arrow/arrow-left-sharp-end.gif index c22294ba..891427a7 100644 Binary files a/LCARStrek/global/arrow/arrow-left-sharp-end.gif and b/LCARStrek/global/arrow/arrow-left-sharp-end.gif differ diff --git a/LCARStrek/global/arrow/arrow-left-sharp-hover.gif b/LCARStrek/global/arrow/arrow-left-sharp-hover.gif new file mode 100644 index 00000000..e26ff934 Binary files /dev/null and b/LCARStrek/global/arrow/arrow-left-sharp-hover.gif differ diff --git a/LCARStrek/global/arrow/arrow-left-sharp.gif b/LCARStrek/global/arrow/arrow-left-sharp.gif index ae9b1dd0..0c50f2e5 100644 Binary files a/LCARStrek/global/arrow/arrow-left-sharp.gif and b/LCARStrek/global/arrow/arrow-left-sharp.gif differ diff --git a/LCARStrek/global/arrow/arrow-right-sharp-end-hover.gif b/LCARStrek/global/arrow/arrow-right-sharp-end-hover.gif new file mode 100644 index 00000000..9875314c Binary files /dev/null and b/LCARStrek/global/arrow/arrow-right-sharp-end-hover.gif differ diff --git a/LCARStrek/global/arrow/arrow-right-sharp-end.gif b/LCARStrek/global/arrow/arrow-right-sharp-end.gif index c1b3750d..45a7d236 100644 Binary files a/LCARStrek/global/arrow/arrow-right-sharp-end.gif and b/LCARStrek/global/arrow/arrow-right-sharp-end.gif differ diff --git a/LCARStrek/global/arrow/arrow-right-sharp-hover.gif b/LCARStrek/global/arrow/arrow-right-sharp-hover.gif new file mode 100644 index 00000000..8fb1fdb2 Binary files /dev/null and b/LCARStrek/global/arrow/arrow-right-sharp-hover.gif differ diff --git a/LCARStrek/global/arrow/arrow-right-sharp.gif b/LCARStrek/global/arrow/arrow-right-sharp.gif index ca628ba6..0f9a4eaf 100644 Binary files a/LCARStrek/global/arrow/arrow-right-sharp.gif and b/LCARStrek/global/arrow/arrow-right-sharp.gif differ diff --git a/LCARStrek/global/arrow/arrow-up-sharp-hover.gif b/LCARStrek/global/arrow/arrow-up-sharp-hover.gif new file mode 100644 index 00000000..08083526 Binary files /dev/null and b/LCARStrek/global/arrow/arrow-up-sharp-hover.gif differ diff --git a/LCARStrek/global/arrow/arrow-up-sharp.gif b/LCARStrek/global/arrow/arrow-up-sharp.gif index 883a4f95..5de9a89b 100644 Binary files a/LCARStrek/global/arrow/arrow-up-sharp.gif and b/LCARStrek/global/arrow/arrow-up-sharp.gif differ diff --git a/LCARStrek/global/button.css b/LCARStrek/global/button.css index 61ca8171..1b5e7ef9 100644 --- a/LCARStrek/global/button.css +++ b/LCARStrek/global/button.css @@ -46,7 +46,7 @@ /* outer frame */ button { -moz-border-radius: 3px; - margin: 0px 4px 1px 4px; + margin: 1px 2px; min-width: 6.3em; border: none; background-color: #000000; @@ -79,7 +79,7 @@ button:focus > .button-box { button[default="true"] > .button-box { font-weight: bold; list-style-image: url("chrome://global/skin/icons/return.gif"); - -moz-box-direction: reverse; + -moz-box-direction: reverse !important; padding-right: 7px; } diff --git a/LCARStrek/global/checkbox.css b/LCARStrek/global/checkbox.css index 823ee795..3002ae12 100644 --- a/LCARStrek/global/checkbox.css +++ b/LCARStrek/global/checkbox.css @@ -41,15 +41,15 @@ checkbox { -moz-box-align: center; - margin: 2px 4px; + margin: 1px 2px; padding: 1px; } .checkbox-label-box { - margin-left: 2px; border: 1px solid transparent; padding: 0px 1px; color: #FF9F00; + -moz-box-align: center; } .checkbox-icon { diff --git a/LCARStrek/global/formatting.css b/LCARStrek/global/formatting.css index 4faab578..ec362244 100644 --- a/LCARStrek/global/formatting.css +++ b/LCARStrek/global/formatting.css @@ -38,158 +38,132 @@ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* inset areas */ -.inset - { -/* border : 1px inset #FF9F00; - margin : 0px 5px 5px 5px; */ - } +.inset { +/* border: 1px inset #FF9F00; + margin: 0px 5px 5px 5px; */ +} /* formatting */ -.groove-top - { - border-top : 2px groove #FF9F00; - } +.groove-top { + border-top: 2px groove #FF9F00; +} -.groove-right - { - border-right : 2px groove #FF9F00; - } +.groove-right { + border-right: 2px groove #FF9F00; +} -.groove-left - { - border-left : 2px groove #FF9F00; - } +.groove-left { + border-left: 2px groove #FF9F00; +} -.groove-bottom - { - border-bottom : 2px groove #FF9F00;; - } +.groove-bottom { + border-bottom: 2px groove #FF9F00;; +} -.outset - { -/* border : 1px outset #FF9F00; */ - } +.outset { +/* border: 1px outset #FF9F00; */ +} /** separator rules **/ /* standard separators */ - separator, separator[orient="horizontal"] - { - height: 1.5em; - } +separator, separator[orient="horizontal"] { + height: 1.5em; +} - separator[orient="vertical"] - { - width: 1.5em; - } +separator[orient="vertical"] { + width: 1.5em; +} /* thinner separators (50% size) */ - separator.thin, separator.thin[orient="horizontal"] - { - height: 0.5em; - } +separator.thin, separator.thin[orient="horizontal"] { + height: 0.5em; +} - separator.thin[orient="vertical"] - { - width: 0.5em; - } +separator.thin[orient="vertical"] { + width: 0.5em; +} /* groove separators (50% size) */ - separator.groove, - separator.groove[orient="horizontal"] - { - border-top: 2px groove #FF9F00; - height: 0px; - margin-top: 0.4em; - margin-bottom: 0.4em; - } +separator.groove, +separator.groove[orient="horizontal"] { + border-top: 2px groove #FF9F00; + height: 0px; + margin-top: 0.4em; + margin-bottom: 0.4em; +} - separator.groove[orient="vertical"] - { - border-left: 2px groove #FF9F00; - margin-left: 0.4em; - margin-right: 0.4em; - } +separator.groove[orient="vertical"] { + border-left: 2px groove #FF9F00; + margin-left: 0.4em; + margin-right: 0.4em; +} /* groove separators (0 padding, for dividing effects) */ - separator.groove-thin - { - border-top: 2px groove #FF9F00; - height: 0px; - } +separator.groove-thin { + border-top: 2px groove #FF9F00; + height: 0px; +} - separator[orient="vertical"].groove-thin - { - border-left: 2px groove #FF9F00; - } +separator[orient="vertical"].groove-thin { + border-left: 2px groove #FF9F00; +} /** text formatting rules **/ /** Reduced Margin for some UI **/ - .small-margin - { -/* margin : 1px 2px 1px 2px; */ - } +.small-margin { + margin: 0px 1px; +} - label[disabled="true"] - { - color : #8050B0; - } +label[disabled="true"] { + color: #8050B0; +} - description, label - { - cursor : default; - } +description, label { + cursor: default; + margin: 1px 3px; +} - description - { -/* margin : 1px 5px 4px 5px; */ - } +description { +/* margin: 1px 5px 4px 5px; */ +} - label - { -/* margin : 1px 5px 2px 6px; */ - } +label { +/* margin: 1px 5px 2px 6px; */ +} - .header - { - font-weight : bold; - } +.header { + font-weight: bold; +} - .larger-text - { - font-size : larger; - } +.larger-text { + font-size: larger; +} - .smaller-text - { - font-size : smaller; - } +.smaller-text { + font-size: smaller; +} - .monospace - { - font-family : monospace; - } +.monospace { + font-family: monospace; +} - .indent - { - margin-left : 23px; - } +.indent { +/* margin-left: 23px; */ + margin-left: 15px; +} - .box-padded - { - padding : 5px; - } +.box-padded { + padding: 5px; +} - .spaced - { - margin : 3px 5px 4px 5px; - } +.spaced { + margin: 1px 3px; +} - .wizard-box - { - padding : 20px 44px 10px 44px; - } +.wizard-box { + padding: 15px 35px 10px 35px; +} - .caption-text - { - margin: 0px 2px 0px 1px !important; - } +.caption-text { + margin: 0px 2px 0px 1px !important; +} diff --git a/LCARStrek/global/groupbox.css b/LCARStrek/global/groupbox.css index 375c8e05..68152167 100644 --- a/LCARStrek/global/groupbox.css +++ b/LCARStrek/global/groupbox.css @@ -45,9 +45,9 @@ groupbox { -moz-border-radius: 5px; - margin: 5px; + margin: 3px 2px; border: 2px solid #9C9CFF; - padding: 5px; + padding: 3px 3px 5px 5px; } .groupbox-body { diff --git a/LCARStrek/global/radio.css b/LCARStrek/global/radio.css index 95e35a56..9352a05b 100644 --- a/LCARStrek/global/radio.css +++ b/LCARStrek/global/radio.css @@ -45,14 +45,14 @@ radio { -moz-box-align: center; - margin: 2px 4px; - padding: 1px 2px 1px 4px; + margin: 1px 2px; + padding: 1px; } .radio-label-box { - margin-left: 2px; border: 1px solid transparent; padding: 0px 0px 1px 1px; + -moz-box-align: center; } .radio-icon { diff --git a/LCARStrek/messenger/addressbook/addressbook.css b/LCARStrek/messenger/addressbook/addressbook.css index 455ccf3d..c7b009e1 100644 --- a/LCARStrek/messenger/addressbook/addressbook.css +++ b/LCARStrek/messenger/addressbook/addressbook.css @@ -207,7 +207,7 @@ html|p { border: none; } -#dirTree, #resultsTree { +#dirTree, #abResultsOutliner { border: none; margin: 0px; } @@ -215,3 +215,12 @@ html|p { #resultsTree { /* border-left: 1px solid ThreeDShadow; */ } + +/* ::::: Search Bar ::::: */ + +#searchBox { +/* + border-top: 1px solid ThreeDHighlight; + border-bottom: 1px solid ThreeDShadow; +*/ +} diff --git a/LCARStrek/messenger/mailWindow1.css b/LCARStrek/messenger/mailWindow1.css index 5a58b201..75171f30 100644 --- a/LCARStrek/messenger/mailWindow1.css +++ b/LCARStrek/messenger/mailWindow1.css @@ -65,5 +65,5 @@ #threadOutliner { min-width: 1px; - border:n none; + border: none; } diff --git a/LCARStrek/messenger/messengercompose/messengercompose.css b/LCARStrek/messenger/messengercompose/messengercompose.css index 85d3a3a7..8b7e3fa2 100644 --- a/LCARStrek/messenger/messengercompose/messengercompose.css +++ b/LCARStrek/messenger/messengercompose/messengercompose.css @@ -179,6 +179,11 @@ outlinerbody:-moz-outliner-image(remote-err) { -moz-binding: url("chrome://messenger/content/messengercompose/mailComposeBindings.xml#fromMenuitem"); } +.composemenu-text-2 { + font-style: italic; + color: #8050B0; +} + /* ::::: LCARStrek layout corrections ::::: */ #msgheaderstoolbar-box { @@ -191,6 +196,11 @@ outlinerbody:-moz-outliner-image(remote-err) { padding: 1px 5px; } +#addresses-box > hbox > label, +#attachments-box > label { + margin-left: 0px; +} + #msgIdentity, #msgSubject { margin-right: 0px; diff --git a/LCARStrek/navigator/pageInfo.css b/LCARStrek/navigator/pageInfo.css index f552fb5f..7c4d04c0 100644 --- a/LCARStrek/navigator/pageInfo.css +++ b/LCARStrek/navigator/pageInfo.css @@ -62,3 +62,7 @@ textbox.header { margin: 1em; border: 2px solid #9C9CFF; } + +.fixedsize { + height: 14.5em; +}