From 0c2ff85ce528cbd3ee054edc4ee44d37f79fc0a3 Mon Sep 17 00:00:00 2001 From: robert Date: Fri, 22 Mar 2002 09:49:03 +0000 Subject: [PATCH] remove forms stuff, all of mozilla relies on this via Classic for now --- EarlyBlue/contents.rdf | 2 - EarlyBlue/forms/button.css | 115 --------------------------- EarlyBlue/forms/checkbox.css | 66 ---------------- EarlyBlue/forms/forms.css | 47 ----------- EarlyBlue/forms/select-dropdown.css | 116 ---------------------------- EarlyBlue/forms/select.css | 99 ------------------------ LCARStrek/forms/button.css | 115 --------------------------- LCARStrek/forms/checkbox.css | 66 ---------------- LCARStrek/forms/forms.css | 47 ----------- LCARStrek/forms/select-dropdown.css | 116 ---------------------------- LCARStrek/forms/select.css | 99 ------------------------ 11 files changed, 888 deletions(-) delete mode 100644 EarlyBlue/forms/button.css delete mode 100644 EarlyBlue/forms/checkbox.css delete mode 100644 EarlyBlue/forms/forms.css delete mode 100644 EarlyBlue/forms/select-dropdown.css delete mode 100644 EarlyBlue/forms/select.css delete mode 100644 LCARStrek/forms/button.css delete mode 100644 LCARStrek/forms/checkbox.css delete mode 100644 LCARStrek/forms/forms.css delete mode 100644 LCARStrek/forms/select-dropdown.css delete mode 100644 LCARStrek/forms/select.css diff --git a/EarlyBlue/contents.rdf b/EarlyBlue/contents.rdf index cae82f0d..9695df9e 100644 --- a/EarlyBlue/contents.rdf +++ b/EarlyBlue/contents.rdf @@ -23,7 +23,6 @@ - @@ -34,5 +33,4 @@ - diff --git a/EarlyBlue/forms/button.css b/EarlyBlue/forms/button.css deleted file mode 100644 index 91b7f33a..00000000 --- a/EarlyBlue/forms/button.css +++ /dev/null @@ -1,115 +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.w3.org/1999/xhtml); -@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* :::::::::: button :::::::::: */ - -button, -input[type="button"], -input[type="submit"], -input[type="reset"] { - /* -moz-appearance: button; */ - margin: 1px 5px 2px 5px; - 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; -} - -xul|*.button-box { - border: 1px solid transparent; - padding: 0px 4px 1px 3px; -} - -xul|*.button-box-text { - margin: 0 !important; - text-align: center; -} - -/* .......... active/open/checked state .......... */ - -button:hover:active, -input[type="button"]:hover:active, -input[type="submit"]:hover:active, -input[type="reset"]:hover:active { - -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; -} - -button:hover:active > xul|*.button-box, -input[type="button"]:hover:active > xul|*.button-box, -input[type="submit"]:hover:active > xul|*.button-box, -input[type="reset"]:hover:active > xul|*.button-box { - padding: 1px 3px 0px 4px; -} - -/* .......... focused state .......... */ - -button:focus, -input[type="button"]:focus, -input[type="submit"]:focus, -input[type="reset"]: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 > xul|*.button-box, -input[type="button"]:focus > xul|*.button-box, -input[type="submit"]:focus > xul|*.button-box, -input[type="reset"]:focus > xul|*.button-box { - border: 1px dotted ThreeDDarkShadow; -} - -/* .......... disabled state .......... */ - -button[disabled="true"], -input[type="button"][disabled="true"], -input[type="submit"][disabled="true"], -input[type="reset"][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"] > xul|*.button-box, -input[type="button"][disabled="true"] > xul|*.button-box, -input[type="submit"][disabled="true"] > xul|*.button-box, -input[type="reset"][diasbled="true"] > xul|*.button-box { - padding: 0px 4px 1px 3px !important; -} - diff --git a/EarlyBlue/forms/checkbox.css b/EarlyBlue/forms/checkbox.css deleted file mode 100644 index 85c7fea3..00000000 --- a/EarlyBlue/forms/checkbox.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-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -/* ===== checkbox.css =================================================== - == Styles used by the XUL checkbox element. - ======================================================================= */ - -@namespace url(http://www.w3.org/1999/xhtml); - -/* ::::: checkbox ::::: */ - -input[type="checkbox"] { - -moz-appearance: checkbox; - -moz-box-align: center; - border: 2px solid; - padding-left: 1px; - padding-right: 1px; - -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%; -} - -input[type="checkbox"]:hover:active { - background-color: -moz-Dialog; -} - -/* ..... disabled state ..... */ - -input[type="checkbox"][disabled="true"] { - background-color: -moz-Dialog; -} - -/* ..... checked state ..... */ - -input[type="checkbox"]:checked { - list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif"); -} - -input[type="checkbox"][disabled="true"]:checked { - list-style-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif") !important -} - diff --git a/EarlyBlue/forms/forms.css b/EarlyBlue/forms/forms.css deleted file mode 100644 index 64178c41..00000000 --- a/EarlyBlue/forms/forms.css +++ /dev/null @@ -1,47 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * 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 ***** */ - -/* This file contains skin-specific rules for HTML form controls */ - -/* xbl-forms.css contains the XBL bindings common to all skins */ -@import url("chrome://forms/content/xbl-forms.css"); - -@import url("chrome://forms/skin/select.css"); -@import url("chrome://forms/skin/select-dropdown.css"); -@import url("chrome://forms/skin/checkbox.css"); -@import url("chrome://forms/skin/button.css"); - diff --git a/EarlyBlue/forms/select-dropdown.css b/EarlyBlue/forms/select-dropdown.css deleted file mode 100644 index 7bbd75fc..00000000 --- a/EarlyBlue/forms/select-dropdown.css +++ /dev/null @@ -1,116 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * 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 ***** */ - -@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */ -@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/** - Widget - **/ - -select[size] { - border: 2px inset ThreeDFace; - margin: 0; - min-height: none; - color: inherit; - -moz-appearance: treeview; -} - -xul|*.select-outlinerbody:-moz-outliner-row { - -moz-apperance: treeitem; - border: 1px solid transparent; -} - -xul|*.select-outlinercol { - margin: 0px !important; - border: none !important; - padding: 0px !important; -} - -/* ::::: outliner rows ::::: */ - -xul|*.select-outlinerbody:-moz-outliner-row { - border: 1px solid transparent; - height: 18px; -} - -xul|*.select-outlinerbody:-moz-outliner-row(selected) { - background-color: -moz-Dialog; -} - -xul|*.select-outlinerbody:-moz-outliner-row(selected, focus) { - background-color: Highlight; -} - -xul|*.select-outlinerbody:-moz-outliner-row(current, focus) { - border: 1px dotted #F5DB95; -} - -/* ::::: outliner cells ::::: */ - -xul|*.select-outlinerbody:-moz-outliner-cell { - padding: 0px 0px 0px 2px; -} - -xul|*.select-outlinerbody:-moz-outliner-cell-text { - color: inherit; -} - -xul|*.select-outlinerbody:-moz-outliner-cell-text(selected) { - color: -moz-DialogText; -} - -xul|*.select-outlinerbody:-moz-outliner-cell-text(selected, focus) { - color: HighlightText; -} diff --git a/LCARStrek/forms/button.css b/LCARStrek/forms/button.css deleted file mode 100644 index 91b7f33a..00000000 --- a/LCARStrek/forms/button.css +++ /dev/null @@ -1,115 +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.w3.org/1999/xhtml); -@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/* :::::::::: button :::::::::: */ - -button, -input[type="button"], -input[type="submit"], -input[type="reset"] { - /* -moz-appearance: button; */ - margin: 1px 5px 2px 5px; - 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; -} - -xul|*.button-box { - border: 1px solid transparent; - padding: 0px 4px 1px 3px; -} - -xul|*.button-box-text { - margin: 0 !important; - text-align: center; -} - -/* .......... active/open/checked state .......... */ - -button:hover:active, -input[type="button"]:hover:active, -input[type="submit"]:hover:active, -input[type="reset"]:hover:active { - -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; -} - -button:hover:active > xul|*.button-box, -input[type="button"]:hover:active > xul|*.button-box, -input[type="submit"]:hover:active > xul|*.button-box, -input[type="reset"]:hover:active > xul|*.button-box { - padding: 1px 3px 0px 4px; -} - -/* .......... focused state .......... */ - -button:focus, -input[type="button"]:focus, -input[type="submit"]:focus, -input[type="reset"]: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 > xul|*.button-box, -input[type="button"]:focus > xul|*.button-box, -input[type="submit"]:focus > xul|*.button-box, -input[type="reset"]:focus > xul|*.button-box { - border: 1px dotted ThreeDDarkShadow; -} - -/* .......... disabled state .......... */ - -button[disabled="true"], -input[type="button"][disabled="true"], -input[type="submit"][disabled="true"], -input[type="reset"][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"] > xul|*.button-box, -input[type="button"][disabled="true"] > xul|*.button-box, -input[type="submit"][disabled="true"] > xul|*.button-box, -input[type="reset"][diasbled="true"] > xul|*.button-box { - padding: 0px 4px 1px 3px !important; -} - diff --git a/LCARStrek/forms/checkbox.css b/LCARStrek/forms/checkbox.css deleted file mode 100644 index 85c7fea3..00000000 --- a/LCARStrek/forms/checkbox.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-1999 Netscape Communications Corporation. All - * Rights Reserved. - * - * Contributor(s): - * - */ - -/* ===== checkbox.css =================================================== - == Styles used by the XUL checkbox element. - ======================================================================= */ - -@namespace url(http://www.w3.org/1999/xhtml); - -/* ::::: checkbox ::::: */ - -input[type="checkbox"] { - -moz-appearance: checkbox; - -moz-box-align: center; - border: 2px solid; - padding-left: 1px; - padding-right: 1px; - -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%; -} - -input[type="checkbox"]:hover:active { - background-color: -moz-Dialog; -} - -/* ..... disabled state ..... */ - -input[type="checkbox"][disabled="true"] { - background-color: -moz-Dialog; -} - -/* ..... checked state ..... */ - -input[type="checkbox"]:checked { - list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif"); -} - -input[type="checkbox"][disabled="true"]:checked { - list-style-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif") !important -} - diff --git a/LCARStrek/forms/forms.css b/LCARStrek/forms/forms.css deleted file mode 100644 index 64178c41..00000000 --- a/LCARStrek/forms/forms.css +++ /dev/null @@ -1,47 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * 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 ***** */ - -/* This file contains skin-specific rules for HTML form controls */ - -/* xbl-forms.css contains the XBL bindings common to all skins */ -@import url("chrome://forms/content/xbl-forms.css"); - -@import url("chrome://forms/skin/select.css"); -@import url("chrome://forms/skin/select-dropdown.css"); -@import url("chrome://forms/skin/checkbox.css"); -@import url("chrome://forms/skin/button.css"); - diff --git a/LCARStrek/forms/select-dropdown.css b/LCARStrek/forms/select-dropdown.css deleted file mode 100644 index 7bbd75fc..00000000 --- a/LCARStrek/forms/select-dropdown.css +++ /dev/null @@ -1,116 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * 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 ***** */ - -@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */ -@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); - -/** - Widget - **/ - -select[size] { - border: 2px inset ThreeDFace; - margin: 0; - min-height: none; - color: inherit; - -moz-appearance: treeview; -} - -xul|*.select-outlinerbody:-moz-outliner-row { - -moz-apperance: treeitem; - border: 1px solid transparent; -} - -xul|*.select-outlinercol { - margin: 0px !important; - border: none !important; - padding: 0px !important; -} - -/* ::::: outliner rows ::::: */ - -xul|*.select-outlinerbody:-moz-outliner-row { - border: 1px solid transparent; - height: 18px; -} - -xul|*.select-outlinerbody:-moz-outliner-row(selected) { - background-color: -moz-Dialog; -} - -xul|*.select-outlinerbody:-moz-outliner-row(selected, focus) { - background-color: Highlight; -} - -xul|*.select-outlinerbody:-moz-outliner-row(current, focus) { - border: 1px dotted #F5DB95; -} - -/* ::::: outliner cells ::::: */ - -xul|*.select-outlinerbody:-moz-outliner-cell { - padding: 0px 0px 0px 2px; -} - -xul|*.select-outlinerbody:-moz-outliner-cell-text { - color: inherit; -} - -xul|*.select-outlinerbody:-moz-outliner-cell-text(selected) { - color: -moz-DialogText; -} - -xul|*.select-outlinerbody:-moz-outliner-cell-text(selected, focus) { - color: HighlightText; -} -- 2.35.3