From: robert Date: Mon, 13 Oct 2003 11:22:18 +0000 (+0000) Subject: updating firebird support to trunk X-Git-Tag: EarlyBlue-2.0a1~73 X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=commitdiff_plain;h=0697ec23b364dcfa9fff0667517fc729d1821b4d updating firebird support to trunk --- diff --git a/EarlyBlue/browser/aboutDialog.css b/EarlyBlue/browser/aboutDialog.css new file mode 100644 index 00000000..1c7401b8 --- /dev/null +++ b/EarlyBlue/browser/aboutDialog.css @@ -0,0 +1,35 @@ +#aboutDialog { + padding: 0px 0px 10px 0px; +} + +#clientBox { + background-color: #FFFFFF; + color: #000000; +} + +#brandName { + font-weight: bold; font-size: larger; +} + +#detailsBox { + padding: 8px 10px 10px 8px; +} + +#userAgent { + margin: 3px 5px; + background-color: #FFFFFF; + color: #000000; + padding: 1px 0px 1px 2px; + -moz-appearance: none; + border: none; +} + +#copyright { + color: blue; + text-decoration: underline; +} + +#groove { + margin-top: 0px; +} + diff --git a/EarlyBlue/browser/browser.css b/EarlyBlue/browser/browser.css index 7bf8cfc1..9d56a9d5 100644 --- a/EarlyBlue/browser/browser.css +++ b/EarlyBlue/browser/browser.css @@ -22,6 +22,8 @@ * Joe Hewitt (hewitt@netscape.com) * Jason Kersey (kerz@netscape.com) * Pierre Chanial (chanial@noos.fr) + * Dean Tessman (dean_tessman@hotmail.com) + * Robert Kaiser (kairo@kairo.at) * * 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 @@ -267,6 +269,27 @@ toolbar[mode="text"] .toolbarbutton-text { list-style-image: url("chrome://browser/skin/icons/history-disabled.gif"); } +#cut-button { + list-style-image: url("chrome://browser/skin/icons/cut.gif"); +} +#cut-button[disabled="true"] { + list-style-image: url("chrome://browser/skin/icons/cut-disabled.gif"); +} + +#copy-button { + list-style-image: url("chrome://browser/skin/icons/copy.gif"); +} +#copy-button[disabled="true"] { + list-style-image: url("chrome://browser/skin/icons/copy-disabled.gif"); +} + +#paste-button { + list-style-image: url("chrome://browser/skin/icons/paste.gif"); +} +#paste-button[disabled="true"] { + list-style-image: url("chrome://browser/skin/icons/paste-disabled.gif"); +} + /* ::::: small primary toolbar buttons ::::: */ @@ -347,6 +370,59 @@ toolbar[iconsize="small"] #history-button[disabled="true"] { list-style-image: url("chrome://browser/skin/icons/history-small-disabled.gif"); } +toolbar[iconsize="small"] #cut-button { + list-style-image: url("chrome://browser/skin/icons/cut-small.gif"); +} +toolbar[iconsize="small"] #cut-button[disabled="true"] { + list-style-image: url("chrome://browser/skin/icons/cut-small-disabled.gif"); +} + +toolbar[iconsize="small"] #copy-button { + list-style-image: url("chrome://browser/skin/icons/copy-small.gif"); +} +toolbar[iconsize="small"] #copy-button[disabled="true"] { + list-style-image: url("chrome://browser/skin/icons/copy-small-disabled.gif"); +} + +toolbar[iconsize="small"] #paste-button { + list-style-image: url("chrome://browser/skin/icons/paste-small.gif"); +} +toolbar[iconsize="small"] #paste-button[disabled="true"] { + list-style-image: url("chrome://browser/skin/icons/paste-small-disabled.gif"); +} + + +/* Smaller padding on small toolbar buttons */ + +toolbar[iconsize="small"] .toolbarbutton-1 { + padding: 2px; +} + +toolbar[iconsize="small"] .toolbarbutton-1:hover:active, +toolbar[iconsize="small"] .toolbarbutton-1[open="true"] { + padding: 3px 1px 1px 3px; +} + +toolbar[iconsize="small"] .toolbarbutton-1[disabled="true"], +toolbar[iconsize="small"] .toolbarbutton-1[disabled="true"]:hover, +toolbar[iconsize="small"] .toolbarbutton-1[disabled="true"]:hover:active, +toolbar[iconsize="small"] .toolbarbutton-1[disabled="true"][open="true"] { + padding: 2px; +} + +toolbar[iconsize="small"] .toolbarbutton-1[checked="true"] { + padding: 3px 1px 1px 3px !important; +} + +toolbar[iconsize="small"] .toolbarbutton-1[type="menu-button"], +toolbar[iconsize="small"] .toolbarbutton-1[type="menu-button"]:hover, +toolbar[iconsize="small"] .toolbarbutton-1[type="menu-button"]:hover:active, +toolbar[iconsize="small"] .toolbarbutton-1[type="menu-button"][open="true"], +toolbar[iconsize="small"] .toolbarbutton-1[type="menu-button"][disabled="true"], +toolbar[iconsize="small"] .toolbarbutton-1[type="menu-button"][disabled="true"]:hover, +toolbar[iconsize="small"] .toolbarbutton-1[type="menu-button"][disabled="true"]:hover:active { + padding: 0; +} /* ::::: fullscreen window controls ::::: */ @@ -415,6 +491,10 @@ statusbarpanel#statusbar-display { list-style-image: url("chrome://browser/skin/icons/search-bar.gif"); } +#miSearchModeFind { + list-style-image: url("chrome://browser/skin/icons/search-bar.gif"); +} + /* ::::: autocomplete ::::: */ .autocomplete-treebody::-moz-tree-cell-text(treecolAutoCompleteComment) { @@ -497,6 +577,16 @@ statusbarpanel#statusbar-display { padding: 0px 3px 0px 3px; } +#page-theme-button { + display: none; +} + +#page-theme-button[themes] { + display: -moz-box; + list-style-image: url("chrome://browser/skin/icons/page-themes.gif"); + padding: 0px 3px 0px 3px; +} + /* ::::: throbber ::::: */ #navigator-throbber { @@ -542,3 +632,15 @@ toolbarbutton.chevron { toolbarbutton.chevron > .toolbarbutton-menu-dropmarker { display: none; } + +toolbar[mode="text"] > #window-controls > toolbarbutton > .toolbarbutton-icon { + display: -moz-box; +} + +toolbar[mode="text"] > #window-controls > toolbarbutton > .toolbarbutton-text { + display: none; +} + +#sidebar-throbber[loading="true"] { + list-style-image: url(chrome://global/skin/icons/loading.gif); +} diff --git a/EarlyBlue/browser/browser.xml b/EarlyBlue/browser/browser.xml index 59744ee1..be92c111 100644 --- a/EarlyBlue/browser/browser.xml +++ b/EarlyBlue/browser/browser.xml @@ -9,7 +9,7 @@ + extends="chrome://global/content/widgets/toolbarbutton.xml#menu-button"> diff --git a/EarlyBlue/browser/icons/copy-disabled.gif b/EarlyBlue/browser/icons/copy-disabled.gif new file mode 100644 index 00000000..0e5dd1c1 Binary files /dev/null and b/EarlyBlue/browser/icons/copy-disabled.gif differ diff --git a/EarlyBlue/browser/icons/copy-small-disabled.gif b/EarlyBlue/browser/icons/copy-small-disabled.gif new file mode 100644 index 00000000..d0566b92 Binary files /dev/null and b/EarlyBlue/browser/icons/copy-small-disabled.gif differ diff --git a/EarlyBlue/browser/icons/copy-small.gif b/EarlyBlue/browser/icons/copy-small.gif new file mode 100644 index 00000000..84b8e444 Binary files /dev/null and b/EarlyBlue/browser/icons/copy-small.gif differ diff --git a/EarlyBlue/browser/icons/copy.gif b/EarlyBlue/browser/icons/copy.gif new file mode 100644 index 00000000..174d9afd Binary files /dev/null and b/EarlyBlue/browser/icons/copy.gif differ diff --git a/EarlyBlue/browser/icons/cut-disabled.gif b/EarlyBlue/browser/icons/cut-disabled.gif new file mode 100644 index 00000000..108f71b5 Binary files /dev/null and b/EarlyBlue/browser/icons/cut-disabled.gif differ diff --git a/EarlyBlue/browser/icons/cut-small-disabled.gif b/EarlyBlue/browser/icons/cut-small-disabled.gif new file mode 100644 index 00000000..d7cffe6d Binary files /dev/null and b/EarlyBlue/browser/icons/cut-small-disabled.gif differ diff --git a/EarlyBlue/browser/icons/cut-small.gif b/EarlyBlue/browser/icons/cut-small.gif new file mode 100644 index 00000000..4b20614a Binary files /dev/null and b/EarlyBlue/browser/icons/cut-small.gif differ diff --git a/EarlyBlue/browser/icons/cut.gif b/EarlyBlue/browser/icons/cut.gif new file mode 100644 index 00000000..c30d7dbd Binary files /dev/null and b/EarlyBlue/browser/icons/cut.gif differ diff --git a/EarlyBlue/browser/icons/page-themes.gif b/EarlyBlue/browser/icons/page-themes.gif new file mode 100644 index 00000000..00758e6d Binary files /dev/null and b/EarlyBlue/browser/icons/page-themes.gif differ diff --git a/EarlyBlue/browser/icons/paste-disabled.gif b/EarlyBlue/browser/icons/paste-disabled.gif new file mode 100644 index 00000000..5b3f649c Binary files /dev/null and b/EarlyBlue/browser/icons/paste-disabled.gif differ diff --git a/EarlyBlue/browser/icons/paste-small-disabled.gif b/EarlyBlue/browser/icons/paste-small-disabled.gif new file mode 100644 index 00000000..4d5c6092 Binary files /dev/null and b/EarlyBlue/browser/icons/paste-small-disabled.gif differ diff --git a/EarlyBlue/browser/icons/paste-small.gif b/EarlyBlue/browser/icons/paste-small.gif new file mode 100644 index 00000000..b02ba046 Binary files /dev/null and b/EarlyBlue/browser/icons/paste-small.gif differ diff --git a/EarlyBlue/browser/icons/paste.gif b/EarlyBlue/browser/icons/paste.gif new file mode 100644 index 00000000..b525c6e4 Binary files /dev/null and b/EarlyBlue/browser/icons/paste.gif differ diff --git a/EarlyBlue/browser/pref/advanced.gif b/EarlyBlue/browser/pref/advanced.gif new file mode 100644 index 00000000..2322237b Binary files /dev/null and b/EarlyBlue/browser/pref/advanced.gif differ diff --git a/EarlyBlue/browser/pref/downloads.gif b/EarlyBlue/browser/pref/downloads.gif new file mode 100644 index 00000000..270af048 Binary files /dev/null and b/EarlyBlue/browser/pref/downloads.gif differ diff --git a/EarlyBlue/browser/pref/fonts.gif b/EarlyBlue/browser/pref/fonts.gif deleted file mode 100644 index 7038aefa..00000000 Binary files a/EarlyBlue/browser/pref/fonts.gif and /dev/null differ diff --git a/EarlyBlue/browser/pref/pref.css b/EarlyBlue/browser/pref/pref.css index b7b51886..eae897ae 100644 --- a/EarlyBlue/browser/pref/pref.css +++ b/EarlyBlue/browser/pref/pref.css @@ -37,12 +37,6 @@ # ***** END LICENSE BLOCK ***** */ -.listBox { - margin: 2px 2px; - border: 1px inset #CCD0DD; - background-color: #FFFFFF; -} - .buttonBox { margin: 0px 3px 0px 0px !important; } @@ -79,36 +73,21 @@ #catGeneralButton { list-style-image: url("chrome://browser/skin/pref/general.gif"); } #catPrivacyButton { list-style-image: url("chrome://browser/skin/pref/privacy.gif"); } #catFeaturesbutton { list-style-image: url("chrome://browser/skin/pref/features.gif"); } +#catDownloadsButton { list-style-image: url("chrome://browser/skin/pref/downloads.gif"); } #catThemesButton { list-style-image: url("chrome://browser/skin/pref/themes.gif"); } #catExtButton { list-style-image: url("chrome://browser/skin/pref/extensions.gif"); } -#catFontsButton { list-style-image: url("chrome://browser/skin/pref/fonts.gif"); } -#catProxiesButton { list-style-image: url("chrome://browser/skin/pref/proxies.gif"); } -#catDownloadsButton { list-style-image: url("chrome://browser/skin/icons/downloads.gif"); } - -.indent { - margin-left: 23px; - margin-right: 23px; -} - -.uniWidthButton { - min-width: 8em; -} +#catAdvancedButton { list-style-image: url("chrome://browser/skin/pref/advanced.gif"); } -/** Privacy Panel Expander Box **/ -#privacyCategories { +expander { margin: 2px; - padding: 2px; -} - -.settingsContainer { - padding: 2px 0px 3px 15px; + border: 1px solid transparent; } -.expanderButton { - cursor: pointer; +#privacyCategories > expander[open="true"] { + background-color: #CCD0DD; + border: 1px solid #9999CC; } -/* Themes/Extensions Items */ .themesLink { margin-left: 0px; text-decoration: underline; @@ -119,22 +98,3 @@ .themesLink:active { color: red; } - -#previewImageContainer { - height: 93px; - padding: 1px; -} - -#previewImage { - /* remember: width/height includes border, so 2px bigger for a 1px border */ - max-width: 357px; - min-width: 357px; - max-height: 87px; - min-height: 87px; - border: 1px solid #666699; -} - -.extensionInfoArea { - background-color: #FFFFFF !important; - height: 10em; -} diff --git a/EarlyBlue/browser/pref/proxies.gif b/EarlyBlue/browser/pref/proxies.gif deleted file mode 100644 index c1bb152d..00000000 Binary files a/EarlyBlue/browser/pref/proxies.gif and /dev/null differ diff --git a/EarlyBlue/browser/pref/themes.gif b/EarlyBlue/browser/pref/themes.gif index 2322237b..7d2916f1 100644 Binary files a/EarlyBlue/browser/pref/themes.gif and b/EarlyBlue/browser/pref/themes.gif differ diff --git a/EarlyBlue/communicator/cookie/status-cookie.gif b/EarlyBlue/communicator/cookie/status-cookie.gif new file mode 100644 index 00000000..21850c88 Binary files /dev/null and b/EarlyBlue/communicator/cookie/status-cookie.gif differ diff --git a/EarlyBlue/communicator/cookie/taskbar-cookie.gif b/EarlyBlue/communicator/cookie/taskbar-cookie.gif new file mode 100644 index 00000000..25eabe49 Binary files /dev/null and b/EarlyBlue/communicator/cookie/taskbar-cookie.gif differ diff --git a/EarlyBlue/contents.rdf b/EarlyBlue/contents.rdf index b8818981..36a5a4f0 100644 --- a/EarlyBlue/contents.rdf +++ b/EarlyBlue/contents.rdf @@ -26,6 +26,7 @@ + @@ -41,4 +42,5 @@ --> + diff --git a/EarlyBlue/editor/icons/form-disabled.gif b/EarlyBlue/editor/icons/form-disabled.gif new file mode 100644 index 00000000..02d6dabf Binary files /dev/null and b/EarlyBlue/editor/icons/form-disabled.gif differ diff --git a/EarlyBlue/editor/icons/form.gif b/EarlyBlue/editor/icons/form.gif new file mode 100644 index 00000000..904114ab Binary files /dev/null and b/EarlyBlue/editor/icons/form.gif differ diff --git a/EarlyBlue/editor/icons/notpinned-disabled.gif b/EarlyBlue/editor/icons/notpinned-disabled.gif new file mode 100644 index 00000000..13e18008 Binary files /dev/null and b/EarlyBlue/editor/icons/notpinned-disabled.gif differ diff --git a/EarlyBlue/editor/icons/notpinned.gif b/EarlyBlue/editor/icons/notpinned.gif new file mode 100644 index 00000000..937a6a98 Binary files /dev/null and b/EarlyBlue/editor/icons/notpinned.gif differ diff --git a/EarlyBlue/editor/icons/pinned-disabled.gif b/EarlyBlue/editor/icons/pinned-disabled.gif new file mode 100644 index 00000000..a98b2b71 Binary files /dev/null and b/EarlyBlue/editor/icons/pinned-disabled.gif differ diff --git a/EarlyBlue/editor/icons/pinned.gif b/EarlyBlue/editor/icons/pinned.gif new file mode 100644 index 00000000..d6abacde Binary files /dev/null and b/EarlyBlue/editor/icons/pinned.gif differ diff --git a/EarlyBlue/mozapps/downloads/unknownContentType.css b/EarlyBlue/mozapps/downloads/unknownContentType.css new file mode 100644 index 00000000..8411b1cc --- /dev/null +++ b/EarlyBlue/mozapps/downloads/unknownContentType.css @@ -0,0 +1,18 @@ + +#from { + margin-top: 1px; +} + +#location { + font-weight: bold; +} + +#contentTypeImage { + margin: 0px 5px 0px 0px; +} + +.small-indent { + margin-left: 15px; + margin-right: 15px; +} + diff --git a/EarlyBlue/mozapps/pref/check.gif b/EarlyBlue/mozapps/pref/check.gif new file mode 100644 index 00000000..0d510637 Binary files /dev/null and b/EarlyBlue/mozapps/pref/check.gif differ diff --git a/EarlyBlue/mozapps/pref/dot.gif b/EarlyBlue/mozapps/pref/dot.gif new file mode 100755 index 00000000..ae3d21f1 Binary files /dev/null and b/EarlyBlue/mozapps/pref/dot.gif differ diff --git a/EarlyBlue/mozapps/pref/pref.css b/EarlyBlue/mozapps/pref/pref.css new file mode 100644 index 00000000..cac386ff --- /dev/null +++ b/EarlyBlue/mozapps/pref/pref.css @@ -0,0 +1,101 @@ +/* +# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- +# 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 +# Doron Rosenberg. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Ben Goodger (Original Author) +# 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 ***** +*/ + +.listBox { + margin: 2px 2px; + border: 1px inset #CCD0DD; + background-color: #FFFFFF; +} + +.indent { + margin-left: 23px; + margin-right: 23px; +} + +.small-indent { + margin-left: 15px; +} + +.uniWidthButton { + min-width: 8em; +} + +/** Privacy/Advanced Panels Expander Boxes **/ +.settingsBox { + margin: 2px; + padding: 2px; +} + +#fileExtension { + width: 5em; +} + +#fileExtension.pluginsList { + width: 5.5em; +} + +#typeIcon, +.extensionChildren::-moz-tree-image(fileExtension), +.pluginTypesChildren::-moz-tree-image(fileExtension) { + margin: 0px 5px 0px 0px; +} + +.pluginTypesChildren::-moz-tree-image(pluginEnabled) { + margin: 0px 5px 0px 0px; + list-style-image: url(chrome://mozapps/skin/pref/dot.gif); +} + +.pluginTypesChildren::-moz-tree-image(pluginEnabled, enabled) { + margin: 0px 5px 0px 0px; + list-style-image: url(chrome://mozapps/skin/pref/check.gif); +} + +.biggerIndent { + margin-left: 28px; +} + +#typeField { + font-weight: bold; +} + +#defaultAppName { + margin-left: 6px !important; +} +