diff --git a/mozilla/toolkit/components/alerts/resources/skin/alert.css b/mozilla/toolkit/components/alerts/resources/skin/alert.css deleted file mode 100644 index 66a65e628da..00000000000 --- a/mozilla/toolkit/components/alerts/resources/skin/alert.css +++ /dev/null @@ -1,84 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: NPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 1998 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Scott MacGregor - * - * 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 NPL, 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 NPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* ===== alert.css ===================================================== - == Styles specific to the alerts dialog. - ======================================================================= */ - -@import url("chrome://global/skin/"); - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -.alertBox { - border-right: 2px solid #7B969C; - border-bottom: 2px solid #7B969C; - border-top: 2px solid #7B969C; - border-left: 2px solid #7B969C; - background-color: -moz-Dialog; - min-height: 50px; -} - -.alertImageBox { - margin-left: 4px; - margin-right: 6px; - min-height: 46px; -} - -.alertTitle { - font-weight: bold; -} - -.alertText { - margin-right: 6px; -} - -.alertText[clickable="true"] { - cursor: pointer; - color: #1455D6; - text-decoration: underline; -} - -.alertText[clickable="true"]:hover:active { - color: #424F63; -} - -.alertTextBox -{ - padding-right: 10px; - padding-top: 5px; -} - diff --git a/mozilla/toolkit/components/filepicker/skin/Filepicker.png b/mozilla/toolkit/components/filepicker/skin/Filepicker.png deleted file mode 100644 index d44dc682c46..00000000000 Binary files a/mozilla/toolkit/components/filepicker/skin/Filepicker.png and /dev/null differ diff --git a/mozilla/toolkit/components/filepicker/skin/filepicker.css b/mozilla/toolkit/components/filepicker/skin/filepicker.css deleted file mode 100644 index 329ab16f4ca..00000000000 --- a/mozilla/toolkit/components/filepicker/skin/filepicker.css +++ /dev/null @@ -1,81 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Brian Ryner (bryner@brianryner.com) - */ - -/* ===== filepicker.css ================================================= - == Styles used by the File Picker dialog. - ======================================================================= */ - -@import url("chrome://global/skin/"); - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: column widths ::::: */ - -#FilenameColumn, -#ContentLengthColumn, -#LastModifiedDateColumn { - width: 100px; -} - -/* ::::: file/directory items ::::: */ - -treechildren::-moz-tree-image(FilenameColumn, directory) { - list-style-image: url("chrome://global/skin/icons/folder-item.png"); - -moz-image-region: rect(0px, 32px, 16px, 16px); -} - -treechildren::-moz-tree-image(FilenameColumn, file) { - list-style-image: url("chrome://global/skin/icons/folder-item.png"); - -moz-image-region: rect(16px, 16px, 32px, 0px); -} - -/* ::::: focus rules ::::: */ - -#directoryTree > treerows > .tree-bodybox { - border: 1px solid transparent; -} - -#directoryTree:focus > treerows > .tree-bodybox { - border-color: #000000; -} - -/* ::::: button items ::::: */ - -.up-button { - list-style-image: url("chrome://global/skin/Filepicker.png"); - -moz-image-region: rect(0px 20px 20px 0px); - max-width: 36px; -} - -.home-button { - list-style-image: url("chrome://global/skin/Filepicker.png"); - -moz-image-region: rect(0px 40px 20px 20px); - max-width: 36px; -} - -.new-dir-button { - list-style-image: url("chrome://global/skin/Filepicker.png"); - -moz-image-region: rect(0px, 60px, 20px, 40px); - max-width: 36px; -} diff --git a/mozilla/toolkit/mozapps/downloads/skin/Makefile.in b/mozilla/toolkit/mozapps/downloads/skin/Makefile.in deleted file mode 100755 index 91d74e11e6c..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/Makefile.in +++ /dev/null @@ -1,30 +0,0 @@ -# -# The contents of this file are subject to the Netscape 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/NPL/ -# -# 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 Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# - -DEPTH = ../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -include $(topsrcdir)/config/rules.mk - diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadCleanup.png b/mozilla/toolkit/mozapps/downloads/skin/downloadCleanup.png deleted file mode 100644 index cb9e641a97d..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/downloadCleanup.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadCleanupDisabled.png b/mozilla/toolkit/mozapps/downloads/skin/downloadCleanupDisabled.png deleted file mode 100644 index 0483a41f11d..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/downloadCleanupDisabled.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadFader.png b/mozilla/toolkit/mozapps/downloads/skin/downloadFader.png deleted file mode 100644 index 7b4e8cc83e4..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/downloadFader.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadIcon.png b/mozilla/toolkit/mozapps/downloads/skin/downloadIcon.png deleted file mode 100644 index d33a42e705e..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/downloadIcon.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadOptions.png b/mozilla/toolkit/mozapps/downloads/skin/downloadOptions.png deleted file mode 100644 index c37fa6ba7d2..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/downloadOptions.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadSelected.png b/mozilla/toolkit/mozapps/downloads/skin/downloadSelected.png deleted file mode 100644 index 9a1579381d0..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/downloadSelected.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadmanager.css b/mozilla/toolkit/mozapps/downloads/skin/downloadmanager.css deleted file mode 100755 index 7ef89b73200..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/downloadmanager.css +++ /dev/null @@ -1,54 +0,0 @@ -.bold { - font-weight: bold; -} - -#downloadView { - background-color: Window; - padding: 10px 0px 10px 10px; -} - -download { - padding: 3px 0px 3px 3px; - min-height: 25px; -} - -#downloadHistoryView > treechildren::-moz-tree-image(Name) { - margin-right: 2px; -} - -.indented { - margin-left: 17px; -} - -listcell { - margin-top: 2px; - margin-bottom: 2px; - margin-left: 4px; - margin-right: 4px; -} - -.link { - text-decoration: underline; - color: blue; - cursor: pointer; - -moz-user-focus: normal; - border: 1px solid transparent; -} - -.link:hover:active { - color: red; -} - -.link:focus { - border: 1px dotted black; -} - -#download-splitter { - border: none; - border-bottom: 1px solid ThreeDLightShadow; - -moz-appearance: toolbox; -} - -#close-button { - list-style-image: url("chrome://global/skin/icons/Close.gif"); -} diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloads.css b/mozilla/toolkit/mozapps/downloads/skin/downloads.css deleted file mode 100644 index 89e84de260f..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/downloads.css +++ /dev/null @@ -1,101 +0,0 @@ -#downloadManager { - background-color: ThreeDFace; -} - -/* Download View */ -#downloadView { - -moz-binding: url("chrome://mozapps/skin/downloads/downloads.xml#download-view"); - margin: 10px 10px 5px 10px; - -moz-appearance: listbox; - -moz-user-focus: normal; -} - -.downloadViewInner2 { - background-image: url("chrome://mozapps/skin/downloads/viewFader.png"); - padding: 0px; -} - -.downloadViewInner1 { - background-color: Window; - background-image: url("chrome://mozapps/skin/downloads/downloadsBG.png"); - background-attachment: fixed; - background-repeat: no-repeat; - background-position: bottom right; -} - -/* Download Manager Command Bar */ -#commandBar { - padding: 0px 10px 5px 10px; -} - -#cleanUpButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/downloads/downloadCleanup.png"); -} - -#optionsButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/downloads/downloadOptions.png"); -} - -#cleanUpButton .button-icon, #optionsButton .button-icon { - margin: 0px 5px 0px 0px !important; -} - -#cleanUpButton[disabled="true"] { - list-style-image: url("chrome://mozapps/skin/downloads/downloadCleanupDisabled.png"); -} - -#commandBarSeparator { - margin-left: 5px; -} - -/* Download View Items */ -download { - padding: 13px 10px 13px 13px; - min-height: 25px; - border-bottom: 1px dotted #C0C0C0; -} - -download[selected="true"] { - background-image: url("chrome://mozapps/skin/downloads/downloadSelected.png") !important; - border-bottom: 1px dotted #7F9DB9; -} - -download[state="0"], download[state="-1"], download[state="4"], -download[state="5"], download[state="6"] { - background-color: transparent; - background-image: url("chrome://mozapps/skin/downloads/downloadFader.png"); -} - -/* Download View Items, implementation */ -.downloadContentBox { - -moz-opacity: 0.0; -} - -.downloadContentBox[animated="true"] { - -moz-opacity: 1.0; -} - -.downloadTypeIcon { - margin-right: 10px; -} - -.link { - text-decoration: underline; - color: blue; - cursor: pointer; - -moz-user-focus: normal; - border: 1px solid transparent; -} - -.link:hover:active { - color: red; -} - -.link:focus { - border: 1px dotted black; -} - diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloads.xml b/mozilla/toolkit/mozapps/downloads/skin/downloads.xml deleted file mode 100644 index e4552d666c1..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/downloads.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/mozilla/toolkit/mozapps/downloads/skin/downloadsBG.png b/mozilla/toolkit/mozapps/downloads/skin/downloadsBG.png deleted file mode 100644 index 008a26dc2e2..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/downloadsBG.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/jar.mn b/mozilla/toolkit/mozapps/downloads/skin/jar.mn deleted file mode 100755 index 29755a2070f..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/jar.mn +++ /dev/null @@ -1,13 +0,0 @@ -classic.jar: - skin/classic/mozapps/downloads/unknownContentType.css - skin/classic/mozapps/downloads/viewFader.png - skin/classic/mozapps/downloads/downloadFader.png - skin/classic/mozapps/downloads/downloadSelected.png - skin/classic/mozapps/downloads/downloadsBG.png - skin/classic/mozapps/downloads/downloadIcon.png - skin/classic/mozapps/downloads/downloadCleanup.png - skin/classic/mozapps/downloads/downloadCleanupDisabled.png - skin/classic/mozapps/downloads/downloadOptions.png - skin/classic/mozapps/downloads/downloads.css - skin/classic/mozapps/downloads/downloads.xml - \ No newline at end of file diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/Makefile.in b/mozilla/toolkit/mozapps/downloads/skin/mac/Makefile.in deleted file mode 100755 index 46eb1b9484e..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/mac/Makefile.in +++ /dev/null @@ -1,30 +0,0 @@ -# -# The contents of this file are subject to the Netscape 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/NPL/ -# -# 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 Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# - -DEPTH = ../../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -include $(topsrcdir)/config/rules.mk - diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/background-gradient.png b/mozilla/toolkit/mozapps/downloads/skin/mac/background-gradient.png deleted file mode 100644 index cee3ea83da8..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/background-gradient.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/background-stripe.png b/mozilla/toolkit/mozapps/downloads/skin/mac/background-stripe.png deleted file mode 100644 index 50a18db9a42..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/background-stripe.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button-disabled.png b/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button-disabled.png deleted file mode 100644 index 7a5d49f0a33..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button-disabled.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button-pressed.png b/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button-pressed.png deleted file mode 100644 index e0c8ae425c9..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button-pressed.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button.png b/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button.png deleted file mode 100644 index f5d32498402..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/cleanup-button.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/download-inprogress.png b/mozilla/toolkit/mozapps/downloads/skin/mac/download-inprogress.png deleted file mode 100644 index 43855073b5a..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/download-inprogress.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/downloads.css b/mozilla/toolkit/mozapps/downloads/skin/mac/downloads.css deleted file mode 100644 index 4d0703682a1..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/mac/downloads.css +++ /dev/null @@ -1,122 +0,0 @@ -/* Download View */ -#downloadView { - -moz-binding: url("chrome://mozapps/skin/downloads/downloads.xml#download-view"); - margin: 0px; - -moz-user-focus: normal; - border-bottom: 1px solid #8E8E8E; - -} - -.downloadViewInner2 { - background: url("chrome://mozapps/skin/downloads/background-stripe.png") #FFFFFF repeat; - padding: 0px; -} - -/* Download Manager Command Bar */ -#commandBar { -} - - -#cleanUpButton, #optionsButton { - -moz-appearance: none; - min-width: 32px; - height: 26px; - margin: 2px; - -moz-user-focus: ignore; -} - -#cleanUpButton { - background: url("chrome://mozapps/skin/downloads/cleanup-button.png") no-repeat; -} - -#cleanUpButton[disabled=true] { - background: url("chrome://mozapps/skin/downloads/cleanup-button-disabled.png") no-repeat !important; -} - -#cleanUpButton:hover:active { - background: url("chrome://mozapps/skin/downloads/cleanup-button-pressed.png") no-repeat; -} - -#optionsButton { - background: url("chrome://mozapps/skin/downloads/options-button.png") no-repeat; -} - -#optionsButton:hover:active { - background: url("chrome://mozapps/skin/downloads/options-button-pressed.png") no-repeat; -} - -#optionsButton .button-text, #cleanUpButton .button-text { - display: none; -} - -#commandBarSeparator { - display:none; -} - -/* Download View Items */ -download { - padding: 4px 8px 4px 4px; - height: 32px !important; - min-height: 40px !important; - border-bottom: 1px dashed #C0C0C0; -} - -download[selected="true"] { - background-color: Highlight !important; - background-image: none !important; -} - -download[state="0"], download[state="-1"], download[state="4"] { - font: icon !important; - padding-bottom: 7px; - padding-top: 7px; - min-height: 80px !important; - background: url("chrome://mozapps/skin/downloads/background-gradient.png") repeat; -} - -label:last-child { - color: #666666; - font-size: 95%; -} - -/* Download View Items, implementation */ - - -.link { - text-decoration: underline; - color: blue !important; - -moz-user-focus: normal; - font-size: 100% !important; - margin-left: 6px; - padding: 0px; - -} - -.link:hover:active { -} - -progressmeter { - margin: 6px 6px 4px 6px; - min-height:19px; - -moz-appearance: none; -} - -.progress-bar { - background: url("chrome://mozapps/skin/downloads/progress-bar.gif") repeat-x !important; - border-left: 1px solid #D9D9D9 !important; -} - -download[state="4"] .progress-bar { - background: url("chrome://mozapps/skin/downloads/progress-bar-paused.gif") repeat-x !important; -} - -.progress-remainder { - background: url("chrome://mozapps/skin/downloads/progress-remainder.gif") repeat-x !important; - border-right: 1px solid #DEDEDE !important; -} - -dialog label { - color: #000000 !important; - font-size: 100% !important; - font: icon; -} diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/downloads.xml b/mozilla/toolkit/mozapps/downloads/skin/mac/downloads.xml deleted file mode 100644 index e4552d666c1..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/mac/downloads.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/jar.mn b/mozilla/toolkit/mozapps/downloads/skin/mac/jar.mn deleted file mode 100755 index 91795fdba94..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/mac/jar.mn +++ /dev/null @@ -1,16 +0,0 @@ -classic.jar: - skin/classic/mozapps/downloads/unknownContentType.css - skin/classic/mozapps/downloads/background-gradient.png - skin/classic/mozapps/downloads/background-stripe.png - skin/classic/mozapps/downloads/cleanup-button.png - skin/classic/mozapps/downloads/cleanup-button-pressed.png - skin/classic/mozapps/downloads/cleanup-button-disabled.png - skin/classic/mozapps/downloads/download-inprogress.png - skin/classic/mozapps/downloads/options-button.png - skin/classic/mozapps/downloads/options-button-pressed.png - skin/classic/mozapps/downloads/progress-bar-paused.gif - skin/classic/mozapps/downloads/progress-bar.gif - skin/classic/mozapps/downloads/progress-remainder.gif - skin/classic/mozapps/downloads/downloads.css - skin/classic/mozapps/downloads/downloads.xml - \ No newline at end of file diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/options-button-pressed.png b/mozilla/toolkit/mozapps/downloads/skin/mac/options-button-pressed.png deleted file mode 100644 index cdeaf60e088..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/options-button-pressed.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/options-button.png b/mozilla/toolkit/mozapps/downloads/skin/mac/options-button.png deleted file mode 100644 index fca827d0566..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/options-button.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/progress-bar-paused.gif b/mozilla/toolkit/mozapps/downloads/skin/mac/progress-bar-paused.gif deleted file mode 100644 index 9f77291c047..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/progress-bar-paused.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/progress-bar.gif b/mozilla/toolkit/mozapps/downloads/skin/mac/progress-bar.gif deleted file mode 100644 index 91bc2fedc11..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/progress-bar.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/progress-remainder.gif b/mozilla/toolkit/mozapps/downloads/skin/mac/progress-remainder.gif deleted file mode 100644 index 4b6356ed202..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/mac/progress-remainder.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/downloads/skin/mac/unknownContentType.css b/mozilla/toolkit/mozapps/downloads/skin/mac/unknownContentType.css deleted file mode 100644 index 2e3cbdff95c..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/mac/unknownContentType.css +++ /dev/null @@ -1,26 +0,0 @@ -#unknownContentType { - font: menu; -} - -description { - font-weight: bold; -} - -.plain { - background-color: transparent; - background-image: none; - border: none; -} - -#contentTypeImage { - margin-right: 3px; - width: 16px; -} - -#container > hbox { - margin-left: 12px; -} - -#container > .small-indent { - margin-left: 0px; -} \ No newline at end of file diff --git a/mozilla/toolkit/mozapps/downloads/skin/unknownContentType.css b/mozilla/toolkit/mozapps/downloads/skin/unknownContentType.css deleted file mode 100755 index 8411b1cc46f..00000000000 --- a/mozilla/toolkit/mozapps/downloads/skin/unknownContentType.css +++ /dev/null @@ -1,18 +0,0 @@ - -#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/mozilla/toolkit/mozapps/downloads/skin/viewFader.png b/mozilla/toolkit/mozapps/downloads/skin/viewFader.png deleted file mode 100644 index 500425175d8..00000000000 Binary files a/mozilla/toolkit/mozapps/downloads/skin/viewFader.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/about.css b/mozilla/toolkit/mozapps/extensions/skin/about.css deleted file mode 100644 index 9dcb790b41a..00000000000 --- a/mozilla/toolkit/mozapps/extensions/skin/about.css +++ /dev/null @@ -1,54 +0,0 @@ -#clientBox { - background-color: #FFFFFF; - color: #000000; -} - -#extensionName { - font-size: large; - font-weight: bold; -} - -#extensionVersion { - font-weight: bold; - color: #909090; -} - -#extensionHomepage { - color: #0000FF; - text-decoration: underline !important; - cursor: pointer; -} - -#genericAbout { - padding: 0px 0px 10px 0px; - min-height: 200px; - width: 30em; -} - -#groove { - margin-top: 0px; -} - -#clientBox { - padding: 10px; -} - -#extensionDescription { - color: #404040; -} - -#extensionDescription, #extensionContributors, #creatorBox, #contributorsBox { - margin-left: 6px; -} - -#extensionCreator, .contributor { - margin: 0px; -} - -#extensionCreatorLabel, #extensionContributors { - border-top: 2px solid #C0C0C0; - padding: 2px 0px 3px 0px; - margin-top: 3px; - font-weight: bold; -} - diff --git a/mozilla/toolkit/mozapps/extensions/skin/actionbuttons.png b/mozilla/toolkit/mozapps/extensions/skin/actionbuttons.png deleted file mode 100644 index 5a529de87a8..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/actionbuttons.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/extensions.css b/mozilla/toolkit/mozapps/extensions/skin/extensions.css deleted file mode 100644 index 2910fc1771a..00000000000 --- a/mozilla/toolkit/mozapps/extensions/skin/extensions.css +++ /dev/null @@ -1,140 +0,0 @@ -#extensionManager { - background-color: ThreeDFace; -} - -#extensionsView[state="extensions"] { - background-image: url("chrome://mozapps/skin/extensions/viewWatermarkExtensions.png"); -} - -#extensionsView[state="themes"] { - background-image: url("chrome://mozapps/skin/extensions/viewWatermarkThemes.png"); -} - -/* Extension Manager Command Bar */ -#commandBar { - padding: 0px 10px 5px 10px; -} - -#uninstallButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(0px, 20px, 20px, 0px) !important; -} - -#uninstallButton[disabled="true"] { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(20px, 20px, 40px, 0px) !important; -} - -#updateButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(0px, 40px, 20px, 20px) !important; -} - -#updateButton[disabled="true"] { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(20px, 40px, 40px, 20px) !important; -} - -#useThemeButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(0px, 60px, 20px, 40px) !important; -} - -#useThemeButton[disabled="true"] { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(20px, 60px, 40px, 40px) !important; -} - -#uninstallButton .button-icon, #updateButton .button-icon { - margin: 0px 5px 0px 0px !important; -} - -.commandBarSeparator { - margin-left: 5px; -} - -#getMore { - color: #0000FF; - text-decoration: underline !important; - cursor: pointer; - text-align: right; -} - -/* Extension Buttons (Iconic buttons in each extension item) */ -.extension-button { - width: 10px; - height: 10px; - margin: 1px; -} - -.extension-button[anonid="options-button"] { - background-color: Blue; -} - -.extension-button[anonid="about-button"] { - background-color: Red; -} - -.extension-button[anonid="homepage-button"] { - background-color: Green; -} - -/* Extension List Items */ -extension[selected="true"] { - background-image: url("chrome://mozapps/skin/shared/itemSelected.png"); -} - -extension { - padding: 13px 10px 13px 13px; - min-height: 25px; - border-bottom: 1px dotted #C0C0C0; - background-image: url("chrome://mozapps/skin/shared/itemFader.png"); -} - -extension[disabled="true"] { - color: GrayText; - background-image: none; -} - -extension[disabled="true"][selected="true"] { - background-image: url("chrome://mozapps/skin/shared/itemSelected.png"); -} - -extension[disabled="true"] .extension-icon { - opacity: 0.3; -} - -.extension-item-name { - font-weight: bold; -} - -.extension-icon { - margin-right: 10px; -} - -.previewText { - font-size: larger; - font-weight: bold; - color: ThreeDShadow; - text-align: center; -} - -extension[itemType="theme"] { - padding: 7px 5px 7px 6px; -} - -extension[itemType="theme"] .extension-icon { - margin-right: 3px; -} - -.themePreviewArea { - -moz-appearance: listbox; - margin: 10px 10px 5px 5px; -} - diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/about.css b/mozilla/toolkit/mozapps/extensions/skin/mac/about.css deleted file mode 100644 index 9dcb790b41a..00000000000 --- a/mozilla/toolkit/mozapps/extensions/skin/mac/about.css +++ /dev/null @@ -1,54 +0,0 @@ -#clientBox { - background-color: #FFFFFF; - color: #000000; -} - -#extensionName { - font-size: large; - font-weight: bold; -} - -#extensionVersion { - font-weight: bold; - color: #909090; -} - -#extensionHomepage { - color: #0000FF; - text-decoration: underline !important; - cursor: pointer; -} - -#genericAbout { - padding: 0px 0px 10px 0px; - min-height: 200px; - width: 30em; -} - -#groove { - margin-top: 0px; -} - -#clientBox { - padding: 10px; -} - -#extensionDescription { - color: #404040; -} - -#extensionDescription, #extensionContributors, #creatorBox, #contributorsBox { - margin-left: 6px; -} - -#extensionCreator, .contributor { - margin: 0px; -} - -#extensionCreatorLabel, #extensionContributors { - border-top: 2px solid #C0C0C0; - padding: 2px 0px 3px 0px; - margin-top: 3px; - font-weight: bold; -} - diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/actionbuttons.png b/mozilla/toolkit/mozapps/extensions/skin/mac/actionbuttons.png deleted file mode 100644 index 87d9cc874ee..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/mac/actionbuttons.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionAbout.png b/mozilla/toolkit/mozapps/extensions/skin/mac/extensionAbout.png deleted file mode 100644 index 66233834dcf..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionAbout.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionHome.png b/mozilla/toolkit/mozapps/extensions/skin/mac/extensionHome.png deleted file mode 100644 index 2581d7648fe..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionHome.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionItem.png b/mozilla/toolkit/mozapps/extensions/skin/mac/extensionItem.png deleted file mode 100644 index 9ad38c56ba5..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionItem.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionOptions.png b/mozilla/toolkit/mozapps/extensions/skin/mac/extensionOptions.png deleted file mode 100644 index 5de6d0d58cc..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/mac/extensionOptions.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/extensions.css b/mozilla/toolkit/mozapps/extensions/skin/mac/extensions.css deleted file mode 100644 index 9c56f226984..00000000000 --- a/mozilla/toolkit/mozapps/extensions/skin/mac/extensions.css +++ /dev/null @@ -1,191 +0,0 @@ -#extensionManager { - padding: 0; -} - -view { - -moz-appearance: none !important; - -moz-user-focus: normal; - margin: 0; - padding: 0; -} - -#extensionsView[state="themes"] { - margin: 8px 8px 3px 8px; - border: 1px solid #bebebe; -} - -#extensionsView[state="extensions"] { - margin-bottom: 1px; - border-bottom: 1px solid #bebebe; -} - -/* Extension Manager Command Bar */ -#commandBar { - padding: 5px 8px 6px 8px; -} - -#uninstallButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(0px, 32px, 26px, 0px) !important; -} - -#uninstallButton:hover:active { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(26px, 32px, 52px, 0px); -} - -#uninstallButton[disabled="true"] { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(52px, 32px, 78px, 0px) !important; -} - -#updateButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(0px, 64px, 26px, 32px); - -moz-appearance: none; -} - -#updateButton:hover:active { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(26px, 64px, 52px, 32px); -} - -#updateButton[disabled="true"] { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(52px, 64px, 78px, 32px) !important; -} - -#useThemeButton { - margin: 0px; - -moz-user-focus: ignore; - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(0px, 96px, 26px, 64px) !important; -} - -#useThemeButton:hover:active { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(26px, 96px, 52px, 64px); -} - -#useThemeButton[disabled="true"] { - list-style-image: url("chrome://mozapps/skin/extensions/actionbuttons.png"); - -moz-image-region: rect(52px, 96px, 78px, 64px) !important; -} - -#uninstallButton, #updateButton, #useThemeButton { - -moz-appearance: none !important; - width: 32px !important; - max-width: 32px !important; - padding: 0 !important; - margin: 0 !important; -} - -.button-text { - display: none; -} - -.commandBarSeparator { - width: 3px; -} - -#getMore { - color: #0000FF; - text-decoration: underline !important; - cursor: pointer; - text-align: right; -} - -/* Extension Buttons (Iconic buttons in each extension item) */ -.extension-button { - width: 16px; - height: 16px; - margin: 1px; -} - -.extension-button[anonid="options-button"] { - background-image: url("chrome://mozapps/skin/extensions/extensionOptions.png"); -} - -.extension-button[anonid="about-button"] { - background-image: url("chrome://mozapps/skin/extensions/extensionAbout.png"); -} - -.extension-button[anonid="homepage-button"] { - background-image: url("chrome://mozapps/skin/extensions/extensionHome.png"); -} - -/* Extension List Items */ -extension[selected="true"] { - background-color: Highlight; -} - -extension { - padding: 10px; - min-height: 25px; - border-bottom: 1px dashed #C0C0C0; - margin: 0; -} - -extension[odd] { - background-color: #F3F3F3; -} - -.extension-icon { - list-style-image: url("chrome://mozapps/skin/extensions/extensionItem.png"); -} - -extension[disabled="true"] { - color: GrayText; - background-image: none; -} - -extension[disabled="true"][selected="true"] { - background-image: url("chrome://mozapps/skin/shared/itemSelected.png"); -} - -extension[disabled="true"] .extension-icon { - opacity: 0.3; -} - -.extension-item-name { - font-weight: bold; -} - -.extension-item-description, .extension-item-creator { - color: #505050; -} -.extension-icon { - margin-right: 10px; -} - -.previewText { - font-size: larger; - font-weight: bold; - color: #999; - text-align: center; -} - -extension[itemType="theme"] { - padding: 7px 5px 7px 6px; -} - -extension[itemType="theme"] .extension-icon { - margin-right: 3px; -} - -.themePreviewArea { - margin: 8px 8px 3px 0px !important; - padding: 5px 5px 0px 5px; - border: 3px solid transparent; - -moz-border-top-colors: #9b9b9b #c8c8c8 #e1e1e1 ; - -moz-border-right-colors: #c4c4c4 #e1e1e1 #e4e4e4; - -moz-border-bottom-colors: #d6d6d6 #e2e2e2 #e4e4e4; - -moz-border-left-colors: #c4c4c4 #e1e1e1 #e4e4e4; - background: url("chrome://global/skin/10pct_transparent_grey.png") repeat !important; - -moz-border-radius: 3px; -} - diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/themeGeneric.png b/mozilla/toolkit/mozapps/extensions/skin/mac/themeGeneric.png deleted file mode 100644 index 550672b8792..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/mac/themeGeneric.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/mac/xpinstallItemGeneric.png b/mozilla/toolkit/mozapps/extensions/skin/mac/xpinstallItemGeneric.png deleted file mode 100644 index 550672b8792..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/mac/xpinstallItemGeneric.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/placeholder.gif b/mozilla/toolkit/mozapps/extensions/skin/placeholder.gif deleted file mode 100644 index 7c24478ab14..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/placeholder.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/themeGeneric.png b/mozilla/toolkit/mozapps/extensions/skin/themeGeneric.png deleted file mode 100644 index 550672b8792..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/themeGeneric.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/viewWatermark.png b/mozilla/toolkit/mozapps/extensions/skin/viewWatermark.png deleted file mode 100644 index ab4265b8705..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/viewWatermark.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/viewWatermarkExtensions.png b/mozilla/toolkit/mozapps/extensions/skin/viewWatermarkExtensions.png deleted file mode 100644 index ab4265b8705..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/viewWatermarkExtensions.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/extensions/skin/viewWatermarkThemes.png b/mozilla/toolkit/mozapps/extensions/skin/viewWatermarkThemes.png deleted file mode 100644 index 20d418fc533..00000000000 Binary files a/mozilla/toolkit/mozapps/extensions/skin/viewWatermarkThemes.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/pref/skin/Makefile.in b/mozilla/toolkit/mozapps/pref/skin/Makefile.in deleted file mode 100755 index a732af80633..00000000000 --- a/mozilla/toolkit/mozapps/pref/skin/Makefile.in +++ /dev/null @@ -1,46 +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 the Mozilla Browser code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2002 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Ben Goodger -# -# 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 ***** - -DEPTH = ../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -include $(topsrcdir)/config/rules.mk - diff --git a/mozilla/toolkit/mozapps/pref/skin/check.gif b/mozilla/toolkit/mozapps/pref/skin/check.gif deleted file mode 100755 index 7c84e322afc..00000000000 Binary files a/mozilla/toolkit/mozapps/pref/skin/check.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/pref/skin/dot.gif b/mozilla/toolkit/mozapps/pref/skin/dot.gif deleted file mode 100755 index ae3d21f11c5..00000000000 Binary files a/mozilla/toolkit/mozapps/pref/skin/dot.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/pref/skin/jar.mn b/mozilla/toolkit/mozapps/pref/skin/jar.mn deleted file mode 100755 index dc0aa1a0111..00000000000 --- a/mozilla/toolkit/mozapps/pref/skin/jar.mn +++ /dev/null @@ -1,4 +0,0 @@ -classic.jar: - skin/classic/mozapps/pref/pref.css - skin/classic/mozapps/pref/dot.gif - skin/classic/mozapps/pref/check.gif diff --git a/mozilla/toolkit/mozapps/pref/skin/mac/Makefile.in b/mozilla/toolkit/mozapps/pref/skin/mac/Makefile.in deleted file mode 100755 index 26b3b6339f4..00000000000 --- a/mozilla/toolkit/mozapps/pref/skin/mac/Makefile.in +++ /dev/null @@ -1,46 +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 the Mozilla Browser code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2002 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Ben Goodger -# -# 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 ***** - -DEPTH = ../../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -include $(topsrcdir)/config/rules.mk - diff --git a/mozilla/toolkit/mozapps/pref/skin/mac/check.gif b/mozilla/toolkit/mozapps/pref/skin/mac/check.gif deleted file mode 100644 index 7c84e322afc..00000000000 Binary files a/mozilla/toolkit/mozapps/pref/skin/mac/check.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/pref/skin/mac/dot.gif b/mozilla/toolkit/mozapps/pref/skin/mac/dot.gif deleted file mode 100644 index ae3d21f11c5..00000000000 Binary files a/mozilla/toolkit/mozapps/pref/skin/mac/dot.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/pref/skin/mac/jar.mn b/mozilla/toolkit/mozapps/pref/skin/mac/jar.mn deleted file mode 100755 index 6f5f0dfcbce..00000000000 --- a/mozilla/toolkit/mozapps/pref/skin/mac/jar.mn +++ /dev/null @@ -1,5 +0,0 @@ -classic.jar: - skin/classic/mozapps/pref/pref.css - skin/classic/mozapps/pref/dot.gif - skin/classic/mozapps/pref/check.gif - diff --git a/mozilla/toolkit/mozapps/pref/skin/mac/pref.css b/mozilla/toolkit/mozapps/pref/skin/mac/pref.css deleted file mode 100644 index 24ed71b437f..00000000000 --- a/mozilla/toolkit/mozapps/pref/skin/mac/pref.css +++ /dev/null @@ -1,101 +0,0 @@ -/* -# -*- 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) -# -# 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 4px; border-top: 1px solid #A1A1A1 !important; - border-right: 1px solid #C3C3C3 !important; - border-bottom: 1px solid #DDDDDD !important; - border-left: 1px solid #C3C3C3 !important; - background-color: #FFFFFF; color: -moz-FieldText; -} - -.indent { - margin-left: 23px; - margin-right: 23px; -} - -.small-indent { - margin-left: 15px; -} - -.uniWidthButton { - min-width: 8em; -} - -/** Privacy/Advanced Panels Expander Boxes **/ -.settingsBox { - margin: 5px; - padding: 5px; -} - -#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; -} \ No newline at end of file diff --git a/mozilla/toolkit/mozapps/pref/skin/pref.css b/mozilla/toolkit/mozapps/pref/skin/pref.css deleted file mode 100755 index 2a789dee7d2..00000000000 --- a/mozilla/toolkit/mozapps/pref/skin/pref.css +++ /dev/null @@ -1,112 +0,0 @@ -/* -# -*- 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) -# -# 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 { - -moz-appearance: listbox; - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - background-color: -moz-Field; -} - -.indent { - margin-left: 23px; - margin-right: 23px; -} - -.small-indent { - margin-left: 15px; -} - -.uniWidthButton { - min-width: 8em; -} - -/** Privacy/Advanced Panels Expander Boxes **/ -.settingsBox { - margin: 5px; - padding: 5px; -} - -#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; -} /* #fileHandlersListContainer { -moz-binding: url("chrome://mozapps/skin/downloads/downloads.xml#download-view"); - -moz-appearance: listbox; - -moz-user-focus: normal; -} * We apply the background to both of these elements since the tree leaves a 2-3px * strip on its right side unpainted. We can't just paint the background layer either * because the tree erases its background with white, obscuring the bottom layer. #fileHandlersList, #fileHandlersListContainer > .downloadViewInner1 { background-image: url("chrome://mozapps/skin/downloads/downloadsBG.png"); - background-attachment: fixed; - background-repeat: no-repeat; - background-position: bottom right; -moz-appearance: none; border: none; -} -*/ diff --git a/mozilla/toolkit/mozapps/shared/skin/itemFader.png b/mozilla/toolkit/mozapps/shared/skin/itemFader.png deleted file mode 100644 index 7b4e8cc83e4..00000000000 Binary files a/mozilla/toolkit/mozapps/shared/skin/itemFader.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/shared/skin/itemSelected.png b/mozilla/toolkit/mozapps/shared/skin/itemSelected.png deleted file mode 100644 index 9a1579381d0..00000000000 Binary files a/mozilla/toolkit/mozapps/shared/skin/itemSelected.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/shared/skin/richview.css b/mozilla/toolkit/mozapps/shared/skin/richview.css deleted file mode 100644 index bf8a12be215..00000000000 --- a/mozilla/toolkit/mozapps/shared/skin/richview.css +++ /dev/null @@ -1,21 +0,0 @@ -/* Generic RichView */ - -view { - margin: 10px 10px 5px 10px; - -moz-appearance: listbox; - -moz-user-focus: normal; -} - -.richviewInner2 { - background-image: url("chrome://mozapps/skin/shared/viewFader.png"); - padding: 0px; -} - -.richviewInner1 { - background-color: Window; - background-image: inherit; - background-attachment: fixed; - background-repeat: no-repeat; - background-position: bottom right; -} - diff --git a/mozilla/toolkit/mozapps/shared/skin/richview.xml b/mozilla/toolkit/mozapps/shared/skin/richview.xml deleted file mode 100644 index 143e9bb4a9d..00000000000 --- a/mozilla/toolkit/mozapps/shared/skin/richview.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/mozilla/toolkit/mozapps/shared/skin/viewFader.png b/mozilla/toolkit/mozapps/shared/skin/viewFader.png deleted file mode 100644 index 500425175d8..00000000000 Binary files a/mozilla/toolkit/mozapps/shared/skin/viewFader.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/update/skin/icon32.png b/mozilla/toolkit/mozapps/update/skin/icon32.png deleted file mode 100644 index 7a069c2028b..00000000000 Binary files a/mozilla/toolkit/mozapps/update/skin/icon32.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/update/skin/update.css b/mozilla/toolkit/mozapps/update/skin/update.css deleted file mode 100644 index 8050f91fb7a..00000000000 --- a/mozilla/toolkit/mozapps/update/skin/update.css +++ /dev/null @@ -1,79 +0,0 @@ -/* Found Updates */ - -#foundList { - -moz-appearance: listbox; - margin: 10px 4px 10px 4px; -} - -updateitem { - padding: 5px 0px 5px 5px; - border-bottom: 1px dotted #C0C0C0; - margin-bottom: 5px; -} - -.warning { - font-weight: bold; -} - -.updateItemIcon { - width: 32px; - height: 32px; - max-width: 32px !important; - max-height: 32px !important; - margin-right: 5px; -} - -.updateItemName { - font-weight: bold; -} - -.updateItemNameRow { - padding-bottom: 3px; -} - -.updateItemURL { - -moz-appearance: none; - border: none; - background-color: Window; -} - -.updateItemFromLabel { - padding-top: 2px; -} - -.updateItemIcon { - list-style-image: url("chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png"); -} - -.updateItemChecked { - margin: 20px 0px 3px 0px; - padding: 0px; -} - -.updateItemChecked .checkbox-label-box { - display: none; -} - -/* Update Wizard */ -#alert { - list-style-image: url("chrome://mozapps/skin/update/warning.gif"); -} - -/* Inline Update Notifications */ -.updateIndicator[updateCount="0"] { - visibility: hidden; -} - -.updateIcon { - width: 16px; - height: 16px; -} -.updateIcon[severity="0"] { - background-color: #00FF00; -} -.updateIcon[severity="1"] { - background-color: #0000FF; -} -.updateIcon[severity="2"] { - background-color: #FF0000; -} diff --git a/mozilla/toolkit/mozapps/update/skin/warning.gif b/mozilla/toolkit/mozapps/update/skin/warning.gif deleted file mode 100644 index 3f91ca61b54..00000000000 Binary files a/mozilla/toolkit/mozapps/update/skin/warning.gif and /dev/null differ diff --git a/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallConfirm.css b/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallConfirm.css deleted file mode 100644 index 375736bddc9..00000000000 --- a/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallConfirm.css +++ /dev/null @@ -1,62 +0,0 @@ -#xpinstallIcon { - list-style-image: url("chrome://mozapps/skin/xpinstall/xpinstallIcon.png"); -} - -.listbox { - -moz-appearance: listbox; -} - -#itemList { - margin: 10px 4px 10px 4px; -} - -#dialogContentBox { - padding: 5px; -} - -installitem { - padding: 5px 0px 5px 5px; - border-bottom: 1px dotted #C0C0C0; - margin-bottom: 5px; -} - -.warning { - font-weight: bold; -} - -.xpinstallItemIcon { - width: 32px; - height: 32px; - max-width: 32px !important; - max-height: 32px !important; - margin-right: 5px; -} - -.xpinstallItemName { - font-weight: bold; -} - -.xpinstallItemSigned { - font-style: italic; -} - -.xpinstallItemSigned[signed=false] { - color: #ED1C24; - font-style: normal; - font-weight: bold; -} - -.xpinstallItemNameRow { - padding-bottom: 3px; -} - -.xpinstallItemURL { - -moz-appearance: none; - border: none; - background-color: Window; -} - -.xpinstallItemIcon { - list-style-image: url("chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png"); -} - diff --git a/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallIcon.png b/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallIcon.png deleted file mode 100644 index 81370d8b075..00000000000 Binary files a/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallIcon.png and /dev/null differ diff --git a/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallItemGeneric.png b/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallItemGeneric.png deleted file mode 100644 index 550672b8792..00000000000 Binary files a/mozilla/toolkit/mozapps/xpinstall/skin/xpinstallItemGeneric.png and /dev/null differ diff --git a/mozilla/toolkit/skin/gtk2/Makefile.in b/mozilla/toolkit/skin/gtk2/Makefile.in deleted file mode 100644 index 9bb2a9c0f1a..00000000000 --- a/mozilla/toolkit/skin/gtk2/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -# -# The contents of this file are subject to the Netscape 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/NPL/ -# -# 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 Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 2000 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# - -DEPTH = ../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk -include $(topsrcdir)/config/rules.mk diff --git a/mozilla/toolkit/skin/gtk2/autocomplete.css b/mozilla/toolkit/skin/gtk2/autocomplete.css deleted file mode 100644 index 3d30aabdf55..00000000000 --- a/mozilla/toolkit/skin/gtk2/autocomplete.css +++ /dev/null @@ -1,148 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Brian Ryner - */ - -/* ===== autocomplete.css ================================================= - == Styles used by the autocomplete widget. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* ::::: autocomplete ::::: */ - -textbox { - cursor: default; - padding: 0; - -moz-appearance: none; - border: none !important; -} - -.autocomplete-textbox-container { - -moz-appearance: menulist-textfield; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; -} - -/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */ -textbox.padded { - padding: 1px 0px 1px 2px; -} - -.textbox-input-box { - margin: 0 3px; - -moz-box-align: center; -} - -/* ::::: history button ::::: */ - -.autocomplete-history-dropmarker { -#ifndef XP_MACOSX - -moz-appearance: menulist-button; -#endif - min-width: 17px; - -moz-box-align: center; - -moz-box-pack: center; - border: 2px solid; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - background-color: -moz-Dialog; - padding: 1px; - list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif"); -} - -.autocomplete-history-dropmarker:hover:active, -.autocomplete-history-dropmarker[open="true"] { - -moz-border-top-colors: ThreeDShadow ThreeDFace; - -moz-border-right-colors: ThreeDShadow ThreeDFace; - -moz-border-bottom-colors: ThreeDShadow ThreeDFace; - -moz-border-left-colors: ThreeDShadow ThreeDFace; - padding: 2px 0 0 2px; -} - -/* ::::: autocomplete popups ::::: */ - -popup[type="autocomplete"], -.autocomplete-history-popup { - border-width: 1px; - -moz-border-top-colors: ThreeDDarkShadow; - -moz-border-right-colors: ThreeDDarkShadow; - -moz-border-bottom-colors: ThreeDDarkShadow; - -moz-border-left-colors: ThreeDDarkShadow; - padding: 0; - background-color: -moz-Field !important; -} - -.autocomplete-history-popup { - max-height: 180px; -} - -/* ::::: tree ::::: */ - -.autocomplete-tree { - -moz-appearance: none !important; - border: none !important; - background-color: transparent !important; -} - -.autocomplete-treecol { - -moz-appearance: none !important; - margin: 0 !important; - border: none !important; - padding: 0 !important; -} - -.autocomplete-treebody::-moz-tree-cell-text { - padding-left: 8px; -} - -treechildren.autocomplete-treebody::-moz-tree-row(selected) { - background-color: Highlight; -} - -treechildren.autocomplete-treebody::-moz-tree-cell-text(selected) { - color: HighlightText !important; -} - -/* thunderbird does not use the new autocomplete widget yet so we need a couple of the old styles rules for it */ - -.autocomplete-treebody::-moz-tree-row(menuactive) { - background-color: Highlight; -} - -.autocomplete-treebody::-moz-tree-cell-text(menuactive) { - color: HighlightText !important; -} - -/* end of thunderbird required autocomplete rules */ - -/* ::::: textboxes inside toolbarpaletteitems ::::: */ - -toolbarpaletteitem > toolbaritem > textbox > hbox > hbox > html|*.textbox-input { - visibility: hidden; -} diff --git a/mozilla/toolkit/skin/gtk2/jar.mn b/mozilla/toolkit/skin/gtk2/jar.mn deleted file mode 100644 index b629d2c073e..00000000000 --- a/mozilla/toolkit/skin/gtk2/jar.mn +++ /dev/null @@ -1,5 +0,0 @@ -classic.jar: -*+ skin/classic/global/autocomplete.css -+ skin/classic/global/popup.css -+ skin/classic/global/menu.css -+ skin/classic/global/toolbar.css diff --git a/mozilla/toolkit/skin/gtk2/menu.css b/mozilla/toolkit/skin/gtk2/menu.css deleted file mode 100644 index 786405f83a9..00000000000 --- a/mozilla/toolkit/skin/gtk2/menu.css +++ /dev/null @@ -1,208 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * - */ - -/* ===== menu.css ======================================================= - == Styles used by XUL menu-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: menu/menuitem ::::: */ - -menu, menuitem { - -moz-appearance: menuitem !important; - -moz-box-align: center; - max-width: 42em; - color: MenuText; - font: menu; - list-style-image: none; - -moz-image-region: auto; -} - -menuitem[default="true"] { - font-weight: bold; -} - -menu[_moz-menuactive="true"], -menuitem[_moz-menuactive="true"] { - color: HighlightText; -} - -menu[disabled="true"], -menuitem[disabled="true"] { - color: GrayText; -} - -menubar > menu { - padding: 0px 6px 0px 4px; -} - -menubar > menu[_moz-menuactive="true"] { - color: MenuText; -} - -menubar > menu[open] { - color: HighlightText; -} - -/* ::::: menu/menuitems in menulist popups ::::: */ - -.menulist-menupopup > menuitem, -menulist > menupopup > menuitem, -.menulist-menupopup > menu, -menulist > menupopup > menu { - padding: 1px 30px 1px 5px; - max-width: none; - font: message-box; -} - -/* ..... internal content .... */ - -.menu-text, -.menu-iconic-left, -.menu-iconic-text { - margin: 0px 2px 0px 0px !important; - color: inherit; -} - -.menu-text { - margin-left: 18px !important; - font-weight: inherit; -} - -.menu-description { - font-style: italic; - color: GrayText; - margin-left: 1ex !important; -} - -.menu-accel, -.menu-iconic-accel { - margin: 0px 2px 0px 7px !important; - padding-right: 14px; - color: inherit; -} - -.menu-iconic-left { - width: 16px; -} - -.menu-right { - margin: 0px 0px 0px 6px; - width: 8px; - list-style-image: url("chrome://global/skin/menu/Menu-arrow.png"); - -moz-image-region: auto; -} - -.menu-right[_moz-menuactive="true"] { - list-style-image: url("chrome://global/skin/menu/Menu-arrow-hover.png"); - -moz-image-region: auto; -} - -.menu-right[disabled="true"] { - list-style-image: url("chrome://global/skin/menu/Menu-arrow-disabled.png"); - -moz-image-region: auto; -} - -.menubar-left { - margin: 0px 2px 0px 0px; - color: inherit; -} - -.menubar-text { - margin: 0px 2px 0px 0px !important; - color: inherit; -} - - -.menulist-menupopup > menuitem > .menu-iconic-left, -menulist > menupopup > menuitem > .menu-iconic-left, -.menulist-menupopup > menu > .menu-iconic-left, -menulist > menupopup > menu > .menu-iconic-left { - display: none; -} - -/* ::::: checkbox menuitem ::::: */ - -menuitem[checked="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][disabled="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check-disabled.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][_moz-menuactive="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check-hover.gif"); - -moz-image-region: auto; -} - -/* ::::: radio menuitem ::::: */ - -menuitem[checked="true"][type="radio"] { - list-style-image: url("chrome://global/skin/menu/menu-radio.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][type="radio"][disabled="true"] { - list-style-image: url("chrome://global/skin/menu/menu-radio-disabled.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][type="radio"][_moz-menuactive="true"] { - list-style-image: url("chrome://global/skin/menu/menu-radio-hover.gif"); - -moz-image-region: auto; -} - -/* ::::: menuseparator ::::: */ - -menuseparator { - margin: 2px 3px; - border-top: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDHighlight; -} - -menulist > menupopup > menuseparator, -.menulist-menupopup > menuseparator { - margin: 2px 0; - border-top: 1px solid #000000; - border-bottom: none; -} - -/* ::::: autocomplete ::::: */ - -.autocomplete-history-popup > menuitem { - max-width: none !important; - font: message-box; -} - -/* ::::: tree column picker ::::: */ - -.treecell-popupcell-menu { - margin-left: -2px; - list-style-image: url("chrome://global/skin/columnselect.gif"); - -moz-image-region: auto; -} diff --git a/mozilla/toolkit/skin/gtk2/popup.css b/mozilla/toolkit/skin/gtk2/popup.css deleted file mode 100644 index 501bf73ca6f..00000000000 --- a/mozilla/toolkit/skin/gtk2/popup.css +++ /dev/null @@ -1,66 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== popup.css =================================================== - == Styles used by the XUL popup element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: menupopup ::::: */ - -menupopup, popup { - -moz-appearance: menupopup !important; - min-width: 1px; -} - -/* ::::: tooltip ::::: */ - -tooltip { - -moz-appearance: tooltip; - margin-top: 21px; - padding: 2px 3px; - max-width: 40em; - color: InfoText; - font: message-box; -} - -.tooltip-label { - margin: 0px !important; -} - -tooltip[titletip="true"] { - /* See bug 32157 comment 128 - * margin: -2px 0px 0px -3px; - */ - max-width: none; -} - -/* rules for popups associated with menulists */ - -menulist > menupopup, -.menulist-menupopup { - padding: 0px; - min-width: 0px; -} - diff --git a/mozilla/toolkit/skin/gtk2/toolbar.css b/mozilla/toolkit/skin/gtk2/toolbar.css deleted file mode 100644 index 2137740269e..00000000000 --- a/mozilla/toolkit/skin/gtk2/toolbar.css +++ /dev/null @@ -1,119 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== toolbar.css ==================================================== - == Styles used by XUL toolbar-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: toolbox ::::: */ - -toolbox { - -moz-appearance: toolbox; -} - -/* ::::: menubar & toolbar ::::: */ - -menubar, toolbar[type="menubar"] { - -moz-appearance: menubar !important; - min-width: 1px; - min-height: 20px; -} - -toolbar { - -moz-appearance: toolbar !important; - min-width: 1px; - min-height: 20px; -} - -/* in browser.xul, the menubar is inside a toolbar... */ -toolbaritem > menubar { - -moz-appearance: none !important; -} - -/* ::::: toolbar decorations ::::: */ - -toolbarseparator { - margin : 2px 0.2em; - border-right : 1px solid ThreeDHighlight; - border-left : 1px solid ThreeDShadow; - width : 2px; -} - -toolbarspacer { - width: 15px; -} - -/* ::::: toolbarpaletteitem ::::: */ - -toolbarpaletteitem { - cursor: -moz-grab; -} - -.toolbarpaletteitem-box[type="spacer"], -.toolbarpaletteitem-box[type="spring"] { - border: 1px solid #808080; -} - -toolbarpaletteitem[place="toolbar"] { - margin-left: -2px; - margin-right: -2px; - border-left: 2px solid transparent; - border-right: 2px solid transparent; -} - -toolbarpaletteitem[place="toolbar"] > toolbarspacer { - width: 11px; -} - -.toolbarpaletteitem-box[type="spacer"][place="toolbar"], -.toolbarpaletteitem-box[type="spring"][place="toolbar"] { - margin: 2px 2px 2px 0; -} - -.toolbarpaletteitem-box[type="separator"][place="palette"] { - width: 2px; - height: 50px; -} - -.toolbarpaletteitem-box[type="spacer"][place="palette"], -.toolbarpaletteitem-box[type="spring"][place="palette"] { - margin-bottom: 2px; - width: 50px; - height: 50px; -} - -.toolbarpaletteitem-box[type="spring"][place="palette"] { - background: url("chrome://global/skin/toolbar/spacer-mid.gif") no-repeat center; -} - -/* ..... drag and drop feedback ..... */ - -toolbarpaletteitem[dragover="left"] { - border-left-color: #000000; -} - -toolbarpaletteitem[dragover="right"] { - border-right-color: #000000; -} diff --git a/mozilla/toolkit/skin/mac/10pct_transparent_grey.png b/mozilla/toolkit/skin/mac/10pct_transparent_grey.png deleted file mode 100644 index 01f2edd9f4f..00000000000 Binary files a/mozilla/toolkit/skin/mac/10pct_transparent_grey.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/10pct_transparent_pixel.png b/mozilla/toolkit/skin/mac/10pct_transparent_pixel.png deleted file mode 100644 index 2a986eb8c4b..00000000000 Binary files a/mozilla/toolkit/skin/mac/10pct_transparent_pixel.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/20pct_transparent_pixel.png b/mozilla/toolkit/skin/mac/20pct_transparent_pixel.png deleted file mode 100644 index ce18e8891ff..00000000000 Binary files a/mozilla/toolkit/skin/mac/20pct_transparent_pixel.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/50pct_transparent_grey.png b/mozilla/toolkit/skin/mac/50pct_transparent_grey.png deleted file mode 100644 index 1ec81afb461..00000000000 Binary files a/mozilla/toolkit/skin/mac/50pct_transparent_grey.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/50pct_transparent_white.png b/mozilla/toolkit/skin/mac/50pct_transparent_white.png deleted file mode 100644 index 8b4490cc583..00000000000 Binary files a/mozilla/toolkit/skin/mac/50pct_transparent_white.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/Makefile.in b/mozilla/toolkit/skin/mac/Makefile.in deleted file mode 100644 index 383bbe0a53a..00000000000 --- a/mozilla/toolkit/skin/mac/Makefile.in +++ /dev/null @@ -1,45 +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 the Mozilla Browser code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2002 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Brian Ryner -# -# 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 ***** - -DEPTH = ../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -include $(topsrcdir)/config/rules.mk diff --git a/mozilla/toolkit/skin/mac/activetab-left.png b/mozilla/toolkit/skin/mac/activetab-left.png deleted file mode 100644 index bb167c44405..00000000000 Binary files a/mozilla/toolkit/skin/mac/activetab-left.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/activetab-middle.png b/mozilla/toolkit/skin/mac/activetab-middle.png deleted file mode 100644 index 29fda9258ed..00000000000 Binary files a/mozilla/toolkit/skin/mac/activetab-middle.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/activetab-right.png b/mozilla/toolkit/skin/mac/activetab-right.png deleted file mode 100644 index 050d7fe9f59..00000000000 Binary files a/mozilla/toolkit/skin/mac/activetab-right.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn-dis.gif b/mozilla/toolkit/skin/mac/arrow/arrow-dn-dis.gif deleted file mode 100755 index 3d62e400631..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn-dis.png b/mozilla/toolkit/skin/mac/arrow/arrow-dn-dis.png deleted file mode 100644 index 3b26e80fc88..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn-dis.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn-hov.gif b/mozilla/toolkit/skin/mac/arrow/arrow-dn-hov.gif deleted file mode 100755 index f0e550b135c..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn-sharp.gif b/mozilla/toolkit/skin/mac/arrow/arrow-dn-sharp.gif deleted file mode 100755 index 206d7c19dd5..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn-small-dis.png b/mozilla/toolkit/skin/mac/arrow/arrow-dn-small-dis.png deleted file mode 100644 index 14dd9cc476c..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn-small-dis.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn-small.png b/mozilla/toolkit/skin/mac/arrow/arrow-dn-small.png deleted file mode 100644 index e7888355dc8..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn-small.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn.gif b/mozilla/toolkit/skin/mac/arrow/arrow-dn.gif deleted file mode 100755 index 52a5fdcde52..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-dn.png b/mozilla/toolkit/skin/mac/arrow/arrow-dn.png deleted file mode 100644 index efaf8ca8be6..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-dn.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-lft-dis.gif b/mozilla/toolkit/skin/mac/arrow/arrow-lft-dis.gif deleted file mode 100755 index 33243517b1b..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-lft-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-lft-hov.gif b/mozilla/toolkit/skin/mac/arrow/arrow-lft-hov.gif deleted file mode 100755 index 3367bde3123..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-lft-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-lft-sharp-end.gif b/mozilla/toolkit/skin/mac/arrow/arrow-lft-sharp-end.gif deleted file mode 100755 index c22294ba21b..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-lft-sharp-end.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-lft-sharp.gif b/mozilla/toolkit/skin/mac/arrow/arrow-lft-sharp.gif deleted file mode 100755 index ae9b1dd0fb6..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-lft-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-lft.gif b/mozilla/toolkit/skin/mac/arrow/arrow-lft.gif deleted file mode 100755 index c5c362d89b1..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-lft.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-rit-dis.gif b/mozilla/toolkit/skin/mac/arrow/arrow-rit-dis.gif deleted file mode 100755 index cda95fe215c..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-rit-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-rit-hov.gif b/mozilla/toolkit/skin/mac/arrow/arrow-rit-hov.gif deleted file mode 100755 index 5010921adc6..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-rit-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-rit-sharp-end.gif b/mozilla/toolkit/skin/mac/arrow/arrow-rit-sharp-end.gif deleted file mode 100755 index c1b3750d4c8..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-rit-sharp-end.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-rit-sharp.gif b/mozilla/toolkit/skin/mac/arrow/arrow-rit-sharp.gif deleted file mode 100755 index ca628ba69bd..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-rit-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-rit.gif b/mozilla/toolkit/skin/mac/arrow/arrow-rit.gif deleted file mode 100755 index dce39aecc18..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-rit.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-up-dis.gif b/mozilla/toolkit/skin/mac/arrow/arrow-up-dis.gif deleted file mode 100755 index 381dee3e5d8..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-up-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-up-dis.png b/mozilla/toolkit/skin/mac/arrow/arrow-up-dis.png deleted file mode 100644 index e89f600d6c8..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-up-dis.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-up-hov.gif b/mozilla/toolkit/skin/mac/arrow/arrow-up-hov.gif deleted file mode 100755 index 771605182a5..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-up-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-up-sharp.gif b/mozilla/toolkit/skin/mac/arrow/arrow-up-sharp.gif deleted file mode 100755 index 883a4f95ca1..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-up-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-up.gif b/mozilla/toolkit/skin/mac/arrow/arrow-up.gif deleted file mode 100755 index b8e09b21b87..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-up.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/arrow/arrow-up.png b/mozilla/toolkit/skin/mac/arrow/arrow-up.png deleted file mode 100644 index 1eb4d4ceb24..00000000000 Binary files a/mozilla/toolkit/skin/mac/arrow/arrow-up.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/autocomplete.css b/mozilla/toolkit/skin/mac/autocomplete.css deleted file mode 100755 index 5a613ffb6f2..00000000000 --- a/mozilla/toolkit/skin/mac/autocomplete.css +++ /dev/null @@ -1,107 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - */ - -/* ===== autocomplete.css ================================================= - == Styles used by the autocomplete widget. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* ::::: autocomplete ::::: */ - -textbox { - cursor: default; - padding: 0; -} - -/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */ -textbox.padded { - padding: 1px 0px 1px 2px; -} - -.textbox-input-box { - margin: 0 3px; - -moz-box-align: center; -} - -/* ::::: history button ::::: */ - -.autocomplete-history-dropmarker { - min-width: 17px; - -moz-box-align: center; - -moz-box-pack: center; - padding: 0px; - list-style-image: url("chrome://global/skin/icons/autocomplete-dropmarker.png"); - margin: 0px; -} - -/* ::::: autocomplete popups ::::: */ - -popup[type="autocomplete"], -.autocomplete-history-popup { - padding: 0px !important; - background-color: -moz-Field !important; - font: icon; - -moz-appearance: none; - border-top: 1px solid #C3C3C3 !important; -} - -.autocomplete-history-popup { - max-height: 180px; - border-top: 1px solid #C3C3C3 !important; -} - -/* ::::: tree ::::: */ - -.autocomplete-tree { - -moz-appearance: none !important; - border: none !important; - background-color: transparent !important; -} - -.autocomplete-treecol { - -moz-appearance: none !important; - margin: 0 !important; - border: none !important; - padding: 0 !important; -} - -.autocomplete-treebody::-moz-tree-cell-text { - padding-left: 2px; -} - -treechildren.autocomplete-treebody::-moz-tree-row(selected) { - background-color: Highlight; -} - -treechildren.autocomplete-treebody::-moz-tree-cell-text(selected) { - color: HighlightText !important; -} - -/* ::::: textboxes inside toolbarpaletteitems ::::: */ - -toolbarpaletteitem > toolbaritem > textbox > hbox > hbox > html|*.textbox-input { - visibility: hidden; -} diff --git a/mozilla/toolkit/skin/mac/browser.css b/mozilla/toolkit/skin/mac/browser.css deleted file mode 100755 index 92d44b9a61e..00000000000 --- a/mozilla/toolkit/skin/mac/browser.css +++ /dev/null @@ -1,147 +0,0 @@ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -.tabbrowser-tabs { - padding-top: 0px; - border: none; - text-align: center; -} - -tab:not([selected="true"]) > .tab-image-middle > .tab-icon { - /* background: url("chrome://global/skin/inactivetab-icon-black.png") repeat; */ -} - -tab:not([selected="true"]) > .tab-image-middle > .tab-icon > .tab-extra-status { - background: url("chrome://global/skin/inactivetab-icon-grey.png") repeat; -} - -tab:hover > .tab-image-middle > .tab-icon > .tab-extra-status { - background: none; -} - -.tab-icon-image { - width: 16px; - height: 16px; - list-style-image: url("chrome://global/skin/icons/small-globe-sunken.png"); -} - -.tab-icon { - padding-top: 1px; -} - -.tab-text { - font: icon; - padding-top: 1px; -} - - - -tab[busy] > .tab-icon-image, tab[busy] > .tab-image-middle > .tab-icon > .tab-icon-image { - list-style-image: url("chrome://global/skin/icons/loading_16_grey.gif") !important; -} - -tab { - -moz-binding: url("chrome://global/skin/globalBindings.xml#tab") !important; - -moz-appearance: none; - color: #383838; - -moz-box-pack: center; - margin: 0px 0px 3px 0px; - padding: 0px; - background: url("chrome://global/skin/10pct_transparent_pixel.png") repeat; - border: none !important; - height: 22px !important; -} - -tab[selected="true"], tab:hover { - color: #000000; -} - -tab[first-tab="true"] > .tab-image-left { - margin-left: 3px !important; -} - -.tab-image-left, .tab-image-right { - width: 8px; - margin: 0px; - padding: 0px; -} - -tab:not([selected="true"]) > .tab-image-right { - background: url("chrome://global/skin/inactivetab-right.png") no-repeat; -} - -tab[selected="true"] > .tab-image-right { - background: url("chrome://global/skin/activetab-right.png") no-repeat; -} - -tab[selected="true"] > .tab-image-left { - background: url("chrome://global/skin/activetab-left.png") no-repeat; -} - -tab[selected="true"] > .tab-image-middle { - background: url("chrome://global/skin/activetab-middle.png") repeat-x; -} - - -tab[beforeselected="true"] > .tab-image-right { - background: none !important; -} - -tab:not([selected="true"]) > .tab-image-middle > .tab-icon > .tab-icon-image { - list-style-image: url("chrome://global/skin/icons/small-globe-sunken-grey.png"); -} - -/* ::::: close button ::::: */ - -.tabs-closebutton { - padding: 0px 4px 2px 0px; - margin: 0px; - list-style-image: url("chrome://global/skin/icons/closetab.png") !important; - border: none !important; -} -.tabs-closebutton:hover { - border: none !important; -} - -.tabs-closebutton:hover:active { - list-style-image: url("chrome://global/skin/icons/closetab-active.png") !important; - border: none !important; - -} - -.tabbrowser-strip { - -moz-box-orient: vertical !important; -} -.tabbrowser-tabs { -padding: 0px; -margin: 0px; --moz-box-pack: center; --moz-box-align: center; -background: url("chrome://global/skin/10pct_transparent_pixel.png") repeat; - -} - - -.tabbrowser-strip { - -moz-appearance: dialog; -} - -.tab-image-right, .tab-image-left { - height: 18px !important; -} - -.tabbrowser-tab { - min-width: 1px !important; -} - -.tabs-bottom { - border: none; - height: 4px !important; - background: url("chrome://global/skin/tabs-bottom-bg.png") repeat !important; - margin: 0px !important; - -} - -tabbrowser > tabbox > tabpanels { - -moz-appearance: none !important; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/button.css b/mozilla/toolkit/skin/mac/button.css deleted file mode 100755 index 8dde9d3c860..00000000000 --- a/mozilla/toolkit/skin/mac/button.css +++ /dev/null @@ -1,117 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - */ - -/* ===== button.css ===================================================== - == Styles used by the XUL button element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* :::::::::: button :::::::::: */ - -button { - -moz-appearance: button; - -moz-user-focus: ignore; - margin: 6px; - min-width: 6.3em; - -moz-appearance: button; - padding: 0px 4px; - color: #000000; -} - -.button-text { - margin: 0 !important; - text-align: center; -} - -button[type="default"] { - font: menu; -} - -/* .......... active/open/checked state .......... */ - -button:hover:active, -button[open="true"], -button[checked="true"] { - -} - -/* .......... disabled state .......... */ - -button[disabled="true"] { - color: #777777 !important; - -moz-border-top-colors: #cccccc #eeeeee #fdfdfd; - -moz-border-right-colors: #cccccc #d9d9d9; - -moz-border-bottom-colors: #cccccc #eeeeee #fdfdfd; - -moz-border-left-colors: #cccccc #d9d9d9; -} - -/* ::::: menu/menu-button buttons ::::: */ - -button[type="menu-button"] { - -moz-box-align: center; - -moz-box-pack: center; - margin: 0; - border: none; -} - -.button-menu-dropmarker, -.button-menubutton-dropmarker { - margin: 1px; - list-style-image: url("chrome://global/skin/arrow/arrow-dn.png"); -} - -.button-menu-dropmarker[disabled="true"], -.button-menubutton-dropmarker[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.png"); -} - -.button-menubutton-dropmarker[open="true"] { - /* margin: 2px 0px 0px 2px; */ -} - -/* ::::: plain buttons ::::: */ - -button.plain { - margin: 0px !important; - padding: 0px !important; -} - -/* ::::: close button ::::: */ - -.close-button { - list-style-image: url("chrome://global/skin/icons/close-button.gif"); -} - -.close-button > .toolbarbutton-icon { - margin: 0; -} - -.close-button > .toolbarbutton-text { - display: none; -} - -.dialog-button { - font: menu; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/checkbox.css b/mozilla/toolkit/skin/mac/checkbox.css deleted file mode 100755 index a702acc4a21..00000000000 --- a/mozilla/toolkit/skin/mac/checkbox.css +++ /dev/null @@ -1,2 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-1999 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * */ /* ===== checkbox.css =================================================== == Styles used by the XUL checkbox element. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: checkbox ::::: */ checkbox { -moz-appearance: checkbox-container; -moz-user-focus: ignore; -moz-box-align: center; margin: 2px 2px 4px 2px; } .checkbox-label-box { margin-left: 0px; padding: 0px; } .checkbox-icon { margin-right: 2px; } .checkbox-label { margin: 0 !important; - padding-bottom: 1px; } /* ..... disabled state ..... */ checkbox[disabled="true"] { color: GrayText !important; } /* ::::: checkmark image ::::: */ .checkbox-check { -moz-appearance: checkbox; width: 14px; height: 12px; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/closetab.png b/mozilla/toolkit/skin/mac/closetab.png deleted file mode 100644 index 7cfa7bad566..00000000000 Binary files a/mozilla/toolkit/skin/mac/closetab.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/colorpicker.css b/mozilla/toolkit/skin/mac/colorpicker.css deleted file mode 100755 index 83d967c7fa8..00000000000 --- a/mozilla/toolkit/skin/mac/colorpicker.css +++ /dev/null @@ -1,2 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-1999 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * */ /* ===== colorpicker.css ================================================ == Styles used by the XUL colorpicker element. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: colorpicker button ::::: */ /* colorpicker button */ colorpicker[type="button"] { width: 38px; height: 24px; border: 1px solid #a7a7a7; background-color: ThreeDFace; padding: 3px; - -moz-appearance: button-bevel; } .colorpicker-button-colorbox { border: 1px solid #000000; } /* ::::: colorpicker tiles ::::: */ .colorpickertile { width : 20px; height : 20px; margin : 1px; } .colorpickertile[selected="true"] { border : 1px outset #C0C0C0; } .colorpickertile[hover="true"] { border : 1px dotted #A7A7A7; } .cp-light[hover="true"] { border : 1px dotted #000000; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/config.css b/mozilla/toolkit/skin/mac/config.css deleted file mode 100644 index 15e160c628c..00000000000 --- a/mozilla/toolkit/skin/mac/config.css +++ /dev/null @@ -1,14 +0,0 @@ - -@import url("chrome://global/skin/"); -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - - -treechildren::-moz-tree-cell-text(user) -{ - font-weight: bold; -} - -treechildren::-moz-tree-cell-text(locked) -{ - font-style: italic; -} diff --git a/mozilla/toolkit/skin/mac/console.css b/mozilla/toolkit/skin/mac/console.css deleted file mode 100755 index 605773834ba..00000000000 --- a/mozilla/toolkit/skin/mac/console.css +++ /dev/null @@ -1,2 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-1999 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * */ /* ===== console.css ==================================================== == Styles used by the JavaScript Console window. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); .console-box { background-color: -moz-Field; color: -moz-FieldText; } /* ::::: console rows ::::: */ .console-row { border-bottom: 2px solid -moz-FieldText; padding: 0px; } .console-row-icon { border-right: 1px solid ThreeDShadow; padding: 5px; background-color: -moz-Dialog; -moz-box-align: start !important; } .console-icon { list-style-image: inherit; } /* ..... error rows ..... */ .console-row-code { padding: 3px 0px 3px 3px; color: #0000BB; font-size: larger; } .console-dots, .console-caret { height: 9px; } .console-dots { background: url("chrome://global/skin/console/error-dash.gif") repeat-x top; } .console-caret { width: 7px; background: url("chrome://global/skin/console/error-caret.gif") no-repeat top; } /* ..... message rows ..... */ .console-row[type="message"] { font-family: monospace; } /* ..... selected state ..... */ .console-row[selected="true"] { background-color: #B7DBEB !important; } .console-row-code[selected="true"], .console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link { color: inherit !important; } /* ::::: icons ::::: */ .console-row[type="error"], .console-row[type="exception"] { list-style-image: url("chrome://global/skin/icons/alert-error.gif"); } .console-row[type="warning"] { list-style-image: url("chrome://global/skin/icons/alert-exclam.png"); - padding-right: 10px; } .console-row[type="message"] { list-style-image: url("chrome://global/skin/icons/alert-message.gif"); } /* ::::: toolbars ::::: */ #TextfieldEval { margin: 2px !important; } #ButtonEval { margin: 2px 2px 2px 0px !important; } toolbarseparator { min-height: 1em; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/console/console-error-caret.gif b/mozilla/toolkit/skin/mac/console/console-error-caret.gif deleted file mode 100755 index a8f30f9263f..00000000000 Binary files a/mozilla/toolkit/skin/mac/console/console-error-caret.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/console/console-error-dash.gif b/mozilla/toolkit/skin/mac/console/console-error-dash.gif deleted file mode 100755 index 74679a25e24..00000000000 Binary files a/mozilla/toolkit/skin/mac/console/console-error-dash.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/console/console.css b/mozilla/toolkit/skin/mac/console/console.css deleted file mode 100755 index bc61a334512..00000000000 --- a/mozilla/toolkit/skin/mac/console/console.css +++ /dev/null @@ -1,5 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-1999 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * */ /* ===== console.css ==================================================== == Styles used by the JavaScript Console window. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); .console-box { background-color: -moz-Field; color: -moz-FieldText; } /* ::::: console rows ::::: */ .console-row { border-bottom: 1px solid #A3A3A3; padding: 0px; } .console-row-icon { padding: 5px; background-color: -moz-Dialog; -moz-box-align: start !important; } .console-icon { list-style-image: inherit; } /* ..... error rows ..... */ .console-row-code { padding: 3px 0px 3px 3px; color: #0000BB; font-size: larger; } .console-dots, .console-caret { height: 9px; } .console-dots { background: url("chrome://global/skin/console/error-dash.gif") repeat-x top; } .console-caret { width: 7px; background: url("chrome://global/skin/console/error-caret.gif") no-repeat top; } /* ..... message rows ..... */ .console-row[type="message"] { font-family: monospace; } /* ..... selected state ..... */ .console-row[selected="true"] { background-color: #B7DBEB !important; } .console-row-code[selected="true"], .console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link { color: inherit !important; } /* ::::: icons ::::: */ .console-row[type="error"], .console-row[type="exception"] { list-style-image: url("chrome://global/skin/icons/alert-error.gif"); } .console-row[type="warning"] { list-style-image: url("chrome://global/skin/icons/alert-exclam.png"); - padding-right: 10px; } .console-row[type="message"] { list-style-image: url("chrome://global/skin/icons/alert-message.gif"); } /* ::::: toolbars ::::: */ #TextfieldEval { margin: 2px !important; - } #ButtonEval { margin: 2px 2px 2px 0px !important; - -moz-appearance: button-bevel; } - toolbarseparator { min-height: 1em; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/contents.rdf b/mozilla/toolkit/skin/mac/contents.rdf deleted file mode 100755 index be6957a7883..00000000000 --- a/mozilla/toolkit/skin/mac/contents.rdf +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/customizeToolbar.css b/mozilla/toolkit/skin/mac/customizeToolbar.css deleted file mode 100644 index da9b6360c44..00000000000 --- a/mozilla/toolkit/skin/mac/customizeToolbar.css +++ /dev/null @@ -1,56 +0,0 @@ -/* - The contents of this file are subject to the Netscape 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/NPL/ - - 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 Communicator client code, released - March 31, 1998. - - The Initial Developer of the Original Code is Blake Ross. - Portions created by Blake Ross are - Copyright (C) 2002 Blake Ross. All - Rights Reserved. - - Contributor(s): - Kevin Gerich (webmail@kmgerich.com) -*/ - -#palette-box { - margin-top: 2px; -} -#palette-box > hbox > toolbarpaletteitem { - padding: 2px; - margin: 0px; -} - -/* *** customize toolbar **** */ - -#main-box { - padding: 12px; -} - -#main-box > separator { - -moz-appearance: none; - border-bottom: none; -} - -#instructions { - font: menu; - font-weight: bold; - line-height: 16pt; -} - -hbox button { - font: menu; -} - -#main-box > box > button { - -moz-appearance: button-small; - font: message-box; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/dialog.css b/mozilla/toolkit/skin/mac/dialog.css deleted file mode 100755 index eecd1e33fba..00000000000 --- a/mozilla/toolkit/skin/mac/dialog.css +++ /dev/null @@ -1,132 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: NPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 1999 - * the Initial Developer. All Rights Reserved. - * - * Original Author: Joe Hewitt (hewitt@netscape.com) - * Contributor(s): - * Kevin Gerich (webmail@kmgerich.com) - * - * - * 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 NPL, 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 NPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* ===== dialog.css ===================================================== - == Styles used by the XUL dialog element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: dialog ::::: */ - -#commonDialog > image { - margin-right: 14px !important; -} - -#commonDialog > .dialog-button-box { - margin-left: 80px; -} - -dialog { - -moz-appearance: dialog; - padding: 14px; -} - -/* ::::: dialog buttons ::::: */ - -.dialog-button { - font: menu; -} - -/* ::::: dialog header ::::: */ - -dialogheader { - margin: 0px 5px 5px 5px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDDarkShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDDarkShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - padding: 5px 8px; - background-color: Highlight; - color: HighlightText; -} - -.dialogheader-title { - margin: 0px !important; - font-size: larger; - font-weight: bold; - display: none; -} - -/* ::::: large dialog header ::::: */ - -.header-large { - -moz-box-orient: vertical; - margin: 0; - border-left: none; - border-right: none; - border-top: 1px solid; - -moz-border-top-colors: #FFFFFF; - -moz-border-bottom-colors: #9999FF #777777; - padding: 12px 5px 12px 25px; - background-color: #CCCCFF; - color: #000000; -} - -.header-large > .dialogheader-title { - font: inherit; - font-weight: bold; -} - -.header-large > .dialogheader-description { - margin-left: 12px !important; -} - -.dialogheader-description { - font-weight: bold !important; - border: 1px solid blue; -} - -.dialogheader-title { - font-weight: bold !important; - border: 1px solid red; -} - -#loginContainer { - padding-top: 10px; -} - -#findDialog, #findDialog > menu, #findDialog > groupbox { - font: menu !important; -} - -#dialog.caseSensitive { - margin-top: 8px; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/filepicker.css b/mozilla/toolkit/skin/mac/filepicker.css deleted file mode 100755 index f2320ad13b4..00000000000 --- a/mozilla/toolkit/skin/mac/filepicker.css +++ /dev/null @@ -1 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-2001 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * Joe Hewitt (hewitt@netscape.com) * Brian Ryner (bryner@netscape.com) */ /* ===== filepicker.css ================================================= == Styles used by the File Picker dialog. ======================================================================= */ @import url("chrome://global/skin/"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: column widths ::::: */ #FilenameColumn, #ContentLengthColumn, #LastModifiedDateColumn { width: 100px; } /* ::::: file/directory items ::::: */ treechildren::-moz-tree-image(FilenameColumn, directory) { margin-right: 2px; list-style-image: url("chrome://global/skin/filepicker/dir-closed.gif"); } treechildren::-moz-tree-image(FilenameColumn, file) { list-style-image: url("chrome://global/skin/filepicker/blank.gif"); } /* ::::: focus rules ::::: */ #directoryTree > treerows > .tree-bodybox { border: 1px solid transparent; } #directoryTree:focus > treerows > .tree-bodybox { border-color: #000000; } /* ::::: button items ::::: */ .up-button { list-style-image: url("chrome://global/skin/filepicker/folder-up.gif"); max-width: 36px; } .home-button { list-style-image: url("chrome://global/skin/filepicker/folder-home.gif"); max-width: 36px; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/formatting.css b/mozilla/toolkit/skin/mac/formatting.css deleted file mode 100755 index be1b36f39ed..00000000000 --- a/mozilla/toolkit/skin/mac/formatting.css +++ /dev/null @@ -1,259 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* inset areas */ - -.inset - { - border-left : 1px solid ThreeDShadow; - border-top : 1px solid ThreeDShadow; - border-right : 1px solid ThreeDHighlight; - border-bottom : 1px solid ThreeDHighlight; - margin : 0px 5px 5px 5px; - } - -.box-inset { - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - background-color: #EEEEEE; - color: -moz-DialogText; -} - -/* formatting */ -.groove-top - { - border-top : 2px groove ThreeDFace; - } - -.groove-right - { - border-right : 2px groove ThreeDFace; - } - -.groove-left - { - border-left : 2px groove ThreeDFace; - } - -.groove-bottom - { - border-bottom : 2px groove ThreeDFace; - } - -.outset - { - border-left : 1px solid ThreeDHighlight; - border-top : 1px solid ThreeDHighlight; - border-right : 1px solid ThreeDShadow; - border-bottom : 1px solid ThreeDShadow; - } - -.outset-top-bottom - { - border-top : 1px solid ThreeDHighlight; - border-bottom : 1px solid ThreeDShadow; - } - - - -/** separator rules **/ -/* standard separators */ - separator, separator[orient="horizontal"] - { - height: 1.5em; - } - - separator[orient="vertical"] - { - width: 1.5em; - } - -/* thinner separators (50% size) */ - separator.thin, separator.thin[orient="horizontal"] - { - height: 0.5em; - } - - separator.thin[orient="vertical"] - { - width: 0.5em; - } - -/* groove separators (50% size) */ - separator.groove, - separator.groove[orient="horizontal"] - { - border-top: 1px solid #A3A3A3; - height: 0px; - margin-top: 0.4em; - margin-bottom: 0.4em; - } - - separator.groove[orient="vertical"] - { - border-left: 1px solid #A3A3A3; - margin-left: 0.4em; - margin-right: 0.4em; - } - -/* groove separators (0 padding, for dividing effects) */ - separator.groove-thin - { - border-top: 1px solid #A3A3A3; - height: 0px; - } - - separator[orient="vertical"].groove-thin - { - border-left: 1px solid #A3A3A3; - } - -/** text formatting rules **/ -/* label (with margins) */ - -/** Reduced Margin for some UI **/ - .small-margin - { - margin : 1px 2px 1px 2px; - } - - .plain - { - margin: 0px !important; - border: none; - padding: 0px; - } - - label[disabled="true"] - { - color : GrayText; - } - - description, label - { - cursor : default; - } - - label - { - margin : 1px 5px 2px 6px; - } - - .header - { - - margin-bottom: 6px; - font-weight: bold; - } - - .larger-text - { - font-size : larger; - } - - .smaller-text - { - font-size : smaller; - } - - .monospace - { - font-family : monospace; - } - - .indent - { - margin-left : 23px; - } - - .box-padded - { - padding : 5px; - } - - .spaced - { - margin : 3px 5px 4px 5px; - } - - .wizard-box - { - padding : 20px 44px 10px 44px; - } - -/* Double Border Boxes */ - - /* top only */ - .double-box-top - { - -moz-binding : url("chrome://global/skin/classicBindings.xml#double-box"); - border-top : 1px solid ThreeDShadow; - background-color : #FFFFFF; - margin : 0px; - } - - .double-box-top > .db-internal-box - { - border-top : 1px solid ThreeDDarkShadow; - } - - /* all round */ - .double-box - { - -moz-binding : url("chrome://global/skin/classicBindings.xml#double-box"); - border-left : 1px solid ThreeDShadow; - border-top : 1px solid ThreeDShadow; - border-bottom : 1px solid ThreeDHighlight; - border-right : 1px solid ThreeDHighlight; - background-color : #FFFFFF; - margin : 0px; - } - - .double-box > .db-internal-box - { - border : 1px solid ThreeDDarkShadow; - } - - .caption-text - { - margin: 0px 2px 0px 1px !important; - } - -#commonDialog > hbox > vbox > description, #commonDialog > hbox > vbox > vbox > description { - font: menu; - font-weight: bold !important; - line-height: 16px; - margin-bottom: 6px; -} - - -/* class for text with a 'link' appearance */ - .text-link - { - color : blue; - text-decoration : underline; - } - - .text-link:focus - { - color : red; - -moz-outline: 1px dotted invert; - } - - .text-link:hover - { - cursor : pointer; - } - - .text-link:hover:active - { - color : red; - } - - .text-link[visited="true"] - { - color : purple; - } diff --git a/mozilla/toolkit/skin/mac/global.css b/mozilla/toolkit/skin/mac/global.css deleted file mode 100755 index 498da20979c..00000000000 --- a/mozilla/toolkit/skin/mac/global.css +++ /dev/null @@ -1,198 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Kevin Gerich (webmail@kmgerich.com) - * - */ - -/* ===== global.css ===================================================== - == Styles that apply everywhere. - ======================================================================= */ - -/* all localizable skin settings shall live here */ -@import url("chrome://global/locale/intl.css"); - -@import url("chrome://global/skin/formatting.css"); - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -button[dlgtype="help"] { - min-width: 1px !important; - padding: 0px 0px 0px 0px !important; - -moz-appearance: button-small; - -moz-box-align: start !important; -} -button[dlgtype="help"] > .button-box > .button-icon { -list-style-image: url("chrome://global/skin/icons/question-mark.png"); -padding: 0px !important; -} - -button[dlgtype="help"] > .button-box > .button-text { - display: none !important; -} -/* ::::: XBL bindings ::::: */ - -menulist > menupopup, -.menulist-menupopup { - -moz-binding: url("chrome://global/content/bindings/popup.xml#popup-scrollbars"); -} - -.menulist-compact { - -moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-compact"); -} - -.tabbrowser-tabs { - -moz-binding: url("chrome://global/skin/globalBindings.xml#tabs-closebutton"); -} - -/* ::::: root elements ::::: */ - -window, -page, -dialog, -wizard { - -moz-appearance: dialog; - background-color: #FFFFFF; - color: -moz-DialogText; - font: message-box; -} - -/* deprecated */ -window.dialog { - padding: 8px 10px 10px 8px; -} - -[wait-cursor] { - cursor: wait !important; -} - -/* ::::: alert icons :::::*/ - -.message-icon, -.alert-icon, -.error-icon, -.question-icon { - width: 64px; - height: 64px; - list-style-image: url("chrome://global/skin/icons/alert-exclam.png"); - margin: 6px 20px 6px 6px !important; -} - -/* ::::: iframe ::::: */ - -iframe { - border: none; - width: 100px; - height: 100px; - min-width: 10px; - min-height: 10px; -} - -/* ::::: statusbar ::::: */ - -statusbar { - border-top: 1px solid #A3A3A3 !important; - min-width: 1px; /* DON'T DELETE! - Prevents hiding of scrollbars in browser when window is made smaller.*/ - min-height: 15px !important; - background-color: #FFFFFF; - margin: 0px !important; - padding: 0px 10px 1px 1px; - -moz-appearance: none; -} - -statusbarpanel { - -moz-box-align: center; - -moz-box-pack: center; - padding: 0 4px; - -moz-appearance: dialog; -} - -.statusbarpanel-iconic { - padding: 0px; -} - -/* ::::: miscellaneous ::::: */ - -.toolbar-focustarget { - -moz-user-focus: ignore !important; -} - -#info.icon { - margin-right: 14px; -} - -#commonDialog { - max-width: 40em; - line-height: 13px; -} - -#header { - display: none !important; -} - -#warn1 { - font: menu; - font-weight: bold; - line-height: 16pt; - padding-bottom: 10px; -} - -#ok, #cancel, #launch, #reveal, #pauseResume { - font: menu !important; -} - -.message-icon { - display: none !important; -} - -#panelFrame { - margin-top: 2px; - padding-left: 10px; -} - -description { - margin-bottom: 4px; -} - -browser { - margin: 0px; - padding: 0px; - background-color: #FFFFFF; -} - -/* miscellaneous stuff */ - -#pref-navigator, #prefFontsDialog, #scriptsAndWindowPanel, #ImagesManager { - font: menu; -} - -#prefFontsDialog description{ - font-size: 95%; -} - -#pref-navigator > groupbox > hbox > button { - font: message-box; - -moz-appearance: button-small; -} - -#historyTree, #bookmarks-view { - border-top: 1px solid #bebebe; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/globalBindings.xml b/mozilla/toolkit/skin/mac/globalBindings.xml deleted file mode 100755 index 72e3a92e2dd..00000000000 --- a/mozilla/toolkit/skin/mac/globalBindings.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/groupbox.css b/mozilla/toolkit/skin/mac/groupbox.css deleted file mode 100755 index 846749aac76..00000000000 --- a/mozilla/toolkit/skin/mac/groupbox.css +++ /dev/null @@ -1,73 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: NPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 1998 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Joe Hewitt - * Kevin Gerich (webmail@kmgerich.com) - * - * 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 NPL, 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 NPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* ===== groupbox.css ================================================== - == Styles used by the XUL groupbox and related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: groupbox ::::: */ - -groupbox { - padding: 5px 1px 1px 0px; - margin: 6px; - -} - -.groupbox-title { - /* border-bottom: 1px solid #858585; */ -} - -.groupbox-body { - padding: 5px 5px 0px 5px; - border: 3px solid transparent; - -moz-border-top-colors: #9b9b9b #c8c8c8 #e1e1e1 ; - -moz-border-right-colors: #c4c4c4 #e1e1e1 #e4e4e4; - -moz-border-bottom-colors: #d6d6d6 #e2e2e2 #e4e4e4; - -moz-border-left-colors: #c4c4c4 #e1e1e1 #e4e4e4; - background: url("chrome://global/skin/10pct_transparent_grey.png") repeat !important; - -moz-border-radius: 3px; - margin: 0px; - -} - -caption { - padding: 0px 2px 1px 4px !important; - font: menu; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/icons/alert-error.gif b/mozilla/toolkit/skin/mac/icons/alert-error.gif deleted file mode 100755 index e7c2f65a26a..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/alert-error.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/alert-exclam.png b/mozilla/toolkit/skin/mac/icons/alert-exclam.png deleted file mode 100644 index 34a8eec2667..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/alert-exclam.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/alert-message.gif b/mozilla/toolkit/skin/mac/icons/alert-message.gif deleted file mode 100755 index ade63dba4a4..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/alert-message.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/alert-question.gif b/mozilla/toolkit/skin/mac/icons/alert-question.gif deleted file mode 100755 index dba9ee864a6..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/alert-question.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/autocomplete-dropmarker.png b/mozilla/toolkit/skin/mac/icons/autocomplete-dropmarker.png deleted file mode 100644 index 4b53b08452f..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/autocomplete-dropmarker.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/chevron.png b/mozilla/toolkit/skin/mac/icons/chevron.png deleted file mode 100644 index c46030bd94d..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/chevron.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/close.gif b/mozilla/toolkit/skin/mac/icons/close.gif deleted file mode 100755 index 358055b50b2..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/close.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/closetab-active.png b/mozilla/toolkit/skin/mac/icons/closetab-active.png deleted file mode 100644 index a682f230eb7..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/closetab-active.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/closetab.png b/mozilla/toolkit/skin/mac/icons/closetab.png deleted file mode 100644 index 455079e098b..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/closetab.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/grip-vrt.gif b/mozilla/toolkit/skin/mac/icons/grip-vrt.gif deleted file mode 100755 index ab03ff78b9a..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/grip-vrt.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/loading_16.gif b/mozilla/toolkit/skin/mac/icons/loading_16.gif deleted file mode 100644 index 085ccaecaf5..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/loading_16.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/loading_16_grey.gif b/mozilla/toolkit/skin/mac/icons/loading_16_grey.gif deleted file mode 100644 index ff065edd848..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/loading_16_grey.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/menuflashblue.gif b/mozilla/toolkit/skin/mac/icons/menuflashblue.gif deleted file mode 100644 index c4680afcb8c..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/menuflashblue.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/menuselected.png b/mozilla/toolkit/skin/mac/icons/menuselected.png deleted file mode 100644 index 03d550236d2..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/menuselected.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/minimize.gif b/mozilla/toolkit/skin/mac/icons/minimize.gif deleted file mode 100755 index 295003780aa..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/minimize.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/notloading_16.png b/mozilla/toolkit/skin/mac/icons/notloading_16.png deleted file mode 100644 index 50d8dfc5808..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/notloading_16.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/popup-icon-spacer.png b/mozilla/toolkit/skin/mac/icons/popup-icon-spacer.png deleted file mode 100644 index 6cefc73db18..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/popup-icon-spacer.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/popup-overlay.png b/mozilla/toolkit/skin/mac/icons/popup-overlay.png deleted file mode 100644 index 759686e9106..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/popup-overlay.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/question-mark.png b/mozilla/toolkit/skin/mac/icons/question-mark.png deleted file mode 100644 index e85542c75e9..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/question-mark.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/restore.gif b/mozilla/toolkit/skin/mac/icons/restore.gif deleted file mode 100755 index cdc66e11245..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/restore.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/small-document.png b/mozilla/toolkit/skin/mac/icons/small-document.png deleted file mode 100644 index f568f20945e..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/small-document.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/small-globe-sunken-grey.png b/mozilla/toolkit/skin/mac/icons/small-globe-sunken-grey.png deleted file mode 100644 index 02f10470451..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/small-globe-sunken-grey.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/icons/small-globe-sunken.png b/mozilla/toolkit/skin/mac/icons/small-globe-sunken.png deleted file mode 100644 index e6c306a83bb..00000000000 Binary files a/mozilla/toolkit/skin/mac/icons/small-globe-sunken.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/inactive-icon-black.png b/mozilla/toolkit/skin/mac/inactive-icon-black.png deleted file mode 100644 index da6e3e39ff0..00000000000 Binary files a/mozilla/toolkit/skin/mac/inactive-icon-black.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/inactivetab-icon-black.png b/mozilla/toolkit/skin/mac/inactivetab-icon-black.png deleted file mode 100644 index 605460846fd..00000000000 Binary files a/mozilla/toolkit/skin/mac/inactivetab-icon-black.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/inactivetab-icon-grey.png b/mozilla/toolkit/skin/mac/inactivetab-icon-grey.png deleted file mode 100644 index 1f9aca1c225..00000000000 Binary files a/mozilla/toolkit/skin/mac/inactivetab-icon-grey.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/inactivetab-left.png b/mozilla/toolkit/skin/mac/inactivetab-left.png deleted file mode 100644 index ab0c430c025..00000000000 Binary files a/mozilla/toolkit/skin/mac/inactivetab-left.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/inactivetab-right.png b/mozilla/toolkit/skin/mac/inactivetab-right.png deleted file mode 100644 index a5306d66f63..00000000000 Binary files a/mozilla/toolkit/skin/mac/inactivetab-right.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/info/contents.rdf b/mozilla/toolkit/skin/mac/info/contents.rdf deleted file mode 100755 index 32e070b5418..00000000000 --- a/mozilla/toolkit/skin/mac/info/contents.rdf +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/mozilla/toolkit/skin/mac/info/preview.png b/mozilla/toolkit/skin/mac/info/preview.png deleted file mode 100644 index 9595ebcadf3..00000000000 Binary files a/mozilla/toolkit/skin/mac/info/preview.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/jar.mn b/mozilla/toolkit/skin/mac/jar.mn deleted file mode 100644 index 22bd5c1d601..00000000000 --- a/mozilla/toolkit/skin/mac/jar.mn +++ /dev/null @@ -1,129 +0,0 @@ -classic.jar: -+ skin/classic/global/10pct_transparent_grey.png -+ skin/classic/global/10pct_transparent_pixel.png -+ skin/classic/global/20pct_transparent_pixel.png -+ skin/classic/global/50pct_transparent_grey.png -+ skin/classic/global/50pct_transparent_white.png -+ skin/classic/global/activetab-left.png -+ skin/classic/global/activetab-middle.png -+ skin/classic/global/activetab-right.png -+ skin/classic/global/autocomplete.css -+ skin/classic/global/browser.css -+ skin/classic/global/button.css -+ skin/classic/global/checkbox.css -+ skin/classic/global/closetab.png -+ skin/classic/global/colorpicker.css -+ skin/classic/global/config.css -+ skin/classic/global/console.css -+ skin/classic/global/contents.rdf -+ skin/classic/global/customizeToolbar.css -+ skin/classic/global/dialog.css -+ skin/classic/global/filepicker.css -+ skin/classic/global/formatting.css -+ skin/classic/global/global.css -+ skin/classic/global/globalBindings.xml -+ skin/classic/global/groupbox.css -+ skin/classic/global/inactive-icon-black.png -+ skin/classic/global/inactivetab-icon-black.png -+ skin/classic/global/inactivetab-icon-grey.png -+ skin/classic/global/inactivetab-left.png -+ skin/classic/global/inactivetab-right.png -+ skin/classic/global/linkTree.css -+ skin/classic/global/listbox_highlight.png -+ skin/classic/global/listbox.css -+ skin/classic/global/menu.css -+ skin/classic/global/menulist.css -+ skin/classic/global/popup.css -+ skin/classic/global/progressmeter.css -+ skin/classic/global/radio.css -+ skin/classic/global/scrollbars.css -+ skin/classic/global/scrollbox.css -+ skin/classic/global/spinbuttons.css -+ skin/classic/global/splitter.css -+ skin/classic/global/tabbox.css -+ skin/classic/global/tabs-bottom-bg.png -+ skin/classic/global/textbox.css -+ skin/classic/global/toolbar.css -+ skin/classic/global/toolbarbutton.css -+ skin/classic/global/tree.css -+ skin/classic/global/wizard.css -+ skin/classic/global/wizardOverlay.css -+ skin/classic/global/arrow/arrow-dn-dis.gif (arrow/arrow-dn-dis.gif) -+ skin/classic/global/arrow/arrow-dn-dis.png (arrow/arrow-dn-dis.png) -+ skin/classic/global/arrow/arrow-dn-hov.gif (arrow/arrow-dn-hov.gif) -+ skin/classic/global/arrow/arrow-dn-sharp.gif (arrow/arrow-dn-sharp.gif) -+ skin/classic/global/arrow/arrow-dn-small-dis.png (arrow/arrow-dn-small-dis.png) -+ skin/classic/global/arrow/arrow-dn-small.png (arrow/arrow-dn-small.png) -+ skin/classic/global/arrow/arrow-dn.gif (arrow/arrow-dn.gif) -+ skin/classic/global/arrow/arrow-dn.png (arrow/arrow-dn.png) -+ skin/classic/global/arrow/arrow-lft-dis.gif (arrow/arrow-lft-dis.gif) -+ skin/classic/global/arrow/arrow-lft-hov.gif (arrow/arrow-lft-hov.gif) -+ skin/classic/global/arrow/arrow-lft-sharp-end.gif (arrow/arrow-lft-sharp-end.gif) -+ skin/classic/global/arrow/arrow-lft-sharp.gif (arrow/arrow-lft-sharp.gif) -+ skin/classic/global/arrow/arrow-lft.gif (arrow/arrow-lft.gif) -+ skin/classic/global/arrow/arrow-rit-dis.gif (arrow/arrow-rit-dis.gif) -+ skin/classic/global/arrow/arrow-rit-hov.gif (arrow/arrow-rit-hov.gif) -+ skin/classic/global/arrow/arrow-rit-sharp-end.gif (arrow/arrow-rit-sharp-end.gif) -+ skin/classic/global/arrow/arrow-rit-sharp.gif (arrow/arrow-rit-sharp.gif) -+ skin/classic/global/arrow/arrow-rit.gif (arrow/arrow-rit.gif) -+ skin/classic/global/arrow/arrow-up-dis.gif (arrow/arrow-up-dis.gif) -+ skin/classic/global/arrow/arrow-up-dis.png (arrow/arrow-up-dis.png) -+ skin/classic/global/arrow/arrow-up-hov.gif (arrow/arrow-up-hov.gif) -+ skin/classic/global/arrow/arrow-up-sharp.gif (arrow/arrow-up-sharp.gif) -+ skin/classic/global/arrow/arrow-up.gif (arrow/arrow-up.gif) -+ skin/classic/global/arrow/arrow-up.png (arrow/arrow-up.png) -+ skin/classic/global/console/console-error-caret.gif (console/console-error-caret.gif) -+ skin/classic/global/console/console-error-dash.gif (console/console-error-dash.gif) -+ skin/classic/global/console/console.css (console/console.css) -+ skin/classic/global/icons/alert-error.gif (icons/alert-error.gif) -+ skin/classic/global/icons/alert-exclam.png (icons/alert-exclam.png) -+ skin/classic/global/icons/alert-message.gif (icons/alert-message.gif) -+ skin/classic/global/icons/alert-question.gif (icons/alert-question.gif) -+ skin/classic/global/icons/autocomplete-dropmarker.png (icons/autocomplete-dropmarker.png) -+ skin/classic/global/icons/chevron.png (icons/chevron.png) -+ skin/classic/global/icons/close.gif (icons/close.gif) -+ skin/classic/global/icons/closetab-active.png (icons/closetab-active.png) -+ skin/classic/global/icons/closetab.png (icons/closetab.png) -+ skin/classic/global/icons/grip-vrt.gif (icons/grip-vrt.gif) -+ skin/classic/global/icons/loading_16_grey.gif (icons/loading_16_grey.gif) -+ skin/classic/global/icons/loading_16.gif (icons/loading_16.gif) -+ skin/classic/global/icons/menuflashblue.gif (icons/menuflashblue.gif) -+ skin/classic/global/icons/menuselected.png (icons/menuselected.png) -+ skin/classic/global/icons/minimize.gif (icons/minimize.gif) -+ skin/classic/global/icons/notloading_16.png (icons/notloading_16.png) -+ skin/classic/global/icons/popup-icon-spacer.png (icons/popup-icon-spacer.png) -+ skin/classic/global/icons/popup-overlay.png (icons/popup-overlay.png) -+ skin/classic/global/icons/question-mark.png (icons/question-mark.png) -+ skin/classic/global/icons/restore.gif (icons/restore.gif) -+ skin/classic/global/icons/small-document.png (icons/small-document.png) -+ skin/classic/global/icons/small-globe-sunken-grey.png (icons/small-globe-sunken-grey.png) -+ skin/classic/global/icons/small-globe-sunken.png (icons/small-globe-sunken.png) -+ skin/classic/global/menu/menu-arrow-dis.gif (menu/menu-arrow-dis.gif) -+ skin/classic/global/menu/menu-arrow-hov.gif (menu/menu-arrow-hov.gif) -+ skin/classic/global/menu/menu-arrow.gif (menu/menu-arrow.gif) -+ skin/classic/global/menu/menu-check-dis.gif (menu/menu-check-dis.gif) -+ skin/classic/global/menu/menu-check-dis.png (menu/menu-check-dis.png) -+ skin/classic/global/menu/menu-check-hov.gif (menu/menu-check-hov.gif) -+ skin/classic/global/menu/menu-check-hov.png (menu/menu-check-hov.png) -+ skin/classic/global/menu/menu-check.gif (menu/menu-check.gif) -+ skin/classic/global/menu/menu-check.png (menu/menu-check.png) -+ skin/classic/global/menu/menu-radio-hov.gif (menu/menu-radio-hov.gif) -+ skin/classic/global/menu/menu-radio.gif (menu/menu-radio.gif) -+ skin/classic/global/menu/menu-separator.png (menu/menu-separator.png) -+ skin/classic/global/menulist/menulist-arrow-act.gif (menulist/menulist-arrow-act.gif) -+ skin/classic/global/menulist/menulist-arrow-dis.gif (menulist/menulist-arrow-dis.gif) -+ skin/classic/global/menulist/menulist-arrow.gif (menulist/menulist-arrow.gif) -+ skin/classic/global/splitter/dimple.png (splitter/dimple.png) -+ skin/classic/global/toolbar/Lighten.png (toolbar/Lighten.png) -+ skin/classic/global/toolbar/spring.gif (toolbar/spring.gif) -+ skin/classic/global/toolbar/toolbar-pinstripe-overlay.png (toolbar/toolbar-pinstripe-overlay.png) -+ skin/classic/global/toolbar/toolbar-separator.png (toolbar/toolbar-separator.png) -+ skin/classic/global/tree/columnpicker.gif (tree/columnpicker.gif) -+ skin/classic/global/tree/folder-dis.png (tree/folder-dis.png) -+ skin/classic/global/tree/folder.png (tree/folder.png) -+ skin/classic/global/tree/item.png (tree/item.png) -+ skin/classic/global/tree/sort-asc.gif (tree/sort-asc.gif) -+ skin/classic/global/tree/sort-dsc.gif (tree/sort-dsc.gif) -+ skin/classic/preview.png (info/preview.png) -+ skin/classic/contents.rdf (info/contents.rdf) - diff --git a/mozilla/toolkit/skin/mac/linkTree.css b/mozilla/toolkit/skin/mac/linkTree.css deleted file mode 100755 index 1762fa44a0c..00000000000 --- a/mozilla/toolkit/skin/mac/linkTree.css +++ /dev/null @@ -1 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /** * All the properties in this rule are important to avoid having to create * a special type of tree. This stylesheet can be loaded into a document with * a single tree that is a link tree. Hardly elegant but it's efficient. */ treeitem[selected="true"] > treerow { background : transparent !important; border : none !important; color : -moz-FieldText !important; } treecell:hover { text-decoration : underline !important; color : #000080 !important; cursor : pointer; } treecell:hover:active { text-decoration : underline !important; color : red !important; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/listbox.css b/mozilla/toolkit/skin/mac/listbox.css deleted file mode 100755 index 5210a4f900d..00000000000 --- a/mozilla/toolkit/skin/mac/listbox.css +++ /dev/null @@ -1,8 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-2001 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) */ /* ===== listbox.css ======================================================= == Styles used by XUL listbox-related elements. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: listbox ::::: */ listbox { margin: 2px 4px; border-top: 1px solid #A1A1A1; - border-right: 1px solid #C3C3C3; - border-bottom: 1px solid #DDDDDD; - border-left: 1px solid #C3C3C3; - background-color: #FFFFFF; color: -moz-FieldText; } .listcell-label { margin: 0px !important; padding: 0px 0px 1px 4px; white-space: nowrap; } /* ::::: listitem ::::: */ listitem { border: 1px solid transparent; } listbox:focus > listitem[selected="true"][current="true"] { } listitem[selected="true"] { background-color: -moz-Dialog; color: -moz-DialogText; } listbox:focus > listitem[selected="true"] { - background-color: #3874D1; - color: #FFFFFF; } /* ::::: listheader ::::: */ listheader { -moz-appearance: treeheadercell; -moz-box-align: center; border: 2px solid; -moz-border-top-colors: ThreeDHighlight ThreeDLightShadow; -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; -moz-border-left-colors: ThreeDHighlight ThreeDLightShadow; background-color: -moz-Dialog; color: -moz-DialogText; padding: 0 4px; } listheader[sortable="true"]:hover:active { border-top: 2px solid; border-right: 1px solid; border-bottom: 1px solid; border-left: 2px solid; -moz-border-top-colors: ThreeDShadow -moz-Dialog; -moz-border-right-colors: ThreeDShadow; -moz-border-bottom-colors: ThreeDShadow; -moz-border-left-colors: ThreeDShadow -moz-Dialog; padding: 1px 4px 0px 5px; } .listheader-icon { margin-right: 2px; } .listheader-label { margin: 0px !important; } /* ..... sort direction icon ..... */ .listheader-sortdirection { -moz-appearance: treeheadersortarrow; list-style-image: none; } .listheader-sortdirection[sortDirection="ascending"] { list-style-image: url("chrome://global/skin/tree/sort-asc.gif"); } .listheader-sortdirection[sortDirection="descending"] { list-style-image: url("chrome://global/skin/tree/sort-dsc.gif"); } /* ::::: listcell ::::: */ .listcell-label { margin: 0px !important; padding: 0px 0px 1px 4px; white-space: nowrap; } .listcell-icon { margin-right: 2px; } .listcell-label[disabled="true"] { color: GrayText; } /* ::::: listcell checkbox ::::: */ .listcell-check { -moz-appearance: checkbox; -moz-box-align: center; margin: 0px 2px; border: 1px solid -moz-DialogText; min-width: 13px; min-height: 13px; background: -moz-Field url("chrome://global/skin/checkbox/cbox.gif") no-repeat 50% 50%; } .listcell-check[checked="true"] { background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); } .listcell-check[disabled="true"] { border-color: GrayText; } .listcell-check[disabled="true"][checked="true"] { background-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif"); } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/listbox_highlight.png b/mozilla/toolkit/skin/mac/listbox_highlight.png deleted file mode 100644 index 9ace4480af7..00000000000 Binary files a/mozilla/toolkit/skin/mac/listbox_highlight.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu.css b/mozilla/toolkit/skin/mac/menu.css deleted file mode 100644 index d7d50746b31..00000000000 --- a/mozilla/toolkit/skin/mac/menu.css +++ /dev/null @@ -1,206 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - * - */ - -/* ===== menu.css ======================================================= - == Styles used by XUL menu-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: menu/menuitem ::::: */ - -menu, -menuitem { - -moz-appearance: none !important; - -moz-box-align: center; - color: #000000; - font: menu; - list-style-image: none; - -moz-image-region: auto; -} - -menu[disabled="true"], menuitem[disabled="true"], -menu[_moz-menuactive="true"][disabled="true"], -menuitem[_moz-menuactive="true"][disabled="true"] { - color: GrayText; - background-color: transparent !important; - /* background-image: none !important; */ -} - -/* ..... internal content .... */ - -.menu-text, -.menu-iconic-left, -.menu-iconic-text { - margin: 0px 4px 0px 0px !important; - color: inherit; -} - -.menu-text { - margin-left: 20px !important; - font-weight: inherit; -} - -.menu-description { - font-style: italic; - color: GrayText; - margin-left: 1ex !important; -} - -.menu-accel, -.menu-iconic-accel { - margin: 0px 2px 0px 7px !important; - padding-right: 14px; - color: inherit; -} - -.menu-iconic-left { - width: 16px; -} - -/* ..... menu arrow box ..... */ - -.menu-right { - margin: 0px 0px 0px 6px; - width: 8px; - list-style-image: url("chrome://global/skin/menu/menu-arrow.gif"); - -moz-image-region: auto; -} - -.menu-right[_moz-menuactive="true"] { - list-style-image: url("chrome://global/skin/menu/menu-arrow-hov.gif"); - -moz-image-region: auto; -} - -.menu-right[disabled="true"] { - list-style-image: url("chrome://global/skin/menu/menu-arrow-dis.gif") !important; - -moz-image-region: auto; -} - -/* ..... internal content .... */ - -.menubar-left { - margin: 0px 2px 0px 0px; - color: inherit; -} - -.menubar-text { - margin: 0px 2px 0px 0px !important; - color: inherit; -} - -/* ::::: menu/menuitems in popups ::::: */ - -menupopup > menu, -popup > menu, -menupopup > menuitem, -popup > menuitem { - padding: 1px 8px 1px 8px !important; - max-width: 42em; -} - -menupopup > menu[_moz-menuactive="true"], -menupopup > menuitem[_moz-menuactive="true"], -popup > menu[_moz-menuactive="true"], -popup > menuitem[_moz-menuactive="true"] { - /* background: url("chrome://global/skin/icons/menuselected.png") #FFFFFF repeat !important; */ - background-color: #3063b0; - color: #FFF; -} - -/* ::::: menu/menuitems in menulist popups ::::: */ - -.menulist-menupopup > menuitem, -menulist > menupopup > menuitem, -.menulist-menupopup > menu, -menulist > menupopup > menu { - padding-right: 25px !important; - max-width: none; - font: inherit; - color: -moz-FieldText; -} - -.menulist-menupopup > menuitem > .menu-iconic-left, -menulist > menupopup > menuitem > .menu-iconic-left, -.menulist-menupopup > menu > .menu-iconic-left, -menulist > menupopup > menu > .menu-iconic-left { - padding: 0px; - margin: 0px; -} - -menulist > menupopup > menuitem[_moz-menuactive="true"] { - /* border: 1px dotted #F5DB95; */ -} - -/* ::::: checkbox menuitem ::::: */ - -menuitem[checked="true"], -menulist > menupopup > menuitem[selected="true"], -.menulist-menupopup > menuitem[selected="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check.png"); - -moz-image-region: auto; -} - -menuitem[checked="true"][disabled="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check-dis.png"); - -moz-image-region: auto; -} - -menuitem[checked="true"][_moz-menuactive="true"]:not([disabled="true"]), -menulist > menupopup > menuitem[_moz-menuactive="true"][selected="true"]:not([disabled="true"]), -.menulist-menupopup > menuitem[_moz-menuactive="true"][selected="true"]:not([disabled="true"]) { - list-style-image: url("chrome://global/skin/menu/menu-check-hov.png") !important; - -moz-image-region: auto; -} - -/* ::::: radio menuitem ::::: */ - -/* ::::: menuseparator ::::: */ - -menuseparator { - margin: 6px 1px 4px 1px; - padding: 1px !important; - border-top: 1px solid #d9d9d9; -} - -/* ::::: menulist popup ::::: */ -menulist > menupopup { - margin: 4px 0px 4px 0px; -} - -/* ::::: autocomplete ::::: */ - -.autocomplete-history-popup > menuitem { - max-width: none !important; - font: message-box; -} - -/* ::::: tree column picker ::::: */ - -.treecell-popupcell-menu { - margin-left: -2px; - list-style-image: url("chrome://global/skin/columnselect.gif"); - -moz-image-region: auto; -} diff --git a/mozilla/toolkit/skin/mac/menu/menu-arrow-dis.gif b/mozilla/toolkit/skin/mac/menu/menu-arrow-dis.gif deleted file mode 100755 index 414fd6f45b8..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-arrow-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-arrow-hov.gif b/mozilla/toolkit/skin/mac/menu/menu-arrow-hov.gif deleted file mode 100755 index 741f4ce789c..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-arrow-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-arrow.gif b/mozilla/toolkit/skin/mac/menu/menu-arrow.gif deleted file mode 100755 index 81f660fa9a2..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-arrow.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-check-dis.gif b/mozilla/toolkit/skin/mac/menu/menu-check-dis.gif deleted file mode 100755 index 3bab5c0be27..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-check-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-check-dis.png b/mozilla/toolkit/skin/mac/menu/menu-check-dis.png deleted file mode 100644 index 10913c5f75a..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-check-dis.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-check-hov.gif b/mozilla/toolkit/skin/mac/menu/menu-check-hov.gif deleted file mode 100755 index a7697ddf51d..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-check-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-check-hov.png b/mozilla/toolkit/skin/mac/menu/menu-check-hov.png deleted file mode 100644 index e56a9544d23..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-check-hov.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-check.gif b/mozilla/toolkit/skin/mac/menu/menu-check.gif deleted file mode 100755 index 7be6dfcfc62..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-check.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-check.png b/mozilla/toolkit/skin/mac/menu/menu-check.png deleted file mode 100644 index 6408ee8e36f..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-check.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-radio-hov.gif b/mozilla/toolkit/skin/mac/menu/menu-radio-hov.gif deleted file mode 100755 index 723473c1654..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-radio-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-radio.gif b/mozilla/toolkit/skin/mac/menu/menu-radio.gif deleted file mode 100755 index f3a0a48cfc5..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-radio.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menu/menu-separator.png b/mozilla/toolkit/skin/mac/menu/menu-separator.png deleted file mode 100644 index 4eaab92a3a4..00000000000 Binary files a/mozilla/toolkit/skin/mac/menu/menu-separator.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menulist.css b/mozilla/toolkit/skin/mac/menulist.css deleted file mode 100755 index ee5d1819f83..00000000000 --- a/mozilla/toolkit/skin/mac/menulist.css +++ /dev/null @@ -1,148 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - */ - -/* ===== menulist.css =================================================== - == Styles used by the XUL menulist element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* :::::::::: menulist :::::::::: */ - -menulist { - -moz-appearance: menulist; - -moz-user-focus: ignore; - margin: 2px 4px; - height: 20px !important; -} - -.menulist-label-box { - -moz-appearance: menulist-text; - -moz-box-align: center; - -moz-box-pack: center; - background-color: #CCCCCC; -} - -.menulist-label { - margin: 1px 3px !important; -} - -.menulist-description { - font-style: italic; - color: GrayText; - margin-left: 1ex !important; -} - -/* ..... dropmarker ..... */ - -.menulist-dropmarker { - -moz-appearance: menulist-button; -} - -/* ..... disabled state ..... */ - -menulist[disabled="true"] { - color: #777777 !important; -} - -menulist[disabled="true"] > .menulist-dropmarker { - padding-left: 7px !important; -} - -/* ::::: editable menulists ::::: */ - -menulist[editable="true"] { - -moz-user-focus: normal; -} - -menulist[editable="true"] > .menulist-dropmarker { - -moz-border-left-colors: #000000 #CCCCCC #FFFFFF; - -moz-border-radius: 2px; -} - -menulist[editable="true"][open="true"] > .menulist-dropmarker { - -moz-border-left-colors: #000000 #454545 #555555; -} - -.menulist-editable-box { - margin-right: 4px; - border-top: 1px solid #A1A1A1; - border-right: 1px solid #C3C3C3; - border-bottom: 1px solid #DDDDDD; - border-left: 1px solid #C3C3C3; - padding: 1px 0px 1px 2px; - background-color: -moz-Field; - color: -moz-FieldText; -} - -menulist[editable="true"][focused="true"] > .menulist-editable-box { - -moz-border-top-colors: -moz-mac-focusring -moz-mac-focusring #000000; - -moz-border-right-colors: -moz-mac-focusring -moz-mac-focusring #000000; - -moz-border-bottom-colors: -moz-mac-focusring -moz-mac-focusring #000000; - -moz-border-left-colors: -moz-mac-focusring -moz-mac-focusring #000000; -} - -html|*.menulist-editable-input { - margin: 0px !important; - border: none !important; - padding: 0px !important; - background: inherit; - font: inherit; -} - -/* ::::: compact menulists ::::: */ - -.menulist-compact { - -moz-box-align: center; - -moz-box-pack: center; - margin: 0; - border: 2px solid; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - background-color: -moz-Dialog; -} - -.menulist-compact > .menulist-label { - margin: 0 3px !important; - text-align: right; - -mox-box-flex: 1; -} - -.menulist-compact > .menulist-dropmarker { - margin-left: 2px; - border: none; - padding: 0 !important; - background: transparent; -} - -.menulist-compact[open="true"] { - -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow; - background-color: ThreeDShadow; -} diff --git a/mozilla/toolkit/skin/mac/menulist/menulist-arrow-act.gif b/mozilla/toolkit/skin/mac/menulist/menulist-arrow-act.gif deleted file mode 100755 index dbd478c7299..00000000000 Binary files a/mozilla/toolkit/skin/mac/menulist/menulist-arrow-act.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menulist/menulist-arrow-dis.gif b/mozilla/toolkit/skin/mac/menulist/menulist-arrow-dis.gif deleted file mode 100755 index 307fff87a3a..00000000000 Binary files a/mozilla/toolkit/skin/mac/menulist/menulist-arrow-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/menulist/menulist-arrow.gif b/mozilla/toolkit/skin/mac/menulist/menulist-arrow.gif deleted file mode 100755 index bfdb968fba3..00000000000 Binary files a/mozilla/toolkit/skin/mac/menulist/menulist-arrow.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/obsolete/Makefile.in b/mozilla/toolkit/skin/mac/obsolete/Makefile.in deleted file mode 100644 index 483312f1621..00000000000 --- a/mozilla/toolkit/skin/mac/obsolete/Makefile.in +++ /dev/null @@ -1,45 +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 the Mozilla Browser code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2002 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Brian Ryner -# -# 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 ***** - -DEPTH = ../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -include $(topsrcdir)/config/rules.mk diff --git a/mozilla/toolkit/skin/mac/obsolete/jar.mn b/mozilla/toolkit/skin/mac/obsolete/jar.mn deleted file mode 100644 index 612bbcfa078..00000000000 --- a/mozilla/toolkit/skin/mac/obsolete/jar.mn +++ /dev/null @@ -1,2 +0,0 @@ -classic.jar: -+ skin/classic/global/scrollbars.css diff --git a/mozilla/toolkit/skin/mac/obsolete/scrollbars.css b/mozilla/toolkit/skin/mac/obsolete/scrollbars.css deleted file mode 100644 index 200b858e950..00000000000 --- a/mozilla/toolkit/skin/mac/obsolete/scrollbars.css +++ /dev/null @@ -1,51 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 2002 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== scrollbars.css ================================================= - == Styles used by native scrollbar-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* ::::: scrollbar ::::: */ - -scrollbar { - -moz-appearance: scrollbar; - -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar); - min-width: 16px; - cursor: default; - background-color: white; -} - -/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */ -/* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */ -/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */ -@media print { - html|div scrollbar { - -moz-appearance: scrollbar; - -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar); - min-width: 16px; - cursor: default; - } -} diff --git a/mozilla/toolkit/skin/mac/popup.css b/mozilla/toolkit/skin/mac/popup.css deleted file mode 100644 index 7d4fcf3a4ee..00000000000 --- a/mozilla/toolkit/skin/mac/popup.css +++ /dev/null @@ -1,75 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - */ - -/* ===== popup.css =================================================== - == Styles used by the XUL popup element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: menupopup ::::: */ - -menupopup, -popup { - min-width: 1px; - color: #000000; - border-top: 1px solid #C3C3C3; - background: url("chrome://global/skin/icons/popup-overlay.png") repeat !important; -} - -/* ::::: popup internal box ::::: */ - -.popup-internal-box { - -moz-appearance: none; - padding: 4px 0px 4px 0px !important; -} - -/* ::::: tooltip ::::: */ - -tooltip { - -moz-appearance: tooltip; - margin-top: 18px; - padding: 2px 3px; - max-width: 40em; - color: InfoText; - font: message-box; -} - -.tooltip-label { - margin: 0px !important; -} - -tooltip[titletip="true"] { - /* See bug 32157 comment 128 - * margin: -2px 0px 0px -3px; - */ - max-width: none; -} - -/* rules for popups associated with menulists */ - -menulist > menupopup, -.menulist-menupopup { - min-width: 0px; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/progressmeter.css b/mozilla/toolkit/skin/mac/progressmeter.css deleted file mode 100755 index 2b995d806c4..00000000000 --- a/mozilla/toolkit/skin/mac/progressmeter.css +++ /dev/null @@ -1,24 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Netscape 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/NPL/ * * 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 * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Joe Hewitt - * Kevin Gerich (webmail@kmgerich.com) * * 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 NPL, 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 NPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ /* ===== progressmeter.css ============================================== == Styles used by the XUL progressmeter element. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: progressmeter ::::: */ progressmeter { -moz-appearance: progressbar; margin: 2px 4px; min-width: 128px; height: 12px; -} - - -.progress-remainder[flex="100"], .progress-remainder[flex="0"] { - background-image: none !important; - -moz-appearance: none; } - /* ::::: statusbar progressmeter ::::: */ .progressmeter-statusbar { margin: 0; border-width: 1px; } - -.progressmeter-statusbar > .progressmeter-remainder { } -/* ::::: statusbar progressmeter ::::: */ -.progressmeter-statusbar[mode="determined"] { margin: 0; border-width: 1px; } - - -/* :::::: download progress meter :::::::: */ - -#progress, #progress0 { - align: center !important; - vertical-align: baseline !important; - -moz-appearance: progressbar; - border-left: 1px solid #cccccc; - border-right: 1px solid #cccccc; -} diff --git a/mozilla/toolkit/skin/mac/radio.css b/mozilla/toolkit/skin/mac/radio.css deleted file mode 100755 index 94055504929..00000000000 --- a/mozilla/toolkit/skin/mac/radio.css +++ /dev/null @@ -1,3 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-1999 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * */ /* ===== radio.css =================================================== == Styles used by the XUL radio element. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: radio ::::: */ radiogroup { -moz-user-focus: ignore; - margin: 1px 0px 1px 0px; } radio { -moz-appearance: radio-container; -moz-box-align: center; margin: 2px 2px 2px 2px; } .radio-label-box { margin-left: 0px; padding: 0px; } .radio-icon { margin-right: 2px; } .radio-label { margin: 0 !important; - padding-bottom: 1px; } /* ..... disabled state ..... */ radio[disabled="true"] { color: GrayText !important; } /* ::::: checkmark image ::::: */ .radio-check { -moz-appearance: radio; width: 14px; height: 12px; background: url("chrome://global/skin/radio/radio.gif") no-repeat; } radio:hover:active > .radio-check { background-image: url("chrome://global/skin/radio/radio-act.gif"); } radio[disabled="true"] > .radio-check { background-image: url("chrome://global/skin/radio/radio-dis.gif") !important; } /* ..... selected state ..... */ radio[selected="true"] > .radio-check { background-image: url("chrome://global/skin/radio/radio-check.gif"); } radio[selected="true"]:hover:active > .radio-check { background-image: url("chrome://global/skin/radio/radio-check-act.gif"); } radio[selected="true"][disabled="true"] > .radio-check { background-image: url("chrome://global/skin/radio/radio-check-dis.gif") !important } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/scrollbars.css b/mozilla/toolkit/skin/mac/scrollbars.css deleted file mode 100644 index 2058fbf4c50..00000000000 --- a/mozilla/toolkit/skin/mac/scrollbars.css +++ /dev/null @@ -1,57 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 2002 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== scrollbars.css ================================================= - == Styles used by native scrollbar-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* ::::: scrollbar ::::: */ - -scrollbar { - -moz-appearance: scrollbar; - -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar); - min-width: 16px; - cursor: default; - background-color: white; -} - -/* ::::: square at the corner of two scrollbars ::::: */ - -scrollcorner { - background-color: white; -} - -/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */ -/* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */ -/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */ -@media print { - html|div scrollbar { - -moz-appearance: scrollbar; - -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar); - min-width: 16px; - cursor: default; - } -} diff --git a/mozilla/toolkit/skin/mac/scrollbox.css b/mozilla/toolkit/skin/mac/scrollbox.css deleted file mode 100755 index 3bbf0bc1e5a..00000000000 --- a/mozilla/toolkit/skin/mac/scrollbox.css +++ /dev/null @@ -1,23 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* - * Autorepeatbutton - */ -.autorepeatbutton-up - { - list-style-image : url("chrome://global/skin/arrow/arrow-up-sharp.gif"); - } - -.autorepeatbutton-down - { - list-style-image : url("chrome://global/skin/arrow/arrow-dn-sharp.gif"); - } - -autorepeatbutton - { - -moz-box-align : center; - -moz-box-pack : center; - margin : 1px 2px 2px 1px; - padding : 4px; - } - diff --git a/mozilla/toolkit/skin/mac/spinbuttons.css b/mozilla/toolkit/skin/mac/spinbuttons.css deleted file mode 100755 index 58ff6adebc8..00000000000 --- a/mozilla/toolkit/skin/mac/spinbuttons.css +++ /dev/null @@ -1 +0,0 @@ -/* * 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 Håkan Waara * Portions created by Håkan Waara are Copyright (C) * Håkan Waara. All Rights Reserved. * * Contributor(s): Håkan Waara (Original Author) */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); .up { list-style-image: url("chrome://global/skin/spinbtn-up.gif") } .up:hover:active { list-style-image: url("chrome://global/skin/spinbtn-up-act.gif") } .down { list-style-image: url("chrome://global/skin/spinbtn-dn.gif") } .down:hover:active { list-style-image: url("chrome://global/skin/spinbtn-dn-act.gif") } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/splitter.css b/mozilla/toolkit/skin/mac/splitter.css deleted file mode 100755 index 80f782193cb..00000000000 --- a/mozilla/toolkit/skin/mac/splitter.css +++ /dev/null @@ -1,79 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: NPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 1998 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Joe Hewitt - * Kevin Gerich (webmail@kmgerich.com) - * - * 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 NPL, 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 NPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* ===== splitter.css =================================================== - == Styles used by the XUL splitter element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: splitter (vertical) ::::: */ - -splitter { - -moz-box-align: center; - -moz-box-pack: center; - cursor: e-resize; - min-width: 9px; - min-height: 9px; - background: url("chrome://global/skin/splitter/dimple.png") transparent no-repeat center; -} - -/* ::::: splitter (horizontal) ::::: */ - -splitter[orient="vertical"] { - cursor: n-resize; - min-width: 0px; - min-height: 9px; - min-width: 9px; - background: url("chrome://global/skin/splitter/dimple.png") transparent no-repeat center; -} - -/* ::::: splitter grippy ::::: */ - -grippy { - cursor: pointer; - margin: 0px 1px; - min-width: 5px; - min-height: 42px; -} - -splitter[orient="vertical"] > grippy { - margin: 1px 0px; - min-width: 42px; - min-height: 5px; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/splitter/dimple.png b/mozilla/toolkit/skin/mac/splitter/dimple.png deleted file mode 100644 index d96a5aded6f..00000000000 Binary files a/mozilla/toolkit/skin/mac/splitter/dimple.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/tabbox.css b/mozilla/toolkit/skin/mac/tabbox.css deleted file mode 100755 index 60269e17f9b..00000000000 --- a/mozilla/toolkit/skin/mac/tabbox.css +++ /dev/null @@ -1,216 +0,0 @@ -/********** Tab widget *********/ -/*******************************/ -/* This Mac-specific CSS styles tabs that are located on the top of their content, - * as Macintosh tabs generally are. An example of using bottom tab images can be - * found in EditorToolbar.css in classic/editor/. - *******************************/ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/*** TAB: TOP ***/ - -tab { - -moz-appearance: tab; - -moz-box-align: stretch; - color : #000000; - padding: 3px; -} - -.tab-text { - font : menu; - font-weight: normal !important; -} - -/* -tab:hover:active > .tab-image-left { - background : url(chrome://global/skin/tabbox/tab-unselect-active-left.gif) no-repeat; -} - -tab:hover:active > .tab-image-middle { - background-color: #666666; - -moz-border-top-colors: #000000 #444444 #555555; - -moz-border-bottom-colors: #FFFFFF #CCCCCC #000000; -} - -tab:hover:active > .tab-image-right { - background : url(chrome://global/skin/tabbox/tab-unselect-active-right.gif) no-repeat; -} - -*/ - -.tab-border-top-left { - background-color : #DEDEDE; - border-bottom : 3px solid; - -moz-border-bottom-colors: #FFFFFF #CECECE #000000; - width : 3px; -} - -tabs { - padding : 0px; - margin-bottom: -2px; -} - -tabbox { -} - -.tabs-left { - -moz-box-flex: 1 !important; -} -/*** TAB: BOTTOM ***/ -/* Found in editor.xul & editorOverlay.xul - * SMALL TABS FOR NOW */ - -.tab-bottom { - margin-bottom: 2px; -} - -.tab-bottom > .tab-image-left { - background : url(chrome://global/skin/tabbox/tab-sm-bot-unsel-left.gif) no-repeat; - width : 10px; - height : 25px; -} - -.tab-bottom > .tab-image-middle { - -moz-border-top-colors: #FFFFFF #CECECE #000000; - -moz-border-bottom-colors: #000000 #CECECE #DEDEDE; -} - -.tab-bottom > .tab-image-right { - background : url(chrome://global/skin/tabbox/tab-sm-bot-unsel-right.gif) no-repeat; - width : 10px; - height : 25px; -} - -.tab-bottom > .tab-image-middle > .tab-text { - font : message-box; - font-weight : bold; - padding : 0px; - margin : 0px !important; -} - -.tab-bottom:hover:active > .tab-image-left { - background : url(chrome://global/skin/tabbox/tab-sm-bot-unsel-acti-left.gif) no-repeat; -} - -.tab-bottom:hover:active > .tab-image-middle { - background-color: #666666; - -moz-border-top-colors: #FFFFFF #CCCCCC #000000; - -moz-border-bottom-colors: #000000 #444444 #555555; -} - -.tab-bottom:hover:active > .tab-image-right { - background : url(chrome://global/skin/tabbox/tab-sm-bot-unsel-acti-right.gif) no-repeat; -} - -/* when a tab is selected this is how it should look */ - -.tab-bottom[selected="true"] > .tab-image-left, -.tab-bottom:hover:active[selected="true"] > .tab-image-left { - background : url(chrome://global/skin/tabbox/tab-sm-bot-sel-left.gif) no-repeat; -} - -.tab-bottom[selected="true"] > .tab-image-middle, -.tab-bottom:hover:active[selected="true"] > .tab-image-middle { - background-color: #EEEEEE; - -moz-border-top-colors: #EEEEEE; - -moz-border-bottom-colors: #000000 #CCCCCC #FFFFFF; -} - -.tab-bottom[selected="true"] > .tab-image-right, -.tab-bottom:hover:active[selected="true"] > .tab-image-right { - background : url(chrome://global/skin/tabbox/tab-sm-bot-sel-right.gif) no-repeat; -} - -.tabs-bottom > .tab-border-top-left { - background-color : #DEDEDE; - border-bottom : 0px; - border-top : 3px solid; - -moz-border-top-colors: #FFFFFF #CECECE #000000; - width : 3px; -} - -.tabs-bottom > stack > .tab-border-top-right { - background-color : #DEDEDE; - border-bottom : 0px; - border-top : 3px solid; - -moz-border-top-colors: #FFFFFF #CECECE #000000; -} - -.tabs-bottom > .tab-border-top-left-cap, .tabs-bottom > .tab-border-top-right-cap { - background-color : #DEDEDE; - border-bottom : 0px; - border-top : 3px solid; - -moz-border-top-colors: #000000; - width : 1px; -} - - /* top tabs */ -tabbox[orient="vertical"] tabs[orient="horizontal"] tab { - padding: 0px; - margin: 0px; -} - - /* bottom tabs */ -tabbox[orient="vertical"] tabpanels + tabs[orient="horizontal"] tab { - border-top: none; - border-bottom: 1px solid #666666; - border-left: 1px solid white; - border-right: 1px solid #666666; - -moz-border-radius: 0px 0px 8px 8px; - padding: 1px 5px 3px 5px; - margin: 1px 2px 1px 2px; -} - - /* left tabs */ -tabbox[orient="horizontal"] tabs[orient="vertical"] tab { - border-right: none; - -moz-border-radius: 8px 0px 0px 8px; - padding-right: 1px; - margin: 2px 1px 2px 1px; -} - - /* right tabs */ -tabbox[orient="horizontal"] tabpanels + tabs[orient="vertical"] tab { - border-top: 1px solid white; - border-bottom: 1px solid #666666; - border-left: none; - border-right: 1px solid #666666; - -moz-border-radius: 0px 8px 8px 0px; - padding: 3px 5px 1px 5px; - margin: 2px 1px 2px 1px; -} - -tabbox { - border: none; -} - -/* border on bottom only, no padding (used in search) */ -tabpanels.light { - border: none; - border-bottom: 1px outset #CCCCCC; - padding: 0px; -} - -tabpanels { - -moz-appearance: tabpanels; - border-top: 0px; - border-bottom: 2px ridge #000000; - border-left: 2px groove #000000; - border-right: 2px ridge #000000; - padding: 15px 5px 5px 5px; - background-color : #EEEEEE; - margin-bottom: 10px; -} - -tabstrip-box { - -moz-appearance: tabpanels; - margin-top: -1px; -} - -.tab-border-top-left, .tabs-left, .tabs-right, .tab-border-top-right { - -moz-box-flex: 1 !important; -} - -.tab-image-middle { - -moz-box-flex: 0 !important; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/tabs-bottom-bg.png b/mozilla/toolkit/skin/mac/tabs-bottom-bg.png deleted file mode 100644 index e382b7b6669..00000000000 Binary files a/mozilla/toolkit/skin/mac/tabs-bottom-bg.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/textbox.css b/mozilla/toolkit/skin/mac/textbox.css deleted file mode 100755 index 24ccf1711bf..00000000000 --- a/mozilla/toolkit/skin/mac/textbox.css +++ /dev/null @@ -1,8 +0,0 @@ -/* * The contents of this file are subject to the Netscape 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/NPL/ * * 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 Communicator client code, released * March 31, 1998. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-2001 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * Joe Hewitt (hewitt@netscape.com) */ /* ===== textbox.css ================================================== == Styles used by the XUL textbox element. ======================================================================= */ @import url("chrome://global/content/autocomplete.css"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); @namespace html url("http://www.w3.org/1999/xhtml"); /* ::::: textbox ::::: */ textbox { -moz-appearance: textfield; cursor: text; margin: 4px 4px; border: 3px solid; -moz-border-top-colors: transparent #888888 #000000; -moz-border-right-colors: transparent #FFFFFF #000000; -moz-border-bottom-colors: transparent #FFFFFF #000000; -moz-border-left-colors: transparent #888888 #000000; -moz-border-radius-topright: 2px; -moz-border-radius-bottomleft: 2px; /*padding: 1px 0px 1px 2px ;*/ padding: 0px; - background-color: -moz-Field; color: -moz-FieldText; } html|*.textbox-input, html|*.textbox-textarea { - margin: 0px !important; border: none !important; padding: 0px !important; background-color: inherit; color: inherit; font: inherit; } /* ..... focused state ..... */ textbox[focused="true"] { -moz-border-top-colors: -moz-mac-focusring -moz-mac-focusring #000000; -moz-border-right-colors: -moz-mac-focusring -moz-mac-focusring #000000; -moz-border-bottom-colors: -moz-mac-focusring -moz-mac-focusring #000000; -moz-border-left-colors: -moz-mac-focusring -moz-mac-focusring #000000; } /* ..... readonly state ..... */ textbox[readonly="true"] { background-color: -moz-Dialog; color: -moz-DialogText; } /* ..... disabled state ..... */ textbox[disabled="true"] { cursor: default; -moz-border-top-colors: transparent ThreeDShadow -moz-Dialog; -moz-border-right-colors: transparent ThreeDShadow -moz-Dialog; -moz-border-bottom-colors: transparent ThreeDShadow -moz-Dialog; -moz-border-left-colors: transparent ThreeDShadow -moz-Dialog; background-color: -moz-Dialog; color: GrayText; } /* ::::: plain textbox ::::: */ textbox.plain { -moz-appearance: none !important; padding: 0px !important; margin: 0px !important; border: none !important; } - -/* ::::: rounded search box, coming soon ::::: */ - -#search-box { -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/toolbar.css b/mozilla/toolkit/skin/mac/toolbar.css deleted file mode 100755 index 0ccdaf20b18..00000000000 --- a/mozilla/toolkit/skin/mac/toolbar.css +++ /dev/null @@ -1,139 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - */ - -/* ===== toolbar.css ==================================================== - == Styles used by XUL toolbar-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: toolbox ::::: */ - -toolbox { - -moz-appearance: toolbar !important; -} - -/* ::::: toolbar & menubar ::::: */ - -toolbar, -toolbarpalette, -menubar { - min-width: 1px; - min-height: 20px !important; - color: #000000; - border-bottom: 1px solid #a3a3a3; - background: url("chrome://global/skin/toolbar/toolbar-pinstripe-overlay.png") repeat; -} - - -.toolbar-holder { - min-width: 1px; -} - -/* ::::: toolbarseparator ::::: */ - -toolbarseparator { - -moz-appearance : none; - margin: 3px 4px 3px 4px; - background: url("chrome://global/skin/toolbar/toolbar-separator.png") transparent repeat-y; - - padding: 0px; - width: 1px !important; -} - -.toolbar-primary { - min-height: 24px !important; -} - - -/* ::::: toolbarpaletteitem ::::: */ - -toolbarpaletteitem { - cursor: -moz-grab; -} - -toolbar[iconsize="small"] toolbarpaletteitem[type="spacer"] { - min-width: 24px !important; -} - -toolbarpaletteitem[type="spacer"] { - min-width: 32px !important; -} - -.toolbarpaletteitem-box[type="spacer"] { - border: 1px solid #A3A3A3; - background: url("chrome://global/skin/10pct_transparent_grey.png") repeat; - height: 32px !important; - width: 32px !important; - margin-top: 18px; -} - -.toolbarpaletteitem-box[type="spring"] { - border: 1px solid #A3A3A3; - background: url("chrome://global/skin/toolbar/spring.gif") #FFFFFF no-repeat; - height: 32px !important; - width: 32px !important; - margin-top: 18px; -} - -.toolbarpaletteitem-box[type="spring"][place="toolbar"] { - border: 1px solid #A3A3A3; - background: url("chrome://global/skin/10pct_transparent_grey.png") repeat; -} - -.toolbarpaletteitem-box[type="spacer"][place="toolbar"], -.toolbarpaletteitem-box[type="spring"][place="toolbar"] { - margin: 2px; -} - -.toolbarpaletteitem-box[type="separator"][place="palette"] { - width: 2px; - height: 50px; -} - -.toolbarpaletteitem-box[type="spacer"][place="palette"], -.toolbarpaletteitem-box[type="spring"][place="palette"] { - margin-bottom: 2px; - width: 50px; - height: 50px; -} - -/* ..... drag and drop feedback ..... */ - -toolbarpaletteitem[dragover="left"] { - border-left-color: #000000; -} - -toolbarpaletteitem[dragover="right"] { - border-right-color: #000000; -} - -toolbar[iconsize="small"] toolbarspacer { - min-width: 24px !important; -} - -toolbarspacer { - min-width: 32px !important; -} - diff --git a/mozilla/toolkit/skin/mac/toolbar/Lighten.png b/mozilla/toolkit/skin/mac/toolbar/Lighten.png deleted file mode 100644 index 3ad635ea753..00000000000 Binary files a/mozilla/toolkit/skin/mac/toolbar/Lighten.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/toolbar/spring.gif b/mozilla/toolkit/skin/mac/toolbar/spring.gif deleted file mode 100644 index 4fe1bd48949..00000000000 Binary files a/mozilla/toolkit/skin/mac/toolbar/spring.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/toolbar/toolbar-pinstripe-overlay.png b/mozilla/toolkit/skin/mac/toolbar/toolbar-pinstripe-overlay.png deleted file mode 100644 index e8c6c7d4c3f..00000000000 Binary files a/mozilla/toolkit/skin/mac/toolbar/toolbar-pinstripe-overlay.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/toolbar/toolbar-separator.png b/mozilla/toolkit/skin/mac/toolbar/toolbar-separator.png deleted file mode 100644 index 9507bfec991..00000000000 Binary files a/mozilla/toolkit/skin/mac/toolbar/toolbar-separator.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/toolbarbutton.css b/mozilla/toolkit/skin/mac/toolbarbutton.css deleted file mode 100755 index 1c97c62a0db..00000000000 --- a/mozilla/toolkit/skin/mac/toolbarbutton.css +++ /dev/null @@ -1,125 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - */ - -/* ===== toolbarbutton.css ===================================================== - == Styles used by the XUL button element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: toolbarbutton ::::: */ - -toolbarbutton { - -moz-box-align: center; - -moz-box-pack: center; - margin: 0px 2px 0px 2px; - padding: 3px 1px 3px 1px; - border-right: 1px solid transparent; - border-left: 1px solid transparent; - background-color: transparent; -} - -.toolbarbutton-icon { - padding: 1px 0px 1px 0px; -} - -.toolbarbutton-text { - margin: 0px; - padding: 0px; - text-align: center; - vertical-align: middle; - -} - -toolbarbutton:hover:active[buttonstyle="text"], -toolbarbutton[open="true"][buttonstyle="text"] { - color: #2c498c; -} - - - -toolbarbutton[disabled="true"], -toolbarbutton[disabled="true"]:hover, -toolbarbutton[disabled="true"]:hover:active -toolbarbutton[disabled="true"][open="true"] { - color: GrayText !important; -} - -/* ..... checked state ..... */ - -toolbarbutton[checked="true"] { - background-color: #DDDDDD; - background-image: none; - border-right: 1px solid #b9b9b9; - border-left: 1px solid #b9b9b9; - color: ButtonText !important; -} - -/* ::::: toolbarbutton menu ::::: */ - -.toolbarbutton-menu-dropmarker { - list-style-image: url("chrome://global/skin/arrow/arrow-dn.png"); - -moz-image-region: auto; /* cut off inheritance */ - padding-left: 2px; -} - -.toolbarbutton-menu-dropmarker[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.png"); -} - -/* ::::: toolbarbutton menu-button ::::: */ - -toolbarbutton[type="menu-button"] { - -moz-box-align: stretch; -} - -toolbarbutton[type="menu-button"], -toolbarbutton[type="menu-button"]:hover, -toolbarbutton[type="menu-button"]:hover:active, -toolbarbutton[type="menu-button"][open="true"], -toolbarbutton[type="menu-button"][disabled="true"], -toolbarbutton[type="menu-button"][disabled="true"]:hover, -toolbarbutton[type="menu-button"][disabled="true"]:hover:active { - background-color: transparent; -} - -.toolbarbutton-menubutton-button { - -moz-box-align: center; - -moz-box-pack: center; - -} - - -/* .......... dropmarker .......... */ - -.toolbarbutton-menubutton-dropmarker { - -moz-box-align: center; - -moz-box-pack: center; - list-style-image: url("chrome://global/skin/arrow/arrow-dn.png"); - -moz-image-region: auto; /* cut off inheritance */ -} - -.toolbarbutton-menubutton-dropmarker[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.png") !important; -} diff --git a/mozilla/toolkit/skin/mac/tree.css b/mozilla/toolkit/skin/mac/tree.css deleted file mode 100755 index 4d88153fcdc..00000000000 --- a/mozilla/toolkit/skin/mac/tree.css +++ /dev/null @@ -1,311 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * Kevin Gerich (webmail@kmgerich.com) - */ - -/* ===== tree.css =================================================== - == Styles used by the XUL outline element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: tree ::::: */ - -tree { - margin: 0px 4px; - border-top: 1px solid #A1A1A1; - border-right: 1px solid #C3C3C3; - border-bottom: 1px solid #DDDDDD; - border-left: 1px solid #C3C3C3; - color: -moz-DialogText; - background-color: #FFFFFF; -} - -/* ::::: tree rows ::::: */ - -treechildren::-moz-tree-row { - -moz-appearance: treeitem; - border-top: 1px solid -moz-Field; - height: 18px; -} - -treechildren::-moz-tree-row(selected) { - background-color: #D0D0D0; -} - -treechildren::-moz-tree-row(focus) { - /* background-color: Highlight; */ - background-color: #3874D1; - color: #FFFFFF; -} - -/* ::::: tree cells ::::: */ - -treechildren::-moz-tree-cell { - padding: 0px 2px 0px 2px; -} - -treechildren::-moz-tree-cell-text { - color: inherit; -} - -treechildren::-moz-tree-cell-text(selected) { - color: -moz-DialogText; -} - -treechildren::-moz-tree-cell-text(selected, focus) { - /* color: HighlightText; */ - color: #FFFFFF; -} - - -/* ::::: lines connecting cells ::::: */ - -treechildren::-moz-tree-line { - /* XXX there should be no border on Mac, but trees currently - paint the line black by default, so I'll just leave this - for now. */ - visibility: hidden; - border: 1px dotted grey; -} - - -/* ::::: tree separator ::::: */ - -treechildren::-moz-tree-separator { - -moz-appearance: separator; - border-top: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDHighlight; -} - - -/* ::::: drop feedback ::::: */ - -treechildren::-moz-tree-cell-text(primary, dropOn) { - background-color: Highlight; - color: HighlightText; -} - -treechildren::-moz-tree-drop-feedback { - background-color: Highlight; - width: 50px; - height: 2px; - margin-left: 5px; -} - -/* ::::: tree progress meter ::::: */ - -treechildren::-moz-tree-progressmeter { - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: #AAAAAA #000000; - -moz-border-right-colors: #FFFFFF #000000; - -moz-border-bottom-colors: #FFFFFF #000000; - -moz-border-left-colors: #AAAAAA #000000; -} - -treechildren::-moz-tree-progressmeter(progressUndetermined) { -} - -treechildren::-moz-tree-cell-text(progressmeter) { - margin: 2px 4px; - -moz-appearance: progressbar; - } - -/* ::::: tree columns ::::: */ - -treecol, -treecolpicker { - -moz-appearance: treeheadercell; - -moz-box-align: center; - -moz-box-pack: center; - border: 2px solid; - -moz-border-top-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDHighlight ThreeDLightShadow; - background-color: -moz-Dialog; - color: -moz-DialogText; - padding: 0px 4px; -} - -.treecol-image { - padding: 0px 1px; -} - -.treecol-text { - margin: 0px !important; -} - -treecol[hideheader="true"] { - -moz-appearance: none; - border: none; - padding: 0; - max-height: 0px; -} - -/* ..... internal box ..... */ - -treecol:hover:active, -treecolpicker:hover:active { - border-top: 2px solid; - border-right: 1px solid; - border-bottom: 1px solid; - border-left: 2px solid; - -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-right-colors: ThreeDDarkShadow; - -moz-border-bottom-colors: ThreeDDarkShadow; - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow; - background-color: #666666; - padding: 1px 4px 0px 5px; -} - -.treecol-image:hover:active { - padding: 1px 1px 0px 2px; -} - -/* ::::: column drag and drop styles ::::: */ - -treecol[dragging="true"] { - -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow !important; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow!important; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow !important; - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow !important; - padding: 0px 4px !important; - background-color: ThreeDShadow !important; - color: ThreeDHighlight !important; -} - -treecol[insertafter="true"] { - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; -} - -treecol[insertbefore="true"] { - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow; -} - -treechildren::-moz-tree-column(insertbefore) { - border-left: 1px solid ThreeDShadow; -} - -treechildren::-moz-tree-column(insertafter) { - border-right: 1px solid ThreeDShadow; -} - -/* ::::: sort direction indicator ::::: */ - -.treecol-sortdirection { - -moz-appearance: treeheadersortarrow; - list-style-image: none; -} - -.treecol-sortdirection[sortDirection="ascending"] { - list-style-image: url("chrome://global/skin/tree/sort-asc.gif"); -} - -.treecol-sortdirection[sortDirection="descending"] { - list-style-image: url("chrome://global/skin/tree/sort-dsc.gif"); -} - -/* ::::: column picker ::::: */ - -.tree-columnpicker-icon { - list-style-image: url("chrome://global/skin/tree/columnpicker.gif"); -} - -/* ::::: twisty ::::: */ - -treechildren::-moz-tree-twisty { - -moz-appearance: treetwisty; - padding-right: 2px; - width: 10px; /* The image's width is 10 pixels */ - list-style-image: url("chrome://global/skin/tree/twisty-clsd.gif"); -} - -treechildren::-moz-tree-twisty(open) { - -moz-appearance: treetwistyopen; - width: 10px; /* The image's width is 10 pixels */ - list-style-image: url("chrome://global/skin/tree/twisty-open.gif"); -} - -treechildren::-moz-tree-indentation { - width: 16px; -} - -/* ::::: gridline style ::::: */ - -treechildren.gridlines::-moz-tree-cell { - border-right: 1px solid GrayText; - border-bottom: 1px solid GrayText; -} - -treechildren.gridlines::-moz-tree-row { - border: none; -} - -treechildren::-moz-tree-image(Name) { - margin: 0px 4px; - list-style-image: url("chrome://global/skin/tree/item.png"); -} - -treechildren::-moz-tree-image(Name, container) { - list-style-image: url("chrome://global/skin/tree/folder.png"); - -} - -treechildren::-moz-tree-image(Name, separator) { - list-style-image: none; - width: 0px !important; - height: 0px !important; - margin: 0px 0px; -} - -treechildren::-moz-tree-cell-text(Name, separator) { - color: ThreeDShadow; - margin: 0px 5px 0px 5px; -} - -treechildren::-moz-tree-cell-text(Name, separator, selected, focus) { - color: HighlightText; -} - -/* ::::: alternating background ::::: */ - -treechildren[alternatingbackground="true"]::-moz-tree-row(odd) { - background-color: #f3f3f3; -} - -treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected) { - background-color: -moz-Dialog; -} - -treechildren[alternatingbackground="true"]::-moz-tree-cell-text(odd, selected) { - color: -moz-DialogText; -} - -treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected, focus) { - background-color: Highlight; -} - -treechildren[alternatingbackground="true"]::-moz-tree-cell-text(odd, selected, focus) { - color: HighlightText; -} diff --git a/mozilla/toolkit/skin/mac/tree/columnpicker.gif b/mozilla/toolkit/skin/mac/tree/columnpicker.gif deleted file mode 100755 index 167f3789af3..00000000000 Binary files a/mozilla/toolkit/skin/mac/tree/columnpicker.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/tree/folder-dis.png b/mozilla/toolkit/skin/mac/tree/folder-dis.png deleted file mode 100644 index 6163440bc78..00000000000 Binary files a/mozilla/toolkit/skin/mac/tree/folder-dis.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/tree/folder.png b/mozilla/toolkit/skin/mac/tree/folder.png deleted file mode 100644 index 1d26d948f55..00000000000 Binary files a/mozilla/toolkit/skin/mac/tree/folder.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/tree/item.png b/mozilla/toolkit/skin/mac/tree/item.png deleted file mode 100644 index c279e3339df..00000000000 Binary files a/mozilla/toolkit/skin/mac/tree/item.png and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/tree/sort-asc.gif b/mozilla/toolkit/skin/mac/tree/sort-asc.gif deleted file mode 100755 index 5e13c7398f1..00000000000 Binary files a/mozilla/toolkit/skin/mac/tree/sort-asc.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/tree/sort-dsc.gif b/mozilla/toolkit/skin/mac/tree/sort-dsc.gif deleted file mode 100755 index fa957ac1e75..00000000000 Binary files a/mozilla/toolkit/skin/mac/tree/sort-dsc.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/mac/wizard.css b/mozilla/toolkit/skin/mac/wizard.css deleted file mode 100755 index 7751a73f07e..00000000000 --- a/mozilla/toolkit/skin/mac/wizard.css +++ /dev/null @@ -1,13 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - - -wizard { - padding: 14px; -} - -#header { - display: inline !important; -} .wizard-header { -moz-appearance: dialog; } .wizard-header-box-2 { border-top: 1px solid #FFFFFF; color: #000000; -} .wizard-header-box-text { padding: 6px 10px 6px 10px; - font: menu; - font-weight: bold; } .wizard-header-label { margin-left: 23px; font-weight: bold; } .wizard-header-box-icon { margin: 3px 20 0 3px; } .wizard-header-icon { list-style-image: inherit; } .wizard-page-box { padding: 15px 23px; -moz-appearance: dialog; } .wizard-buttons-top { padding: 6px 10; background-color: #FFFFFF; } .wizard-buttons-separator { margin: 0 !important; border-bottom: 1px solid #FFFFFF !important; } .wizard-buttons-btm { padding: 3px 6px 6px 6px; background-color: #DDDDDD; } .wizard-label-box { border: 1px solid #777777; padding: 0 6px; background-color: #BBBBBB; font-weight: bold; } .wizard-button { font: menu !important; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/mac/wizardOverlay.css b/mozilla/toolkit/skin/mac/wizardOverlay.css deleted file mode 100755 index 680f1487a5c..00000000000 --- a/mozilla/toolkit/skin/mac/wizardOverlay.css +++ /dev/null @@ -1 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #wiz-back-button { list-style-image : url("chrome://global/skin/scroll-left.gif"); } #wiz-back-button[disabled] { list-style-image : url("chrome://global/skin/scroll-left-disabled.gif"); } #wiz-next-button { list-style-image : url("chrome://global/skin/scroll-right.gif"); } #wiz-next-button[disabled] { list-style-image : url("chrome://global/skin/scroll-right-disabled.gif"); } #wizardButtons { margin-bottom : 0.4em; } .box-wizardcontent { margin-left : 44px; margin-right : 44px; width : 30em; } \ No newline at end of file diff --git a/mozilla/toolkit/skin/win/Makefile.in b/mozilla/toolkit/skin/win/Makefile.in deleted file mode 100644 index 9bb2a9c0f1a..00000000000 --- a/mozilla/toolkit/skin/win/Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -# -# The contents of this file are subject to the Netscape 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/NPL/ -# -# 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 Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 2000 Netscape Communications Corporation. All -# Rights Reserved. -# -# Contributor(s): -# - -DEPTH = ../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk -include $(topsrcdir)/config/rules.mk diff --git a/mozilla/toolkit/skin/win/Preview.png b/mozilla/toolkit/skin/win/Preview.png deleted file mode 100644 index f08ed82173d..00000000000 Binary files a/mozilla/toolkit/skin/win/Preview.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow.css b/mozilla/toolkit/skin/win/arrow.css deleted file mode 100644 index 7c05a2374b0..00000000000 --- a/mozilla/toolkit/skin/win/arrow.css +++ /dev/null @@ -1,82 +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 toolkit skin. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2003 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Pierre Chanial -# -# 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 LGPL or the GPL. 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 ***** --> - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -.up { - min-width: 0px; - list-style-image: url("chrome://global/skin/arrow/arrow-up.gif"); -} -.up:hover { - list-style-image: url("chrome://global/skin/arrow/arrow-up-hov.gif"); -} -.up[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-up-dis.gif"); -} - -.down { - min-width: 0px; - list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif"); -} -.down:hover { - list-style-image: url("chrome://global/skin/arrow/arrow-dn-hov.gif"); -} -.down[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif"); -} - -.left { - min-width: 0px; - list-style-image: url("chrome://global/skin/arrow/arrow-lft.gif"); -} -.left:hover { - list-style-image: url("chrome://global/skin/arrow/arrow-lft-hov.gif"); -} -.left[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-lft-dis.gif"); -} - -.right { - min-width: 0px; - list-style-image: url("chrome://global/skin/arrow/arrow-rit.gif"); -} -.right:hover { - list-style-image: url("chrome://global/skin/arrow/arrow-rit-hov.gif"); -} -.right[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-rit-dis.gif"); -} diff --git a/mozilla/toolkit/skin/win/arrow/arrow-dn-dis.gif b/mozilla/toolkit/skin/win/arrow/arrow-dn-dis.gif deleted file mode 100644 index 3d62e400631..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-dn-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-dn-hov.gif b/mozilla/toolkit/skin/win/arrow/arrow-dn-hov.gif deleted file mode 100644 index f0e550b135c..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-dn-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-dn-sharp.gif b/mozilla/toolkit/skin/win/arrow/arrow-dn-sharp.gif deleted file mode 100644 index 206d7c19dd5..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-dn-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-dn.gif b/mozilla/toolkit/skin/win/arrow/arrow-dn.gif deleted file mode 100644 index 62edbfd4fe3..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-dn.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-lft-dis.gif b/mozilla/toolkit/skin/win/arrow/arrow-lft-dis.gif deleted file mode 100644 index 33243517b1b..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-lft-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-lft-hov.gif b/mozilla/toolkit/skin/win/arrow/arrow-lft-hov.gif deleted file mode 100644 index 3367bde3123..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-lft-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-lft-sharp-end.gif b/mozilla/toolkit/skin/win/arrow/arrow-lft-sharp-end.gif deleted file mode 100644 index c22294ba21b..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-lft-sharp-end.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-lft-sharp.gif b/mozilla/toolkit/skin/win/arrow/arrow-lft-sharp.gif deleted file mode 100644 index ae9b1dd0fb6..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-lft-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-lft.gif b/mozilla/toolkit/skin/win/arrow/arrow-lft.gif deleted file mode 100644 index c5c362d89b1..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-lft.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-rit-dis.gif b/mozilla/toolkit/skin/win/arrow/arrow-rit-dis.gif deleted file mode 100644 index cda95fe215c..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-rit-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-rit-hov.gif b/mozilla/toolkit/skin/win/arrow/arrow-rit-hov.gif deleted file mode 100644 index 5010921adc6..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-rit-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-rit-sharp-end.gif b/mozilla/toolkit/skin/win/arrow/arrow-rit-sharp-end.gif deleted file mode 100644 index c1b3750d4c8..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-rit-sharp-end.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-rit-sharp.gif b/mozilla/toolkit/skin/win/arrow/arrow-rit-sharp.gif deleted file mode 100644 index ca628ba69bd..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-rit-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-rit.gif b/mozilla/toolkit/skin/win/arrow/arrow-rit.gif deleted file mode 100644 index dce39aecc18..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-rit.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-up-dis.gif b/mozilla/toolkit/skin/win/arrow/arrow-up-dis.gif deleted file mode 100644 index 381dee3e5d8..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-up-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-up-hov.gif b/mozilla/toolkit/skin/win/arrow/arrow-up-hov.gif deleted file mode 100644 index 771605182a5..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-up-hov.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-up-sharp.gif b/mozilla/toolkit/skin/win/arrow/arrow-up-sharp.gif deleted file mode 100644 index 883a4f95ca1..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-up-sharp.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/arrow/arrow-up.gif b/mozilla/toolkit/skin/win/arrow/arrow-up.gif deleted file mode 100644 index b8e09b21b87..00000000000 Binary files a/mozilla/toolkit/skin/win/arrow/arrow-up.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/autocomplete.css b/mozilla/toolkit/skin/win/autocomplete.css deleted file mode 100644 index a19a5ea275c..00000000000 --- a/mozilla/toolkit/skin/win/autocomplete.css +++ /dev/null @@ -1,136 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== autocomplete.css ================================================= - == Styles used by the autocomplete widget. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* ::::: autocomplete ::::: */ - -textbox { - cursor: default; - padding: 0; -} - -/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */ -textbox.padded { - padding: 1px 0px 1px 2px; -} - -.textbox-input-box { - margin: 0 3px; - -moz-box-align: center; -} - -/* ::::: history button ::::: */ - -.autocomplete-history-dropmarker { -#ifndef XP_MACOSX - -moz-appearance: menulist-button; -#endif - min-width: 17px; - -moz-box-align: center; - -moz-box-pack: center; - border: 2px solid; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - background-color: -moz-Dialog; - padding: 1px; - list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif"); -} - -.autocomplete-history-dropmarker:hover:active, -.autocomplete-history-dropmarker[open="true"] { - -moz-border-top-colors: ThreeDShadow ThreeDFace; - -moz-border-right-colors: ThreeDShadow ThreeDFace; - -moz-border-bottom-colors: ThreeDShadow ThreeDFace; - -moz-border-left-colors: ThreeDShadow ThreeDFace; - padding: 2px 0 0 2px; -} - -/* ::::: autocomplete popups ::::: */ - -popup[type="autocomplete"], -.autocomplete-history-popup { - border-width: 1px; - -moz-border-top-colors: ThreeDDarkShadow; - -moz-border-right-colors: ThreeDDarkShadow; - -moz-border-bottom-colors: ThreeDDarkShadow; - -moz-border-left-colors: ThreeDDarkShadow; - padding: 0; - background-color: -moz-Field !important; -} - -.autocomplete-history-popup { - max-height: 180px; -} - -/* ::::: tree ::::: */ - -.autocomplete-tree { - -moz-appearance: none !important; - border: none !important; - background-color: transparent !important; -} - -.autocomplete-treecol { - -moz-appearance: none !important; - margin: 0 !important; - border: none !important; - padding: 0 !important; -} - -.autocomplete-treebody::-moz-tree-cell-text { - padding-left: 8px; -} - -treechildren.autocomplete-treebody::-moz-tree-row(selected) { - background-color: Highlight; -} - -treechildren.autocomplete-treebody::-moz-tree-cell-text(selected) { - color: HighlightText !important; -} - -/* thunderbird does not use the new autocomplete widget yet so we need a couple of the old styles rules for it */ - -.autocomplete-treebody::-moz-tree-row(menuactive) { - background-color: Highlight; -} - -.autocomplete-treebody::-moz-tree-cell-text(menuactive) { - color: HighlightText !important; -} - -/* end of thunderbird required autocomplete rules */ - -/* ::::: textboxes inside toolbarpaletteitems ::::: */ - -toolbarpaletteitem > toolbaritem > textbox > hbox > hbox > html|*.textbox-input { - visibility: hidden; -} diff --git a/mozilla/toolkit/skin/win/browser.css b/mozilla/toolkit/skin/win/browser.css deleted file mode 100644 index e8d10920c46..00000000000 --- a/mozilla/toolkit/skin/win/browser.css +++ /dev/null @@ -1,37 +0,0 @@ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -.tabbrowser-strip { - border-bottom: 1px solid ThreeDShadow; - padding-bottom: 1px; -} - -tabpanels { - -moz-appearance: none; -} - -.tabbrowser-tabs { - padding-top: 1px; -} - -.tabs-left, -.tabs-right { - width: 3px; -} - -.tab-icon { - margin-top: 1px; - margin-right: 3px; - width: 16px; - height: 16px; - list-style-image: url("chrome://global/skin/icons/folder-item.png"); - -moz-image-region: rect(0px, 16px, 16px, 0px); -} - -tab[busy] > .tab-icon { - list-style-image: url("chrome://global/skin/icons/Loading.gif"); -} - -tab[selected="true"] { - font-weight: bold; -} diff --git a/mozilla/toolkit/skin/win/button.css b/mozilla/toolkit/skin/win/button.css deleted file mode 100644 index ee116a242f0..00000000000 --- a/mozilla/toolkit/skin/win/button.css +++ /dev/null @@ -1,166 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== button.css ===================================================== - == Styles used by the XUL button element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* :::::::::: button :::::::::: */ - -button { - -moz-appearance: button; - margin: 1px 5px 2px 5px; - min-width: 6.3em; - border: 3px solid; - -moz-border-top-colors: transparent ThreeDHighlight ThreeDLightShadow; - -moz-border-right-colors: transparent ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: transparent ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: transparent ThreeDHighlight ThreeDLightShadow; - background-color: ThreeDFace; - color: ButtonText; -} - -.button-box { - border: 1px solid transparent; - padding: 1px 4px 2px 3px; -} - -.button-text { - margin: 0 !important; - text-align: center; -} - -/* .......... focused state .......... */ - -button:focus { - -moz-border-top-colors: ThreeDDarkShadow ThreeDHighlight transparent; - -moz-border-right-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDDarkShadow ThreeDHighlight transparent; -} - -button:focus > .button-box { - border: 1px dotted ThreeDDarkShadow; -} - -/* .......... default state .......... */ - -button[default="true"] { - -moz-border-top-colors: ThreeDDarkShadow ThreeDHighlight ThreeDLightShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDDarkShadow ThreeDHighlight ThreeDLightShadow; -} - -#ifdef MOZ_WIDGET_GTK2 -/* .......... hover state .......... */ - -button:hover { - color: -moz-gtk2-hovertext; -} -#endif - -/* .......... active/open/checked state .......... */ - -button:hover:active, -button[open="true"], -button[checked="true"] { - -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow transparent; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow transparent; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow transparent; - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow transparent; -#ifdef MOZ_WIDGET_GTK2 - color: ButtonText; -#endif -} - -button:hover:active > .button-box, -button[open="true"] > .button-box, -button[checked="true"] > .button-box { - padding: 2px 3px 1px 4px; -} - -/* .......... disabled state .......... */ - -button[disabled="true"] { - -moz-border-top-colors: transparent ThreeDHighlight ThreeDLightShadow !important; - -moz-border-right-colors: transparent ThreeDDarkShadow ThreeDShadow !important; - -moz-border-bottom-colors: transparent ThreeDDarkShadow ThreeDShadow !important; - -moz-border-left-colors: transparent ThreeDHighlight ThreeDLightShadow !important; - color: GrayText; -} - -button[disabled="true"] > .button-box { - padding: 1px 4px 2px 3px !important; -} - -/* ::::: menu/menu-button buttons ::::: */ - -button[type="menu-button"] { - -moz-box-align: center; - -moz-box-pack: center; - margin: 0; - border: none; -} - -.button-menu-dropmarker, -.button-menubutton-dropmarker { - margin: 1px; - background-image: url("chrome://global/skin/arrow/arrow-dn.gif"); - min-width:11px; - min-height:11px; -} - -.button-menu-dropmarker[disabled="true"], -.button-menubutton-dropmarker[disabled="true"] { - background-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif"); -} - -.button-menubutton-dropmarker[open="true"] { - margin: 2px 0px 0px 2px; -} - -/* ::::: plain buttons ::::: */ - -button.plain { - border: 0px !important; - margin: 0px !important; - padding: 0px !important; -} - -button[type="disclosure"] { - border: 0px !important; - margin: 0px !important; - padding: 0px !important; - -moz-appearance: none; - list-style-image: url("chrome://global/skin/tree/twisty-clsd.gif"); - min-width: 0px !important; - background-color: transparent; -} - -button[type="disclosure"][open="true"] { - list-style-image: url("chrome://global/skin/tree/twisty-open.gif"); -} - diff --git a/mozilla/toolkit/skin/win/checkbox.css b/mozilla/toolkit/skin/win/checkbox.css deleted file mode 100644 index c0a5050900f..00000000000 --- a/mozilla/toolkit/skin/win/checkbox.css +++ /dev/null @@ -1,103 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -/* ===== checkbox.css =================================================== - == Styles used by the XUL checkbox element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: checkbox ::::: */ - -checkbox { - -moz-appearance: checkbox-container; - -moz-box-align: center; - margin: 2px 4px; - padding: 1px 2px 1px 4px; -} - -.checkbox-label-box { - margin-left: 2px; - border: 1px solid transparent; - padding: 0px 1px; -} - -.checkbox-icon { - margin-right: 2px; -} - -.checkbox-label { - margin: 0 !important; -} - -/* ..... focused state ..... */ - -checkbox:focus > .checkbox-label-box { - border: 1px dotted ThreeDDarkShadow; -} - -/* ..... disabled state ..... */ - -checkbox[disabled="true"] > .checkbox-check { - background-color: -moz-Dialog; -} - -checkbox[disabled="true"] { - color: GrayText !important; -} - -/* ::::: checkmark image ::::: */ - -.checkbox-check { - -moz-appearance: checkbox; - -moz-box-align: center; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - min-width: 13px; - min-height: 13px; - background: -moz-Field no-repeat 50% 50%; -} - -#ifdef MOZ_WIDGET_GTK2 -checkbox:hover { - color: -moz-gtk2-hovertext; -} -#endif - -checkbox:hover:active > .checkbox-check { - background-color: -moz-Dialog; -} - -/* ..... checked state ..... */ - -checkbox[checked="true"] > .checkbox-check { - background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); -} - -checkbox[checked="true"][disabled="true"] > .checkbox-check { - background-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif") !important -} - diff --git a/mozilla/toolkit/skin/win/checkbox/cbox-check-dis.gif b/mozilla/toolkit/skin/win/checkbox/cbox-check-dis.gif deleted file mode 100644 index bd43dd17c3b..00000000000 Binary files a/mozilla/toolkit/skin/win/checkbox/cbox-check-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/checkbox/cbox-check.gif b/mozilla/toolkit/skin/win/checkbox/cbox-check.gif deleted file mode 100644 index f6919f8fade..00000000000 Binary files a/mozilla/toolkit/skin/win/checkbox/cbox-check.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/colorpicker.css b/mozilla/toolkit/skin/win/colorpicker.css deleted file mode 100644 index 6a871d51b2d..00000000000 --- a/mozilla/toolkit/skin/win/colorpicker.css +++ /dev/null @@ -1,87 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -/* ===== colorpicker.css ================================================ - == Styles used by the XUL colorpicker element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: colorpicker button ::::: */ - -/* colorpicker button */ - -colorpicker[type="button"] { - width: 38px; - height: 24px; - border: 2px solid; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - background-color: ThreeDFace; - padding: 3px; -} - -.colorpicker-button-colorbox { - border: 1px solid #000000; -} - -colorpicker[type="button"]:focus { - -moz-border-top-colors: ThreeDDarkShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDDarkShadow ThreeDHighlight; -} - -colorpicker[type="button"][open="true"] { - -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow; -} - -/* ::::: colorpicker tiles ::::: */ - -.colorpickertile { - width : 20px; - height : 20px; - margin : 1px; - border-left : 1px solid ThreeDShadow; - border-top : 1px solid ThreeDShadow; - border-right : 1px solid ThreeDHighlight; - border-bottom : 1px solid ThreeDHighlight; -} - -.colorpickertile[selected="true"] { - border : 2px outset #C0C0C0; - -} - -.colorpickertile[hover="true"] { - border : 2px dotted #FFFFFF; -} - -.cp-light[hover="true"] { - border : 2px dotted #909090; -} diff --git a/mozilla/toolkit/skin/win/contents.rdf b/mozilla/toolkit/skin/win/contents.rdf deleted file mode 100644 index edd46ea036c..00000000000 --- a/mozilla/toolkit/skin/win/contents.rdf +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/mozilla/toolkit/skin/win/customizeToolbar.css b/mozilla/toolkit/skin/win/customizeToolbar.css deleted file mode 100644 index db2d4bad94b..00000000000 --- a/mozilla/toolkit/skin/win/customizeToolbar.css +++ /dev/null @@ -1,34 +0,0 @@ -/* - The contents of this file are subject to the Netscape 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/NPL/ - - 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 Communicator client code, released - March 31, 1998. - - The Initial Developer of the Original Code is Blake Ross. - Portions created by Blake Ross are - Copyright (C) 2002 Blake Ross. All - Rights Reserved. - - Contributor(s): - Blake Ross (blaker@netscape.com) - Joe Hewitt (hewitt@netscape.com) -*/ - -window, -dialog { - border: 1px solid ThreeDDarkShadow; - padding: 6px; -} - -#instructions { - font-weight: bold; - font-size: larger; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/win/dialog.css b/mozilla/toolkit/skin/win/dialog.css deleted file mode 100644 index 02d5ebef1eb..00000000000 --- a/mozilla/toolkit/skin/win/dialog.css +++ /dev/null @@ -1,99 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: NPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 1999 - * the Initial Developer. All Rights Reserved. - * - * Original Author: Joe Hewitt (hewitt@netscape.com) - * Contributor(s): - * - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the NPL, 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 NPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* ===== dialog.css ===================================================== - == Styles used by the XUL dialog element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: dialog ::::: */ - -dialog { - padding: 8px 10px 10px 8px; -} - -/* ::::: dialog buttons ::::: */ - -.dialog-button { - font: menu; - margin-top: 6px; -} - -/* ::::: dialog header ::::: */ - -dialogheader { - margin: 0px 5px 5px 5px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDDarkShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDDarkShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - padding: 5px 8px; - background-color: Highlight; - color: HighlightText; -} - -.dialogheader-title { - margin: 0px !important; - font-size: larger; - font-weight: bold; -} - -/* ::::: large dialog header ::::: */ - -.header-large { - -moz-box-orient: vertical; - margin: 0; - border-left: none; - border-right: none; - border-top: none; - -moz-border-bottom-colors: ThreeDHighlight ThreeDShadow; - padding: 12px 5px 12px 25px; - background-color: -moz-Field; - color: -moz-FieldText; -} - -.header-large > .dialogheader-title { - font: inherit; - font-weight: bold; -} - -.header-large > .dialogheader-description { - margin-left: 12px !important; -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/win/expander.css b/mozilla/toolkit/skin/win/expander.css deleted file mode 100644 index 824139cd2f6..00000000000 --- a/mozilla/toolkit/skin/win/expander.css +++ /dev/null @@ -1,30 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -.expanderButton { - cursor: pointer !important; -} - -.settingsContainer { - padding: 3px 5px 5px 20px; -} diff --git a/mozilla/toolkit/skin/win/formatting.css b/mozilla/toolkit/skin/win/formatting.css deleted file mode 100644 index e8afac39fc9..00000000000 --- a/mozilla/toolkit/skin/win/formatting.css +++ /dev/null @@ -1,259 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* inset areas */ - -.inset - { - border-left : 1px solid ThreeDShadow; - border-top : 1px solid ThreeDShadow; - border-right : 1px solid ThreeDHighlight; - border-bottom : 1px solid ThreeDHighlight; - margin : 0px 5px 5px 5px; - } - -.box-inset { - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - background-color: -moz-Field; - color: -moz-FieldText; -} - -/* formatting */ -.groove-top - { - border-top : 2px groove ThreeDFace; - } - -.groove-right - { - border-right : 2px groove ThreeDFace; - } - -.groove-left - { - border-left : 2px groove ThreeDFace; - } - -.groove-bottom - { - border-bottom : 2px groove ThreeDFace; - } - -.outset - { - border-left : 1px solid ThreeDHighlight; - border-top : 1px solid ThreeDHighlight; - border-right : 1px solid ThreeDShadow; - border-bottom : 1px solid ThreeDShadow; - } - -.outset-top-bottom - { - border-top : 1px solid ThreeDHighlight; - border-bottom : 1px solid ThreeDShadow; - } - - - -/** separator rules **/ -/* standard separators */ - separator, separator[orient="horizontal"] - { - height: 1.5em; - } - - separator[orient="vertical"] - { - width: 1.5em; - } - -/* thinner separators (50% size) */ - separator.thin, separator.thin[orient="horizontal"] - { - height: 0.5em; - } - - separator.thin[orient="vertical"] - { - width: 0.5em; - } - -/* groove separators (50% size) */ - separator.groove, - separator.groove[orient="horizontal"] - { - border-top: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDHighlight; - height: 0px; - margin-top: 0.4em; - margin-bottom: 0.4em; - } - - separator.groove[orient="vertical"] - { - border-left: 1px solid ThreeDShadow; - border-right: 1px solid ThreeDHighlight; - margin-left: 0.4em; - margin-right: 0.4em; - } - -/* groove separators (0 padding, for dividing effects) */ - separator.groove-thin - { - border-top: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDHighlight; - height: 0px; - } - - separator[orient="vertical"].groove-thin - { - border-left: 1px solid ThreeDShadow; - border-right: 1px solid ThreeDHighlight; - } - -/** text formatting rules **/ -/* label (with margins) */ - -/** Reduced Margin for some UI **/ - .small-margin - { - margin : 1px 2px 1px 2px; - } - - .plain - { - margin: 0px !important; - border: none; - padding: 0px; - } - - label[disabled="true"] - { - color : GrayText; - } - - description, label - { - cursor : default; - } - - description - { - margin : 1px 5px 4px 5px; - } - - label - { - margin : 1px 5px 2px 6px; - } - - .header - { - font-weight : bold; - } - - .larger-text - { - font-size : larger; - } - - .smaller-text - { - font-size : smaller; - } - - .monospace - { - font-family : monospace; - } - - .indent - { - margin-left : 23px; - } - - .box-padded - { - padding : 5px; - } - - .spaced - { - margin : 3px 5px 4px 5px; - } - - .wizard-box - { - padding : 20px 44px 10px 44px; - } - -/* Double Border Boxes */ - - /* top only */ - .double-box-top - { - -moz-binding : url("chrome://global/skin/classicBindings.xml#double-box"); - border-top : 1px solid ThreeDShadow; - background-color : #FFFFFF; - margin : 0px; - } - - .double-box-top > .db-internal-box - { - border-top : 1px solid ThreeDDarkShadow; - } - - /* all round */ - .double-box - { - -moz-binding : url("chrome://global/skin/classicBindings.xml#double-box"); - border-left : 1px solid ThreeDShadow; - border-top : 1px solid ThreeDShadow; - border-bottom : 1px solid ThreeDHighlight; - border-right : 1px solid ThreeDHighlight; - background-color : #FFFFFF; - margin : 0px; - } - - .double-box > .db-internal-box - { - border : 1px solid ThreeDDarkShadow; - } - - .caption-text - { - margin: 0px 2px 0px 1px !important; - } - - -/* class for text with a 'link' appearance */ - .text-link - { - color : blue; - text-decoration : underline; - } - - .text-link:focus - { - color : red; - -moz-outline: 1px dotted invert; - } - - .text-link:hover - { - cursor : pointer; - } - - .text-link:hover:active - { - color : red; - } - - .text-link[visited="true"] - { - color : purple; - } diff --git a/mozilla/toolkit/skin/win/global.css b/mozilla/toolkit/skin/win/global.css deleted file mode 100644 index 938223f3195..00000000000 --- a/mozilla/toolkit/skin/win/global.css +++ /dev/null @@ -1,165 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -/* ===== global.css ===================================================== - == Styles that apply everywhere. - ======================================================================= */ - -/* all localizable skin settings shall live here */ -@import url("chrome://global/locale/intl.css"); - -@import url("chrome://global/skin/formatting.css"); - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: XBL bindings ::::: */ - -radio { - -moz-binding: url("chrome://global/skin/globalBindings.xml#radio"); -} - -menulist > menupopup, -.menulist-menupopup { - -moz-binding: url("chrome://global/content/bindings/popup.xml#popup-scrollbars"); -} - -.menulist-compact { - -moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-compact"); -} - -/* ::::: root elements ::::: */ - -window, -page, -dialog, -wizard { - -moz-appearance: window; - background-color: -moz-Dialog; - color: -moz-DialogText; - font: message-box; -} - -/* deprecated */ -window.dialog { - padding: 8px 10px 10px 8px; -} - -[wait-cursor] { - cursor: wait !important; -} - -/* ::::: alert icons :::::*/ - -.message-icon, -.alert-icon, -.error-icon, -.question-icon { - width: 32px; - height: 32px; -} - -.message-icon { - list-style-image: url("chrome://global/skin/icons/Message.png"); -} - -.alert-icon { - list-style-image: url("chrome://global/skin/icons/Warning.png"); -} - -.error-icon { - list-style-image: url("chrome://global/skin/icons/Error.png"); -} - -.question-icon { - list-style-image: url("chrome://global/skin/icons/Question.png"); -} - -/* ::::: iframe ::::: */ - -iframe { - border: none; - width: 100px; - height: 100px; - min-width: 10px; - min-height: 10px; -} - -/* ::::: statusbar ::::: */ - -statusbar { - -moz-appearance: statusbar; - border-top: 1px solid ThreeDLightShadow; - border-left: 1px solid ThreeDShadow; - border-right: 1px solid ThreeDHighlight; - border-bottom: 1px solid ThreeDHighlight; - background-color: -moz-Dialog; - min-height: 22px; -} - -statusbarpanel { - -moz-appearance: statusbarpanel; - -moz-box-align: center; - -moz-box-pack: center; - border-left: 1px solid ThreeDHighlight; - border-top: 1px solid ThreeDHighlight; - border-right: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDShadow; - padding: 0 4px; -} - -.statusbar-resizerpanel { - -moz-box-align: end; - -moz-box-pack: end; - -moz-appearance: resizerpanel; - padding: 0px; - border: none; -} - -.statusbarpanel-iconic { - padding: 0px; -} - -resizer[dir="bottomright"] { - -moz-appearance: resizer; - cursor: se-resize; -} - -/* XXXBlake yeah, shoot me -- these don't belong here. I'll move them later. */ - -sidebarheader { - -moz-appearance: toolbox; - height: 25px; - background-color: -moz-Dialog; - border-bottom: 1px solid ThreeDShadow; - border-top: 1px solid ThreeDHighlight; -} - -sidebarheader > label { - padding-left: 4px; -} - -/* ::::: miscellaneous ::::: */ - -.toolbar-focustarget { - -moz-user-focus: ignore !important; -} diff --git a/mozilla/toolkit/skin/win/globalBindings.xml b/mozilla/toolkit/skin/win/globalBindings.xml deleted file mode 100644 index 6b27b948a70..00000000000 --- a/mozilla/toolkit/skin/win/globalBindings.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mozilla/toolkit/skin/win/groupbox.css b/mozilla/toolkit/skin/win/groupbox.css deleted file mode 100644 index caf9f65408f..00000000000 --- a/mozilla/toolkit/skin/win/groupbox.css +++ /dev/null @@ -1,47 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -/* ===== groupbox.css ================================================== - == Styles used by the XUL groupbox and related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: groupbox ::::: */ - -groupbox { - margin: 5px; - border: 1px solid ThreeDShadow; - -moz-border-radius: 5px; - padding: 5px; -} - -.groupbox-body { - padding: inherit; -} - -caption { - margin: 0px 6px 2px 6px; - padding: 0px 3px; - background-color: -moz-Dialog; -} diff --git a/mozilla/toolkit/skin/win/icons/Close.gif b/mozilla/toolkit/skin/win/icons/Close.gif deleted file mode 100644 index 358055b50b2..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Close.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/Error.png b/mozilla/toolkit/skin/win/icons/Error.png deleted file mode 100644 index f211f9dd9fc..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Error.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/Loading.gif b/mozilla/toolkit/skin/win/icons/Loading.gif deleted file mode 100644 index c75eedc2f23..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Loading.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/Message.png b/mozilla/toolkit/skin/win/icons/Message.png deleted file mode 100644 index 10ba10e8ff5..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Message.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/Minimize.gif b/mozilla/toolkit/skin/win/icons/Minimize.gif deleted file mode 100644 index 295003780aa..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Minimize.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/Question.png b/mozilla/toolkit/skin/win/icons/Question.png deleted file mode 100644 index 78b9134597c..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Question.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/Restore.gif b/mozilla/toolkit/skin/win/icons/Restore.gif deleted file mode 100644 index cdc66e11245..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Restore.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/Warning.png b/mozilla/toolkit/skin/win/icons/Warning.png deleted file mode 100644 index 6f89ef0e916..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/Warning.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/close-button.gif b/mozilla/toolkit/skin/win/icons/close-button.gif deleted file mode 100644 index 1d41bd48f0d..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/close-button.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/icons/folder-item.png b/mozilla/toolkit/skin/win/icons/folder-item.png deleted file mode 100644 index 240179ab9e3..00000000000 Binary files a/mozilla/toolkit/skin/win/icons/folder-item.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/jar.mn b/mozilla/toolkit/skin/win/jar.mn deleted file mode 100644 index 9d77895e103..00000000000 --- a/mozilla/toolkit/skin/win/jar.mn +++ /dev/null @@ -1,86 +0,0 @@ -classic.jar: -*+ skin/classic/global/arrow.css -*+ skin/classic/global/autocomplete.css -+ skin/classic/global/browser.css -*+ skin/classic/global/checkbox.css -+ skin/classic/global/colorpicker.css -+ skin/classic/global/customizeToolbar.css -+ skin/classic/global/contents.rdf -+ skin/classic/global/dialog.css -+ skin/classic/global/formatting.css -+ skin/classic/global/global.css -+ skin/classic/global/groupbox.css -+ skin/classic/global/linkTree.css -+ skin/classic/global/listbox.css -+ skin/classic/global/menulist.css -+ skin/classic/global/popup.css -+ skin/classic/global/progressmeter.css -*+ skin/classic/global/radio.css -+ skin/classic/global/scrollbars.css -+ skin/classic/global/scrollbox.css -+ skin/classic/global/spinbuttons.css -+ skin/classic/global/splitter.css -*+ skin/classic/global/tabbox.css -+ skin/classic/global/textbox.css -*+ skin/classic/global/toolbarbutton.css -+ skin/classic/global/tree.css -+ skin/classic/global/wizard.css -*+ skin/classic/global/button.css -+ skin/classic/global/menu.css - skin/classic/global/expander.css -+ skin/classic/global/toolbar.css -+ skin/classic/global/globalBindings.xml -+ skin/classic/global/Preview.png -+ skin/classic/global/arrow/arrow-dn-dis.gif (arrow/arrow-dn-dis.gif) -+ skin/classic/global/arrow/arrow-dn-hov.gif (arrow/arrow-dn-hov.gif) -+ skin/classic/global/arrow/arrow-dn-sharp.gif (arrow/arrow-dn-sharp.gif) -+ skin/classic/global/arrow/arrow-dn.gif (arrow/arrow-dn.gif) -+ skin/classic/global/arrow/arrow-lft-dis.gif (arrow/arrow-lft-dis.gif) -+ skin/classic/global/arrow/arrow-lft-hov.gif (arrow/arrow-lft-hov.gif) -+ skin/classic/global/arrow/arrow-lft-sharp-end.gif (arrow/arrow-lft-sharp-end.gif) -+ skin/classic/global/arrow/arrow-lft-sharp.gif (arrow/arrow-lft-sharp.gif) -+ skin/classic/global/arrow/arrow-lft.gif (arrow/arrow-lft.gif) -+ skin/classic/global/arrow/arrow-rit-dis.gif (arrow/arrow-rit-dis.gif) -+ skin/classic/global/arrow/arrow-rit-hov.gif (arrow/arrow-rit-hov.gif) -+ skin/classic/global/arrow/arrow-rit-sharp-end.gif (arrow/arrow-rit-sharp-end.gif) -+ skin/classic/global/arrow/arrow-rit-sharp.gif (arrow/arrow-rit-sharp.gif) -+ skin/classic/global/arrow/arrow-rit.gif (arrow/arrow-rit.gif) -+ skin/classic/global/arrow/arrow-up-dis.gif (arrow/arrow-up-dis.gif) -+ skin/classic/global/arrow/arrow-up-hov.gif (arrow/arrow-up-hov.gif) -+ skin/classic/global/arrow/arrow-up-sharp.gif (arrow/arrow-up-sharp.gif) -+ skin/classic/global/arrow/arrow-up.gif (arrow/arrow-up.gif) -+ skin/classic/global/checkbox/cbox-check-dis.gif (checkbox/cbox-check-dis.gif) -+ skin/classic/global/checkbox/cbox-check.gif (checkbox/cbox-check.gif) -+ skin/classic/global/icons/folder-item.png (icons/folder-item.png) -+ skin/classic/global/icons/Loading.gif (icons/Loading.gif) -+ skin/classic/global/icons/Error.png (icons/Error.png) -+ skin/classic/global/icons/Message.png (icons/Message.png) -+ skin/classic/global/icons/Question.png (icons/Question.png) -+ skin/classic/global/icons/Warning.png (icons/Warning.png) -+ skin/classic/global/icons/Minimize.gif (icons/Minimize.gif) -+ skin/classic/global/icons/Restore.gif (icons/Restore.gif) -+ skin/classic/global/icons/Close.gif (icons/Close.gif) -+ skin/classic/global/icons/close-button.gif (icons/close-button.gif) -+ skin/classic/global/menu/Menu-arrow-disabled.png (menu/Menu-arrow-disabled.png) -+ skin/classic/global/menu/Menu-arrow-hover.png (menu/Menu-arrow-hover.png) -+ skin/classic/global/menu/Menu-arrow.png (menu/Menu-arrow.png) -+ skin/classic/global/menu/menu-check-disabled.gif (menu/menu-check-disabled.gif) -+ skin/classic/global/menu/menu-check-hover.gif (menu/menu-check-hover.gif) -+ skin/classic/global/menu/menu-check.gif (menu/menu-check.gif) -+ skin/classic/global/menu/menu-radio-disabled.gif (menu/menu-radio-disabled.gif) -+ skin/classic/global/menu/menu-radio-hover.gif (menu/menu-radio-hover.gif) -+ skin/classic/global/menu/menu-radio.gif (menu/menu-radio.gif) -+ skin/classic/global/progressmeter/progressmeter-busy.gif (progressmeter/progressmeter-busy.gif) -+ skin/classic/global/radio/radio-check-dis.gif (radio/radio-check-dis.gif) -+ skin/classic/global/radio/radio-check.gif (radio/radio-check.gif) -+ skin/classic/global/scrollbar/slider.gif (scrollbar/slider.gif) -+ skin/classic/global/toolbar/Flex.png (toolbar/Flex.png) -+ skin/classic/global/toolbar/Lighten.png (toolbar/Lighten.png) -+ skin/classic/global/toolbar/chevron.gif (toolbar/chevron.gif) -+ skin/classic/global/toolbar/spacer-lft.gif (toolbar/spacer-lft.gif) -+ skin/classic/global/toolbar/spacer-rit.gif (toolbar/spacer-rit.gif) -+ skin/classic/global/tree/columnpicker.gif (tree/columnpicker.gif) -+ skin/classic/global/tree/sort-asc.gif (tree/sort-asc.gif) -+ skin/classic/global/tree/sort-dsc.gif (tree/sort-dsc.gif) -+ skin/classic/global/tree/twisty-clsd.gif (tree/twisty-clsd.gif) -+ skin/classic/global/tree/twisty-open.gif (tree/twisty-open.gif) diff --git a/mozilla/toolkit/skin/win/linkTree.css b/mozilla/toolkit/skin/win/linkTree.css deleted file mode 100644 index 63a7c0dba59..00000000000 --- a/mozilla/toolkit/skin/win/linkTree.css +++ /dev/null @@ -1,28 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/** - * All the properties in this rule are important to avoid having to create - * a special type of tree. This stylesheet can be loaded into a document with - * a single tree that is a link tree. Hardly elegant but it's efficient. - */ -treeitem[selected="true"] > treerow - { - background : transparent !important; - border : none !important; - color : -moz-FieldText !important; - } - -treecell:hover - { - text-decoration : underline !important; - color : #000080 !important; - cursor : pointer; - } - -treecell:hover:active - { - text-decoration : underline !important; - color : red !important; - } - - diff --git a/mozilla/toolkit/skin/win/listbox.css b/mozilla/toolkit/skin/win/listbox.css deleted file mode 100644 index ea2715a4741..00000000000 --- a/mozilla/toolkit/skin/win/listbox.css +++ /dev/null @@ -1,152 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== listbox.css ======================================================= - == Styles used by XUL listbox-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: listbox ::::: */ - -listbox { - -moz-appearance: listbox; - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - background-color: -moz-Field; - color: -moz-FieldText; -} - -/* ::::: listitem ::::: */ - -listitem { - border: 1px solid transparent; -} - -listbox:focus > listitem[selected="true"][current="true"] { - border: 1px dotted #F5DB95; -} - -listitem[selected="true"] { - background-color: -moz-Dialog; - color: -moz-DialogText; -} - -listbox:focus > listitem[selected="true"] { - background-color: Highlight; - color: HighlightText; -} - -/* ::::: listheader ::::: */ - -listheader { - -moz-appearance: treeheadercell; - -moz-box-align: center; - border: 2px solid; - -moz-border-top-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDHighlight ThreeDLightShadow; - background-color: -moz-Dialog; - color: -moz-DialogText; - padding: 0 4px; -} - -listheader[sortable="true"]:hover:active { - border-top: 2px solid; - border-right: 1px solid; - border-bottom: 1px solid; - border-left: 2px solid; - -moz-border-top-colors: ThreeDShadow -moz-Dialog; - -moz-border-right-colors: ThreeDShadow; - -moz-border-bottom-colors: ThreeDShadow; - -moz-border-left-colors: ThreeDShadow -moz-Dialog; - padding: 1px 4px 0 5px; -} - -.listheader-icon { - margin-right: 2px; -} - -.listheader-label { - margin: 0px !important; -} - -/* ..... sort direction icon ..... */ - -.listheader-sortdirection { - list-style-image: none; -} - -.listheader-sortdirection[sortDirection="ascending"] { - list-style-image: url("chrome://global/skin/tree/sort-asc.gif"); -} - -.listheader-sortdirection[sortDirection="descending"] { - list-style-image: url("chrome://global/skin/tree/sort-dsc.gif"); -} - -/* ::::: listcell ::::: */ - -.listcell-label { - margin: 0px !important; - padding: 0px 0px 1px 4px; - white-space: nowrap; -} - -.listcell-icon { - margin-right: 2px; -} - -.listcell-label[disabled="true"] { - color: GrayText; -} - -/* ::::: listcell checkbox ::::: */ - -.listcell-check { - -moz-appearance: checkbox; - -moz-box-align: center; - margin: 0px 2px; - border: 1px solid -moz-DialogText; - min-width: 13px; - min-height: 13px; - background: -moz-Field no-repeat 50% 50%; -} - -.listcell-check[checked="true"] { - background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); -} - -.listcell-check[disabled="true"] { - border-color: GrayText; - background-image: url("chrome://global/skin/checkbox/cbox-dis.gif"); -} - -.listcell-check[disabled="true"][checked="true"] { - background-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif"); -} \ No newline at end of file diff --git a/mozilla/toolkit/skin/win/menu.css b/mozilla/toolkit/skin/win/menu.css deleted file mode 100644 index e7661a85a1a..00000000000 --- a/mozilla/toolkit/skin/win/menu.css +++ /dev/null @@ -1,238 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - * - */ - -/* ===== menu.css ======================================================= - == Styles used by XUL menu-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: menu/menuitem ::::: */ - -menu, -menuitem { - -moz-box-align: center; - color: MenuText; - font: menu; - list-style-image: none; - -moz-image-region: auto; -} - -menuitem[default="true"] { - font-weight: bold; -} - -menu[disabled="true"], menuitem[disabled="true"], -menu[_moz-menuactive="true"][disabled="true"], -menuitem[_moz-menuactive="true"][disabled="true"] { - color: GrayText; -} - -/* ..... internal content .... */ - -.menu-text, -.menu-iconic-left, -.menu-iconic-text { - margin: 0px 2px 0px 0px !important; - color: inherit; -} - -.menu-text { - margin-left: 18px !important; - font-weight: inherit; -} - -.menu-description { - font-style: italic; - color: GrayText; - margin-left: 1ex !important; -} - -.menu-accel, -.menu-iconic-accel { - margin: 0px 2px 0px 7px !important; - padding-right: 14px; - color: inherit; -} - -.menu-iconic-left { - width: 16px; -} - -/* ..... menu arrow box ..... */ - -.menu-right { - margin: 0px 0px 0px 6px; - width: 8px; - list-style-image: url("chrome://global/skin/menu/Menu-arrow.png"); - -moz-image-region: auto; -} - -.menu-right[_moz-menuactive="true"] { - list-style-image: url("chrome://global/skin/menu/Menu-arrow-hover.png"); - -moz-image-region: auto; -} - -.menu-right[disabled="true"] { - list-style-image: url("chrome://global/skin/menu/Menu-arrow-disabled.png") !important; - -moz-image-region: auto; -} - -/* ::::: menu/menuitems in menubar ::::: */ - -menubar > menu { - border: 1px solid transparent; - padding: 2px 5px 2px 7px; - margin: 1px 0px 1px 0px; -} -menubar > menu[_moz-menuactive="true"] { - border-top: 1px solid ThreeDHighlight; - border-right: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDShadow; - border-left: 1px solid ThreeDHighlight; -} -menubar > menu[_moz-menuactive="true"][open="true"] { - border-top: 1px solid ThreeDShadow; - border-right: 1px solid ThreeDHighlight; - border-bottom: 1px solid ThreeDHighlight; - border-left: 1px solid ThreeDShadow; -} - -/* ..... internal content .... */ - -.menubar-left { - margin: 0px 2px 0px 0px; - color: inherit; -} - -.menubar-text { - margin: 0px 2px 0px 0px !important; - color: inherit; -} - -/* ::::: menu/menuitems in popups ::::: */ - -menupopup > menu, -popup > menu, -menupopup > menuitem, -popup > menuitem { - padding: 2px; - max-width: 42em; -} - -menupopup > menu[_moz-menuactive="true"], -menupopup > menuitem[_moz-menuactive="true"], -popup > menu[_moz-menuactive="true"], -popup > menuitem[_moz-menuactive="true"] { - background-color: Highlight; - color: HighlightText; -} - -/* ::::: menu/menuitems in menulist popups ::::: */ - -.menulist-menupopup > menuitem, -menulist > menupopup > menuitem, -.menulist-menupopup > menu, -menulist > menupopup > menu { - border: 1px solid transparent; - padding: 1px 30px 1px 5px; - max-width: none; - font: message-box; - color: -moz-FieldText; -} - -.menulist-menupopup > menuitem > .menu-iconic-left, -menulist > menupopup > menuitem > .menu-iconic-left, -.menulist-menupopup > menu > .menu-iconic-left, -menulist > menupopup > menu > .menu-iconic-left { - display: none; -} - -menulist > menupopup > menuitem[_moz-menuactive="true"] { - border: 1px dotted #F5DB95; -} - -/* ::::: checkbox menuitem ::::: */ - -menuitem[checked="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][disabled="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check-disabled.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][_moz-menuactive="true"] { - list-style-image: url("chrome://global/skin/menu/menu-check-hover.gif"); - -moz-image-region: auto; -} - -/* ::::: radio menuitem ::::: */ - -menuitem[checked="true"][type="radio"] { - list-style-image: url("chrome://global/skin/menu/menu-radio.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][type="radio"][disabled="true"] { - list-style-image: url("chrome://global/skin/menu/menu-radio-disabled.gif"); - -moz-image-region: auto; -} - -menuitem[checked="true"][type="radio"][_moz-menuactive="true"] { - list-style-image: url("chrome://global/skin/menu/menu-radio-hover.gif"); - -moz-image-region: auto; -} - -/* ::::: menuseparator ::::: */ - -menuseparator { - margin: 2px 3px; - border-top: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDHighlight; -} - -menulist > menupopup > menuseparator, -.menulist-menupopup > menuseparator { - margin: 2px 0; - border-top: 1px solid #000000; - border-bottom: none; -} - -/* ::::: autocomplete ::::: */ - -.autocomplete-history-popup > menuitem { - max-width: none !important; - font: message-box; -} - -/* ::::: tree column picker ::::: */ - -.treecell-popupcell-menu { - margin-left: -2px; - list-style-image: url("chrome://global/skin/columnselect.gif"); - -moz-image-region: auto; -} diff --git a/mozilla/toolkit/skin/win/menu/Menu-arrow-disabled.png b/mozilla/toolkit/skin/win/menu/Menu-arrow-disabled.png deleted file mode 100644 index 425dc4a6c86..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/Menu-arrow-disabled.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/Menu-arrow-hover.png b/mozilla/toolkit/skin/win/menu/Menu-arrow-hover.png deleted file mode 100644 index 23a4e72109d..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/Menu-arrow-hover.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/Menu-arrow.png b/mozilla/toolkit/skin/win/menu/Menu-arrow.png deleted file mode 100644 index c06b94bd1a1..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/Menu-arrow.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/menu-check-disabled.gif b/mozilla/toolkit/skin/win/menu/menu-check-disabled.gif deleted file mode 100644 index 7d6cfe3a29a..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/menu-check-disabled.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/menu-check-hover.gif b/mozilla/toolkit/skin/win/menu/menu-check-hover.gif deleted file mode 100644 index 7ec47cc5b38..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/menu-check-hover.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/menu-check.gif b/mozilla/toolkit/skin/win/menu/menu-check.gif deleted file mode 100644 index 7d6cfe3a29a..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/menu-check.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/menu-radio-disabled.gif b/mozilla/toolkit/skin/win/menu/menu-radio-disabled.gif deleted file mode 100644 index ff728805e73..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/menu-radio-disabled.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/menu-radio-hover.gif b/mozilla/toolkit/skin/win/menu/menu-radio-hover.gif deleted file mode 100644 index 5c21fdfc8cd..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/menu-radio-hover.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menu/menu-radio.gif b/mozilla/toolkit/skin/win/menu/menu-radio.gif deleted file mode 100644 index ff728805e73..00000000000 Binary files a/mozilla/toolkit/skin/win/menu/menu-radio.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/menulist.css b/mozilla/toolkit/skin/win/menulist.css deleted file mode 100644 index 4cdffbfa374..00000000000 --- a/mozilla/toolkit/skin/win/menulist.css +++ /dev/null @@ -1,163 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== menulist.css =================================================== - == Styles used by the XUL menulist element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* :::::::::: menulist :::::::::: */ - -menulist { - -moz-appearance: menulist; - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - background-color: -moz-Field; - color: -moz-FieldText; -} - -.menulist-label-box { - -moz-box-align: center; - -moz-box-pack: center; - margin: 1px; -} - -.menulist-label-box, -menulist[open="true"]:focus > .menulist-label-box { - border: 1px solid transparent; - background-color: transparent; - color: inherit; -} - -.menulist-label { - margin: 1px 3px !important; -} - -.menulist-description { - font-style: italic; - color: GrayText; - margin-left: 1ex !important; -} - -/* ..... dropmarker ..... */ - -.menulist-dropmarker { - -moz-appearance: menulist-button; - min-width: 17px; - -moz-box-align: center; - -moz-box-pack: center; - border: 2px solid; - background-color: -moz-Dialog; - list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif"); -} - -.menulist-dropmarker, -menulist[disabled="true"]:hover:active > .menulist-dropmarker { - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - padding: 1px; -} - -menulist[disabled="true"] > .menulist-dropmarker { - list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif"); -} - -menulist:hover:active > .menulist-dropmarker { - -moz-border-top-colors: ThreeDShadow ThreeDFace; - -moz-border-right-colors: ThreeDShadow ThreeDFace; - -moz-border-bottom-colors: ThreeDShadow ThreeDFace; - -moz-border-left-colors: ThreeDShadow ThreeDFace; - padding: 2px 0px 0px 2px; -} - -/* ..... focused state ..... */ - -menulist:focus > .menulist-label-box { - border: 1px dotted #F5DB95; - background-color: Highlight; - color: HighlightText; -} - -/* ..... disabled state ..... */ - -menulist[disabled="true"] { - background-color: -moz-Dialog; - color: GrayText; -} - -/* ::::: editable menulists ::::: */ - -.menulist-editable-box { - padding: 3px 0px 3px 2px; -} - -html|*.menulist-editable-input { - margin: 0px !important; - border: none !important; - padding: 0px !important; - background: inherit; - font: inherit; -} - -/* ::::: compact menulists ::::: */ - -.menulist-compact { - -moz-box-align: center; - -moz-box-pack: center; - margin: 0; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - background-color: -moz-Dialog; - color: -moz-DialogText; -} - -.menulist-compact > .menulist-label { - margin: 0 3px !important; - text-align: right; -} - -.menulist-compact > .menulist-dropmarker { - margin-left: 2px; - border: none; - padding: 0 !important; - background: transparent; -} - -.menulist-compact[open="true"] { - -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow; - background-color: ThreeDShadow; - color: ThreeDHighlight; -} diff --git a/mozilla/toolkit/skin/win/popup.css b/mozilla/toolkit/skin/win/popup.css deleted file mode 100644 index 47ac0a97c4a..00000000000 --- a/mozilla/toolkit/skin/win/popup.css +++ /dev/null @@ -1,81 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== popup.css =================================================== - == Styles used by the XUL popup element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: menupopup ::::: */ - -menupopup, -popup { - border: 2px solid; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - padding: 1px; - min-width: 1px; - background-color: Menu; -} - -/* ::::: tooltip ::::: */ - -tooltip { - -moz-appearance: tooltip; - margin-top: 21px; - border: 1px solid InfoText; - padding: 2px 3px; - max-width: 40em; - background-color: InfoBackground; - color: InfoText; - font: message-box; -} - -.tooltip-label { - margin: 0px !important; -} - -tooltip[titletip="true"] { - /* See bug 32157 comment 128 - * margin: -2px 0px 0px -3px; - */ - max-width: none; -} - -/* rules for popups associated with menulists */ - -menulist > menupopup, -.menulist-menupopup { - border-width: 1px; - -moz-border-top-colors: -moz-FieldText; - -moz-border-right-colors: -moz-FieldText; - -moz-border-bottom-colors: -moz-FieldText; - -moz-border-left-colors: -moz-FieldText; - padding: 0px; - min-width: 0px; - background-color: -moz-Field; -} - diff --git a/mozilla/toolkit/skin/win/progressmeter.css b/mozilla/toolkit/skin/win/progressmeter.css deleted file mode 100644 index a84d32226a5..00000000000 --- a/mozilla/toolkit/skin/win/progressmeter.css +++ /dev/null @@ -1,81 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: NPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 1998 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Joe Hewitt - * - * 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 NPL, 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 NPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -/* ===== progressmeter.css ============================================== - == Styles used by the XUL progressmeter element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: progressmeter ::::: */ - -progressmeter { - -moz-appearance: progressbar; - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow -moz-Dialog; - -moz-border-right-colors: ThreeDHighlight -moz-Dialog; - -moz-border-bottom-colors: ThreeDHighlight -moz-Dialog; - -moz-border-left-colors: ThreeDShadow -moz-Dialog; - background-color: -moz-Dialog; - min-width: 128px; - min-height: 15px; -} - -progressmeter[mode="undetermined"] { - background: url("chrome://global/skin/progressmeter/progressmeter-busy.gif") repeat-x 0% 50%; -} - -.progress-bar -{ - -moz-appearance: progresschunk; - min-width: 0px; - background-color: ThreeDShadow; -} - -/* ::::: statusbar progressmeter ::::: */ - -.progressmeter-statusbar { - margin: 0; - border: 0px; - -moz-border-top-colors: ThreeDHighlight -moz-Dialog; - -moz-border-right-colors: ThreeDShadow -moz-Dialog; - -moz-border-bottom-colors: ThreeDShadow -moz-Dialog; - -moz-border-left-colors: ThreeDHighlight -moz-Dialog; - min-width: 96px; -} - diff --git a/mozilla/toolkit/skin/win/progressmeter/progressmeter-busy.gif b/mozilla/toolkit/skin/win/progressmeter/progressmeter-busy.gif deleted file mode 100644 index 716a589a4d0..00000000000 Binary files a/mozilla/toolkit/skin/win/progressmeter/progressmeter-busy.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/radio.css b/mozilla/toolkit/skin/win/radio.css deleted file mode 100644 index 73e432e5279..00000000000 --- a/mozilla/toolkit/skin/win/radio.css +++ /dev/null @@ -1,114 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -/* ===== radio.css =================================================== - == Styles used by the XUL radio element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: radio ::::: */ - -radio { - -moz-appearance: radio-container; - -moz-box-align: center; - margin: 2px 4px; - padding: 1px 2px 1px 4px; -} - -.radio-label-box { - margin-left: 2px; - border: 1px solid transparent; - padding: 0px 0px 1px 1px; -} - -.radio-icon { - margin-right: 2px; -} - -.radio-label { - margin: 0 !important; -} - -/* ..... focused state ..... */ - -radio[focused="true"] > .radio-label-box { - border: 1px dotted ThreeDDarkShadow; -} - -/* ..... disabled state ..... */ - -radio[disabled="true"] > .radio-check-box1 { - background-color: -moz-Dialog; -} - -radio[disabled="true"] { - color: GrayText !important; -} - -/* ::::: checkmark image ::::: */ - -.radio-check-box1 { - -moz-appearance: radio; - margin: 1px 0px; - border-top: 1px solid ThreeDShadow; - border-right: 1px solid ThreeDHighlight; - border-bottom: 1px solid ThreeDHighlight; - border-left: 1px solid ThreeDShadow; - -moz-border-radius: 50%; - width: 12px; - height: 12px; - background-color: -moz-Field; -} - -.radio-check-box2 { - border-top: 1px solid ThreeDDarkShadow; - border-right: 1px solid ThreeDLightShadow; - border-bottom: 1px solid ThreeDLightShadow; - border-left: 1px solid ThreeDDarkShadow; - -moz-border-radius: 50%; - padding: 2px; - width: 4px; - height: 4px; - list-style-image: none; -} - -#ifdef MOZ_WIDGET_GTK2 -radio:hover { - color: -moz-gtk2-hovertext; -} -#endif - -radio:hover:active > .radio-check-box1 { - background-color: -moz-Dialog; -} - -/* ..... selected state ..... */ - -radio[selected="true"] > .radio-check-box1 > .radio-check-box2 { - list-style-image: url("chrome://global/skin/radio/radio-check.gif"); -} - -radio[selected="true"][disabled="true"] > .radio-check-box1 > .radio-check-box2 { - list-style-image: url("chrome://global/skin/radio/radio-check-dis.gif") !important -} diff --git a/mozilla/toolkit/skin/win/radio/radio-check-dis.gif b/mozilla/toolkit/skin/win/radio/radio-check-dis.gif deleted file mode 100644 index 5e9a1cb0143..00000000000 Binary files a/mozilla/toolkit/skin/win/radio/radio-check-dis.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/radio/radio-check.gif b/mozilla/toolkit/skin/win/radio/radio-check.gif deleted file mode 100644 index 26aa14026a6..00000000000 Binary files a/mozilla/toolkit/skin/win/radio/radio-check.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/scrollbar/slider.gif b/mozilla/toolkit/skin/win/scrollbar/slider.gif deleted file mode 100644 index 355fcb27cc0..00000000000 Binary files a/mozilla/toolkit/skin/win/scrollbar/slider.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/scrollbars.css b/mozilla/toolkit/skin/win/scrollbars.css deleted file mode 100644 index 449b6feae62..00000000000 --- a/mozilla/toolkit/skin/win/scrollbars.css +++ /dev/null @@ -1,213 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== scrollbars.css ================================================= - == Styles used by XUL scrollbar-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */ - -/* ::::: scrollbar ::::: */ - -scrollbar { - -moz-appearance: scrollbartrack-horizontal; - -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar"); - cursor: default; - background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar; -} - -scrollbar[orient="vertical"] -{ - -moz-appearance: scrollbartrack-vertical; -} - -/* ::::: borders for thumb and buttons ::::: */ - -thumb, -scrollbarbutton { - border: 2px solid; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - background-color: -moz-Dialog; -} - -/* ::::: thumb (horizontal) ::::: */ - -thumb { - -moz-appearance: scrollbarthumb-vertical; - min-height: 8px; -} - -thumb[orient="horizontal"] { - -moz-appearance: scrollbarthumb-horizontal; - min-width: 8px; -} - -thumb > gripper { - -moz-appearance: scrollbargripper-vertical; -} - -thumb[orient="horizontal"] > gripper { - -moz-appearance: scrollbargripper-horizontal; -} - -/* ::::: scrollbar button ::::: */ - -scrollbarbutton { - background: -moz-Dialog no-repeat 0px 1px; - min-width: 16px; - min-height: 16px; -} - -scrollbarbutton:hover:active { - -moz-border-top-colors: ThreeDShadow -moz-Dialog; - -moz-border-right-colors: ThreeDShadow -moz-Dialog; - -moz-border-bottom-colors: ThreeDShadow -moz-Dialog; - -moz-border-left-colors: ThreeDShadow -moz-Dialog; - background-position: 1px 2px; -} - -/* ::::: square at the corner of two scrollbars ::::: */ - -scrollcorner { - background-color: -moz-Dialog; -} - -/* ..... increment .... */ - -scrollbarbutton[type="increment"] { - -moz-appearance: scrollbarbutton-right; - background-image: url("chrome://global/skin/arrow/arrow-rit.gif") -} - -scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] { - -moz-appearance: scrollbarbutton-down; - background-image: url("chrome://global/skin/arrow/arrow-dn.gif") -} - -/* ..... decrement .... */ - -scrollbarbutton[type="decrement"] { - -moz-appearance: scrollbarbutton-left; - background-image: url("chrome://global/skin/arrow/arrow-lft.gif") -} - -scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] { - -moz-appearance: scrollbarbutton-up; - background-image: url("chrome://global/skin/arrow/arrow-up.gif") -} - -/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */ -/* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */ -/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */ -@media print { - /* ::::: scrollbar ::::: */ - - html|div scrollbar { - -moz-appearance: scrollbartrack-horizontal; - -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar"); - cursor: default; - background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar; - } - - html|div scrollbar[orient="vertical"] - { - -moz-appearance: scrollbartrack-vertical; - } - - /* ::::: borders for thumb and buttons ::::: */ - - html|div thumb, - html|div scrollbarbutton { - border: 2px solid; - -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; - background-color: -moz-Dialog; - } - - /* ::::: thumb (horizontal) ::::: */ - - html|div thumb { - -moz-appearance: scrollbarthumb-vertical; - min-height: 8px; - } - - html|div thumb[orient="horizontal"] { - -moz-appearance: scrollbarthumb-horizontal; - min-width: 8px; - } - - html|div thumb > gripper { - -moz-appearance: scrollbargripper-vertical; - } - - html|div thumb[orient="horizontal"] > gripper { - -moz-appearance: scrollbargripper-horizontal; - } - - /* ::::: scrollbar button ::::: */ - - html|div scrollbarbutton { - background: -moz-Dialog no-repeat 0px 1px; - min-width: 16px; - min-height: 16px; - } - - html|div scrollbarbutton:hover:active { - -moz-border-top-colors: ThreeDShadow -moz-Dialog; - -moz-border-right-colors: ThreeDShadow -moz-Dialog; - -moz-border-bottom-colors: ThreeDShadow -moz-Dialog; - -moz-border-left-colors: ThreeDShadow -moz-Dialog; - background-position: 1px 2px; - } - - /* ..... increment .... */ - - html|div scrollbarbutton[type="increment"] { - -moz-appearance: scrollbarbutton-right; - background-image: url("chrome://global/skin/arrow/arrow-rit.gif") - } - - html|div scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] { - -moz-appearance: scrollbarbutton-down; - background-image: url("chrome://global/skin/arrow/arrow-dn.gif") - } - - /* ..... decrement .... */ - - html|div scrollbarbutton[type="decrement"] { - -moz-appearance: scrollbarbutton-left; - background-image: url("chrome://global/skin/arrow/arrow-lft.gif") - } - - html|div scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] { - -moz-appearance: scrollbarbutton-up; - background-image: url("chrome://global/skin/arrow/arrow-up.gif") - } - -} diff --git a/mozilla/toolkit/skin/win/scrollbox.css b/mozilla/toolkit/skin/win/scrollbox.css deleted file mode 100644 index ff92557fb6a..00000000000 --- a/mozilla/toolkit/skin/win/scrollbox.css +++ /dev/null @@ -1,32 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* - * Autorepeatbutton - */ -.autorepeatbutton-up - { - list-style-image : url("chrome://global/skin/arrow/arrow-up.gif"); - -moz-image-region : auto; /* cut off inheritance */ - } - -.autorepeatbutton-down - { - list-style-image : url("chrome://global/skin/arrow/arrow-dn.gif"); - -moz-image-region : auto; /* cut off inheritance */ - } - -autorepeatbutton - { - -moz-box-align : center; - -moz-box-pack : center; - margin : 1px 2px 2px 1px; - border : 1px solid transparent; - padding : 1px; - } - -autorepeatbutton:hover - { - margin : 1px; - border : 1px inset ThreeDFace; - padding : 2px 1px 1px 2px; - } diff --git a/mozilla/toolkit/skin/win/spinbuttons.css b/mozilla/toolkit/skin/win/spinbuttons.css deleted file mode 100644 index 935a1a59498..00000000000 --- a/mozilla/toolkit/skin/win/spinbuttons.css +++ /dev/null @@ -1,37 +0,0 @@ -/* - * 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 Håkan Waara - * Portions created by Håkan Waara are Copyright (C) - * Håkan Waara. All Rights Reserved. - * - * Contributor(s): Håkan Waara (Original Author) - */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -.up { - list-style-image: url("chrome://global/skin/spinbtn-up.gif") -} - -.up:hover:active { - list-style-image: url("chrome://global/skin/spinbtn-up-act.gif") -} - -.down { - list-style-image: url("chrome://global/skin/spinbtn-dn.gif") -} - -.down:hover:active { - list-style-image: url("chrome://global/skin/spinbtn-dn-act.gif") -} diff --git a/mozilla/toolkit/skin/win/splitter.css b/mozilla/toolkit/skin/win/splitter.css deleted file mode 100644 index 96a63f5c592..00000000000 --- a/mozilla/toolkit/skin/win/splitter.css +++ /dev/null @@ -1,58 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== splitter.css =================================================== - == Styles used by the XUL splitter element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: splitter (vertical) ::::: */ - -splitter { - -moz-box-align: center; - -moz-box-pack: center; - cursor: e-resize; - border-width: 0 2px; - border-style: solid; - -moz-border-left-colors: ThreeDShadow ThreeDHighlight; - -moz-border-right-colors: ThreeDDarkShadow ThreeDFace; - min-width: 6px; - background-color: ThreeDFace; -} - -/* ::::: splitter (horizontal) ::::: */ - -splitter[orient="vertical"] { - cursor: n-resize; - border-width: 2px 0; - -moz-border-top-colors: ThreeDShadow ThreeDHighlight; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDFace; - min-height: 6px; -} - -/* ::::: splitter grippy ::::: */ - -grippy { - display: none; -} diff --git a/mozilla/toolkit/skin/win/tabbox.css b/mozilla/toolkit/skin/win/tabbox.css deleted file mode 100644 index cbfc6227c4b..00000000000 --- a/mozilla/toolkit/skin/win/tabbox.css +++ /dev/null @@ -1,146 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== tabbox.css ================================================= - == Styles used by XUL tab-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: tabs ::::: */ - -.tabs-left, -.tabs-right { - border-bottom: 2px solid; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; -} - -/* ::::: tabpanels ::::: */ - -tabpanels { - -moz-appearance: tabpanels; - border-right: 2px solid; - border-bottom: 2px solid; - border-left: 2px solid; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDHighlight ThreeDLightShadow; - padding: 8px; - background-color: -moz-Dialog; - color: -moz-DialogText; -} - -/* ::::: tab ::::: */ - -tab -{ - -moz-appearance: tab; - margin-top: 2px; - border-top: 2px solid; - border-right: 2px solid; - border-left: 2px solid; - border-bottom: 1px solid ThreeDHighlight; - -moz-border-top-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-radius-topleft: 2px; - -moz-border-radius-topright: 2px; - -moz-border-radius-bottomright: 1px; - padding: 1px 4px 2px 4px; - background-color: -moz-Dialog; - color: -moz-DialogText; -} - -.tab-text { - margin: 0 !important; -} - -tab[selected="true"] { - margin-top: 0; - border-bottom-color: transparent; - padding: 1px 6px 4px 6px; -} - -tab[beforeselected="true"] { -#ifndef XP_MACOSX - -moz-appearance: tab-left-edge; -#endif - border-right: none; - -moz-border-radius-topright: 0; -} - -tab[afterselected="true"] { -#ifndef XP_MACOSX - -moz-appearance: tab-right-edge; -#endif - border-left: none; - -moz-border-radius-topleft: 0; -} - -tab[first-tab="true"][selected="true"] { - padding-right: 5px; - padding-left: 5px; -} - -/* ::::: tab-bottom :::::::::: - :: Tabs that are attached to the bottom of a panel, but not necessarily - :: a tabpanels. - ::::: */ - -.tab-bottom { - margin-top: 0; - margin-bottom: 2px; - border-top: 1px solid; - border-bottom: 2px solid; - -moz-border-top-colors: ThreeDShadow; - -moz-border-bottom-colors: ThreeDShadow ThreeDLightShadow; - -moz-border-radius-topleft: 0; - -moz-border-radius-topright: 0; - -moz-border-radius-bottomright: 2px; - -moz-border-radius-bottomleft: 2px; - padding: 2px 4px 1px 4px; -} - -.tab-bottom[selected="true"] { - margin-bottom: 0; - -moz-border-top-colors: -moz-Dialog; - padding: 4px 6px 1px 6px; -} - -.tab-bottom[beforeselected="true"] { - -moz-border-radius-bottomright: 0; -} - -.tab-bottom[afterselected="true"] { - -moz-border-radius-bottomleft: 0; -} - -/* ::::: tabs-bottom ::::: */ - -.tabs-bottom > .tabs-left, -.tabs-bottom > .tabs-right { - border-top: 1px solid ThreeDShadow; - border-bottom: none; -} - - \ No newline at end of file diff --git a/mozilla/toolkit/skin/win/textbox.css b/mozilla/toolkit/skin/win/textbox.css deleted file mode 100644 index 195287fdf2a..00000000000 --- a/mozilla/toolkit/skin/win/textbox.css +++ /dev/null @@ -1,87 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== textbox.css ================================================== - == Styles used by the XUL textbox element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); -@namespace html url("http://www.w3.org/1999/xhtml"); - -/* ::::: textbox ::::: */ - -textbox -{ - -moz-appearance: textfield; - cursor: text; - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - padding: 1px 0px 1px 2px; - background-color: -moz-Field; - color: -moz-FieldText; -} - -html|*.textbox-input, -html|*.textbox-textarea { - margin: 0px !important; - border: none !important; - padding: 0px !important; - background-color: inherit; - color: inherit; - font: inherit; -} - -/* ..... readonly state ..... */ - -textbox[readonly="true"] { - background-color: -moz-Dialog; - color: -moz-DialogText; -} - -/* ..... disabled state ..... */ - -textbox[disabled="true"] { - cursor: default; - background-color: -moz-Dialog; - color: GrayText; -} - -/* ::::: plain textbox ::::: */ - -textbox.plain { - -moz-appearance: none !important; - padding: 0px !important; - margin: 0px !important; - border: none !important; -} - -/* ::::: textboxes inside toolbarpaletteitems ::::: */ - -toolbarpaletteitem > toolbaritem > textbox > .textbox-input-box > html|*.textbox-input { - visibility: hidden; -} - diff --git a/mozilla/toolkit/skin/win/toolbar.css b/mozilla/toolkit/skin/win/toolbar.css deleted file mode 100644 index 479960f9063..00000000000 --- a/mozilla/toolkit/skin/win/toolbar.css +++ /dev/null @@ -1,116 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== toolbar.css ==================================================== - == Styles used by XUL toolbar-related elements. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: toolbox ::::: */ - -toolbox { - -moz-appearance: toolbox; - background-color: -moz-Dialog; -} - -/* ::::: toolbar & menubar ::::: */ - -toolbar, -menubar { - min-width: 1px; - min-height: 20px; - border-top: 1px solid ThreeDHighlight; - border-bottom: 1px solid ThreeDShadow; -} - -toolbar:first-child, menubar:first-child -{ - border-top: none; -} - -/* ::::: toolbar decorations ::::: */ - -toolbarseparator { - margin : 2px 0.2em; - border-right : 1px solid ThreeDHighlight; - border-left : 1px solid ThreeDShadow; - width : 2px; -} - -toolbarspacer { - width: 15px; -} - -/* ::::: toolbarpaletteitem ::::: */ - -toolbarpaletteitem { - cursor: -moz-grab; -} - -.toolbarpaletteitem-box[type="spacer"], -.toolbarpaletteitem-box[type="spring"] { - border: 1px solid ThreeDShadow; -} - -toolbarpaletteitem[place="toolbar"] { - margin-left: -2px; - margin-right: -2px; - border-left: 2px solid transparent; - border-right: 2px solid transparent; -} - -toolbarpaletteitem[place="toolbar"] > toolbarspacer { - width: 11px; -} - -.toolbarpaletteitem-box[type="spacer"][place="toolbar"], -.toolbarpaletteitem-box[type="spring"][place="toolbar"] { - margin: 2px 2px 2px 0; -} - -.toolbarpaletteitem-box[type="separator"][place="palette"] { - width: 2px; - height: 50px; -} - -.toolbarpaletteitem-box[type="spacer"][place="palette"], -.toolbarpaletteitem-box[type="spring"][place="palette"] { - margin-bottom: 2px; - width: 50px; - height: 50px; -} - -.toolbarpaletteitem-box[type="spring"][place="palette"] { - background: url("chrome://global/skin/toolbar/Flex.png") no-repeat center; -} - -/* ..... drag and drop feedback ..... */ - -toolbarpaletteitem[dragover="left"] { - border-left-color: #000000; -} - -toolbarpaletteitem[dragover="right"] { - border-right-color: #000000; -} diff --git a/mozilla/toolkit/skin/win/toolbar/Flex.png b/mozilla/toolkit/skin/win/toolbar/Flex.png deleted file mode 100644 index 4464be45083..00000000000 Binary files a/mozilla/toolkit/skin/win/toolbar/Flex.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/toolbar/Lighten.png b/mozilla/toolkit/skin/win/toolbar/Lighten.png deleted file mode 100644 index 26bcaef05fd..00000000000 Binary files a/mozilla/toolkit/skin/win/toolbar/Lighten.png and /dev/null differ diff --git a/mozilla/toolkit/skin/win/toolbar/chevron.gif b/mozilla/toolkit/skin/win/toolbar/chevron.gif deleted file mode 100644 index 186aac97645..00000000000 Binary files a/mozilla/toolkit/skin/win/toolbar/chevron.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/toolbar/spacer-lft.gif b/mozilla/toolkit/skin/win/toolbar/spacer-lft.gif deleted file mode 100644 index 3f2c5588df5..00000000000 Binary files a/mozilla/toolkit/skin/win/toolbar/spacer-lft.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/toolbar/spacer-rit.gif b/mozilla/toolkit/skin/win/toolbar/spacer-rit.gif deleted file mode 100644 index e15dbab2908..00000000000 Binary files a/mozilla/toolkit/skin/win/toolbar/spacer-rit.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/toolbarbutton.css b/mozilla/toolkit/skin/win/toolbarbutton.css deleted file mode 100644 index b6990e4f4d0..00000000000 --- a/mozilla/toolkit/skin/win/toolbarbutton.css +++ /dev/null @@ -1,139 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== toolbarbutton.css ===================================================== - == Styles used by the XUL button element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: toolbarbutton ::::: */ - -toolbarbutton { - -moz-appearance: toolbarbutton; - -moz-box-align: center; - -moz-box-pack: center; - margin: 0; - border: 1px solid transparent; - padding: 4px; - background-color: transparent; - color: -moz-DialogText; -} - -.toolbarbutton-icon { - margin-right: 2px; -} - -.toolbarbutton-text { - margin: 0 !important; - text-align: center; -} - -toolbarbutton:hover, -toolbarbutton[buttonover="true"] { - border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight; -#ifdef MOZ_WIDGET_GTK2 - color: -moz-gtk2-hovertext; -#endif -} - -toolbarbutton:hover:active, -toolbarbutton[open="true"] { - border-color: ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow; - padding: 5px 3px 3px 5px; -#ifdef MOZ_WIDGET_GTK2 - color: ButtonText; -#endif -} - -toolbarbutton[disabled="true"], -toolbarbutton[disabled="true"]:hover, -toolbarbutton[disabled="true"]:hover:active, -toolbarbutton[disabled="true"][open="true"] { - border-color: transparent; - padding: 4px; - color: GrayText; -} - -/* ..... checked state ..... */ - -toolbarbutton[checked="true"] { - border-color: ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow !important; - padding: 5px 3px 3px 5px !important; - background-image: url("chrome://global/skin/toolbar/Lighten.png"); - color: ButtonText !important; -} - -/* ::::: toolbarbutton menu ::::: */ - -.toolbarbutton-menu-dropmarker { - list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif"); - -moz-image-region: auto; /* cut off inheritance */ -} - -.toolbarbutton-menu-dropmarker[disabled="true"] { - list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif"); -} - -/* ::::: toolbarbutton menu-button ::::: */ - -toolbarbutton[type="menu-button"] { - -moz-box-align: stretch; - -moz-box-orient: horizontal !important; -} - -toolbarbutton[type="menu-button"], -toolbarbutton[type="menu-button"]:hover, -toolbarbutton[type="menu-button"]:hover:active, -toolbarbutton[type="menu-button"][open="true"], -toolbarbutton[type="menu-button"][disabled="true"], -toolbarbutton[type="menu-button"][disabled="true"]:hover, -toolbarbutton[type="menu-button"][disabled="true"]:hover:active { - border-style: none; - padding: 0; -} - -.toolbarbutton-menubutton-button { - -moz-box-align: center; - -moz-box-pack: center; - -moz-box-orient: vertical; -} - -/* .......... dropmarker .......... */ - -.toolbarbutton-menubutton-dropmarker { - -moz-box-align: center; - padding: 0 0 1px 0; - list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif"); - -moz-image-region: auto; /* cut off inheritance */ -} - -.toolbarbutton-menubutton-dropmarker[disabled="true"] { - padding: 0 0 1px 0 !important; - list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif") !important; -} - -toolbarbutton[type="menu-button"][open="true"] > .toolbarbutton-menubutton-dropmarker, -toolbarbutton[type="menu-button"][buttondown="true"] > .toolbarbutton-menubutton-dropmarker { - padding: 1px 0 0 0; -} diff --git a/mozilla/toolkit/skin/win/tree.css b/mozilla/toolkit/skin/win/tree.css deleted file mode 100644 index 9ab82708ba7..00000000000 --- a/mozilla/toolkit/skin/win/tree.css +++ /dev/null @@ -1,312 +0,0 @@ -/* - * The contents of this file are subject to the Netscape 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/NPL/ - * - * 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 Communicator client code, released - * March 31, 1998. - * - * The Initial Developer of the Original Code is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998-2001 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * Joe Hewitt (hewitt@netscape.com) - */ - -/* ===== tree.css =================================================== - == Styles used by the XUL outline element. - ======================================================================= */ - -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* ::::: tree ::::: */ - -tree { - margin: 0px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; - -moz-border-right-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; - background-color: -moz-Field; - color: -moz-FieldText; - -moz-appearance: listbox; -} - -/* ::::: tree rows ::::: */ - -treechildren::-moz-tree-row { - border: 1px solid transparent; - min-height: 18px; - height: 1.3em; -} - -treechildren::-moz-tree-row(selected) { - background-color: -moz-Dialog; -} - -treechildren::-moz-tree-row(selected, focus) { - background-color: Highlight; -} - -treechildren::-moz-tree-row(current, focus) { - border: 1px dotted #F5DB95; -} - -/* ::::: tree cells ::::: */ - -treechildren::-moz-tree-cell { - padding: 0px 2px 0px 2px; -} - -treechildren::-moz-tree-cell-text { - color: inherit; -} - -treechildren::-moz-tree-cell-text(selected) { - color: -moz-DialogText; -} - -treechildren::-moz-tree-cell-text(selected, focus) { - color: HighlightText; -} - - -/* ::::: lines connecting cells ::::: */ - -treechildren::-moz-tree-line { - border: 1px dotted ThreeDShadow; -} - -treechildren::-moz-tree-line(selected, focus) { - border: 1px dotted HighlightText; -} - - -/* ::::: tree separator ::::: */ - -treechildren::-moz-tree-separator { - border-top: 1px solid ThreeDShadow; - border-bottom: 1px solid ThreeDHighlight; -} - - -/* ::::: drop feedback ::::: */ - -treechildren::-moz-tree-cell-text(primary, dropOn) { - background-color: Highlight; - color: HighlightText; -} - -treechildren::-moz-tree-drop-feedback { - background-color: Highlight; - width: 50px; - height: 2px; - margin-left: 5px; -} - -/* ::::: tree progress meter ::::: */ - -treechildren::-moz-tree-progressmeter { - margin: 2px 4px; - border: 2px solid; - -moz-border-top-colors: ThreeDShadow -moz-Dialog; - -moz-border-right-colors: ThreeDHighlight -moz-Dialog; - -moz-border-bottom-colors: ThreeDHighlight -moz-Dialog; - -moz-border-left-colors: ThreeDShadow -moz-Dialog; - background-color: -moz-Dialog; - color: ThreeDShadow; -} - -treechildren::-moz-tree-progressmeter(progressUndetermined) { - list-style-image: url("chrome://global/skin/progressmeter/progressmeter-busy.gif"); -} - -treechildren::-moz-tree-cell-text(progressmeter) { - margin: 2px 4px; -} - -/* ::::: tree columns ::::: */ - -treecol, -treecolpicker { - -moz-appearance: treeheadercell; - -moz-box-align: center; - -moz-box-pack: center; - border: 2px solid; - -moz-border-top-colors: ThreeDHighlight ThreeDLightShadow; - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; - -moz-border-left-colors: ThreeDHighlight ThreeDLightShadow; - background-color: -moz-Dialog; - color: -moz-DialogText; - padding: 1px 4px 0px 5px; -} - -.treecol-image { - padding: 1px 1px 0px 2px; -} - -.treecol-text { - margin: 0px !important; -} - -treecol[hideheader="true"] { - -moz-appearance: none; - border: none; - padding: 0; -} - -/* ..... internal box ..... */ - -treecol:hover:active, -treecolpicker:hover:active { - border-top: 2px solid; - border-right: 1px solid; - border-bottom: 1px solid; - border-left: 2px solid; - -moz-border-top-colors: ThreeDShadow -moz-Dialog; - -moz-border-right-colors: ThreeDShadow; - -moz-border-bottom-colors: ThreeDShadow; - -moz-border-left-colors: ThreeDShadow -moz-Dialog; -} - -/* ::::: column drag and drop styles ::::: */ - -treecol[dragging="true"] { - -moz-border-top-colors: ThreeDDarkShadow transparent !important; - -moz-border-right-colors: ThreeDDarkShadow transparent!important; - -moz-border-bottom-colors: ThreeDDarkShadow transparent !important; - -moz-border-left-colors: ThreeDDarkShadow transparent !important; - background-color: ThreeDShadow !important; - color: ThreeDHighlight !important; -} - -treecol[insertafter="true"] { - -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; -} - -treecol[insertbefore="true"] { - -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow; -} - -treechildren::-moz-tree-column(insertbefore) { - border-left: 1px solid ThreeDShadow; -} - -treechildren::-moz-tree-column(insertafter) { - border-right: 1px solid ThreeDShadow; -} - -/* ::::: sort direction indicator ::::: */ - -.treecol-sortdirection { - list-style-image: none; -} - -treecol:not([hideheader="true"]) > .treecol-sortdirection[sortDirection="ascending"] { - list-style-image: url("chrome://global/skin/tree/sort-asc.gif"); -} - -treecol:not([hideheader="true"]) > .treecol-sortdirection[sortDirection="descending"] { - list-style-image: url("chrome://global/skin/tree/sort-dsc.gif"); -} - -/* ::::: column picker ::::: */ - -.tree-columnpicker-icon { - list-style-image: url("chrome://global/skin/tree/columnpicker.gif"); -} - -/* ::::: twisty ::::: */ - -treechildren::-moz-tree-twisty { - padding-right: 4px; - padding-top: 1px; - width: 9px; /* The image's width is 9 pixels */ - list-style-image: url("chrome://global/skin/tree/twisty-clsd.gif"); -} - -treechildren::-moz-tree-twisty(open) { - width: 9px; /* The image's width is 9 pixels */ - list-style-image: url("chrome://global/skin/tree/twisty-open.gif"); -} - -treechildren::-moz-tree-indentation { - width: 18px; -} - -/* ::::: gridline style ::::: */ - -treechildren.gridlines::-moz-tree-cell { - border-right: 1px solid GrayText; - border-bottom: 1px solid GrayText; -} - -treechildren.gridlines::-moz-tree-row { - border: none; -} - -treechildren::-moz-tree-image(Name) { - padding-right: 2px; -} - -treechildren::-moz-tree-image(Name) { - margin: 0px 2px; - list-style-image: url("chrome://global/skin/icons/folder-item.png") !important; - -moz-image-region: rect(0px, 16px, 16px, 0px); -} - -treechildren::-moz-tree-image(Name, container) { - -moz-image-region: rect(0px, 32px, 16px, 16px); -} - -treechildren::-moz-tree-image(Name, open) { - -moz-image-region: rect(16px, 32px, 32px, 16px); -} - -treechildren::-moz-tree-image(Name, separator) { - list-style-image: none; - width: 0px !important; - height: 0px !important; - margin: 0px 0px; -} - -treechildren::-moz-tree-cell-text(Name, separator) { - color: ThreeDShadow; - margin: 0px 5px 0px 5px; -} - -treechildren::-moz-tree-cell-text(Name, separator, selected, focus) { - color: HighlightText; -} - -/* ::::: alternating background ::::: */ - -treechildren[alternatingbackground="true"]::-moz-tree-row(odd) { - background-color: #f3f3f3; -} - -treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected) { - background-color: -moz-Dialog; -} - -treechildren[alternatingbackground="true"]::-moz-tree-cell-text(odd, selected) { - color: -moz-DialogText; -} - -treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected, focus) { - background-color: Highlight; -} - -treechildren[alternatingbackground="true"]::-moz-tree-cell-text(odd, selected, focus) { - color: HighlightText; -} diff --git a/mozilla/toolkit/skin/win/tree/columnpicker.gif b/mozilla/toolkit/skin/win/tree/columnpicker.gif deleted file mode 100644 index 88c13a0b22e..00000000000 Binary files a/mozilla/toolkit/skin/win/tree/columnpicker.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/tree/sort-asc.gif b/mozilla/toolkit/skin/win/tree/sort-asc.gif deleted file mode 100644 index 5e13c7398f1..00000000000 Binary files a/mozilla/toolkit/skin/win/tree/sort-asc.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/tree/sort-dsc.gif b/mozilla/toolkit/skin/win/tree/sort-dsc.gif deleted file mode 100644 index fa957ac1e75..00000000000 Binary files a/mozilla/toolkit/skin/win/tree/sort-dsc.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/tree/twisty-clsd.gif b/mozilla/toolkit/skin/win/tree/twisty-clsd.gif deleted file mode 100644 index 19ed5f509cf..00000000000 Binary files a/mozilla/toolkit/skin/win/tree/twisty-clsd.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/tree/twisty-open.gif b/mozilla/toolkit/skin/win/tree/twisty-open.gif deleted file mode 100644 index 57303ea5d12..00000000000 Binary files a/mozilla/toolkit/skin/win/tree/twisty-open.gif and /dev/null differ diff --git a/mozilla/toolkit/skin/win/wizard.css b/mozilla/toolkit/skin/win/wizard.css deleted file mode 100644 index 71ea76a677e..00000000000 --- a/mozilla/toolkit/skin/win/wizard.css +++ /dev/null @@ -1,38 +0,0 @@ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -.wizard-header { - border-bottom: 2px groove ThreeDFace; - padding: 10px 0px 10px 0px; - background-color: Window; - color: WindowText; -} - -.wizard-header-label { - margin-left: 23px; - font-weight: bold; -} - -.wizard-header-description { - margin-left: 44px; -} - -.wizard-page-box { - margin: 10px 44px; -} - -.wizard-buttons-separator { - margin-bottom: 0px !important; -} - -.wizard-buttons-box-2 { - margin: 10px; -} - -.wizard-button[wizardbutton="finish"], -.wizard-button[wizardbutton="next"] { - margin-left: -1px !important; -} - -.wizard-button[wizardbutton="back"] { - margin-right: 0px !important; -}