remove forms stuff, all of mozilla relies on this via Classic for now
authorrobert <robert>
Fri, 22 Mar 2002 09:49:03 +0000 (09:49 +0000)
committerrobert <robert>
Fri, 22 Mar 2002 09:49:03 +0000 (09:49 +0000)
EarlyBlue/contents.rdf
EarlyBlue/forms/button.css [deleted file]
EarlyBlue/forms/checkbox.css [deleted file]
EarlyBlue/forms/forms.css [deleted file]
EarlyBlue/forms/select-dropdown.css [deleted file]
EarlyBlue/forms/select.css [deleted file]
LCARStrek/forms/button.css [deleted file]
LCARStrek/forms/checkbox.css [deleted file]
LCARStrek/forms/forms.css [deleted file]
LCARStrek/forms/select-dropdown.css [deleted file]
LCARStrek/forms/select.css [deleted file]

index cae82f0d6e04080fd11bf51bf830081623ad7de7..9695df9e09a45e96d13d17a6041b2ae0bdcab786 100644 (file)
@@ -23,7 +23,6 @@
         <RDF:li resource="urn:mozilla:skin:EarlyBlue/0.9:navigator"/>
         <RDF:li resource="urn:mozilla:skin:EarlyBlue/0.9:messenger"/>
         <RDF:li resource="urn:mozilla:skin:EarlyBlue/0.9:editor"/>
-        <RDF:li resource="urn:mozilla:skin:EarlyBlue/0.9:forms"/>
       </RDF:Seq>
     </chrome:packages>
   </RDF:Description>
@@ -34,5 +33,4 @@
   <RDF:Description about="urn:mozilla:skin:EarlyBlue/0.9:navigator" chrome:skinVersion="1.0"/>
   <RDF:Description about="urn:mozilla:skin:EarlyBlue/0.9:messenger" chrome:skinVersion="1.0"/>
   <RDF:Description about="urn:mozilla:skin:EarlyBlue/0.9:editor" chrome:skinVersion="1.0"/>
-  <RDF:Description about="urn:mozilla:skin:EarlyBlue/0.9:forms" chrome:skinVersion="1.0"/>
 </RDF:RDF>
diff --git a/EarlyBlue/forms/button.css b/EarlyBlue/forms/button.css
deleted file mode 100644 (file)
index 91b7f33..0000000
+++ /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 (file)
index 85c7fea..0000000
+++ /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 (file)
index 64178c4..0000000
+++ /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 <bryner@netscape.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 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 (file)
index 7bbd75f..0000000
+++ /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 <bryner@netscape.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 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");
-
-/**
- <select size=1/> Widget
- **/
-
-select, select[size="1"] {
-  /*-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;
-}
-
-xul|*.select-label-box {
-  -moz-box-align: center;
-  -moz-box-pack: center;
-  margin: 1px;
-  border: 1px solid transparent;
-}
-
-xul|*.select-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");
-}
-
-xul|*.select-dropmarker,
-select[disabled="true"]:hover:active > xul|*.select-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;
-}
-
-select[disable="true"] > xul|*.select-dropmarker {
-  list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
-}
-
-select:hover:active > xul|*.select-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;
-}
-
-select:focus > xul|*.select-label-box {
-  border: 1px dotted #F5DB95;
-  background-color: Highlight;
-  color: HighlightText;
-}
-
-/* ..... disabled state ..... */
-select[disabled="true"] {
-  background-color: -moz-Dialog;
-  color: GrayText;
-}
-
-option:hover {
-  background-color: #424F63;
-  color: #FFFFFF;
-}
-
-option {
-  padding-right: 17px;
-  padding-left: 11px;
-}
diff --git a/EarlyBlue/forms/select.css b/EarlyBlue/forms/select.css
deleted file mode 100644 (file)
index 2e7b206..0000000
+++ /dev/null
@@ -1,99 +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 <bryner@netscape.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 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");
-
-/**
- <select/> 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 (file)
index 91b7f33..0000000
+++ /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 (file)
index 85c7fea..0000000
+++ /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 (file)
index 64178c4..0000000
+++ /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 <bryner@netscape.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 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 (file)
index 7bbd75f..0000000
+++ /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 <bryner@netscape.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 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");
-
-/**
- <select size=1/> Widget
- **/
-
-select, select[size="1"] {
-  /*-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;
-}
-
-xul|*.select-label-box {
-  -moz-box-align: center;
-  -moz-box-pack: center;
-  margin: 1px;
-  border: 1px solid transparent;
-}
-
-xul|*.select-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");
-}
-
-xul|*.select-dropmarker,
-select[disabled="true"]:hover:active > xul|*.select-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;
-}
-
-select[disable="true"] > xul|*.select-dropmarker {
-  list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
-}
-
-select:hover:active > xul|*.select-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;
-}
-
-select:focus > xul|*.select-label-box {
-  border: 1px dotted #F5DB95;
-  background-color: Highlight;
-  color: HighlightText;
-}
-
-/* ..... disabled state ..... */
-select[disabled="true"] {
-  background-color: -moz-Dialog;
-  color: GrayText;
-}
-
-option:hover {
-  background-color: #424F63;
-  color: #FFFFFF;
-}
-
-option {
-  padding-right: 17px;
-  padding-left: 11px;
-}
diff --git a/LCARStrek/forms/select.css b/LCARStrek/forms/select.css
deleted file mode 100644 (file)
index 2e7b206..0000000
+++ /dev/null
@@ -1,99 +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 <bryner@netscape.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 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");
-
-/**
- <select/> 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;
-}