removing additional directory structure, moving contents.rdf and preview.png to top...
[themes.git] / LCARStrek / skin / LCARStrek / global / button.css
diff --git a/LCARStrek/skin/LCARStrek/global/button.css b/LCARStrek/skin/LCARStrek/global/button.css
deleted file mode 100644 (file)
index 42a13cc..0000000
+++ /dev/null
@@ -1,196 +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 "Classic" theme of mozilla.org code.
- *
- * The Initial Developer of the Original Code is
- * the Mozilla Organization.
- * Portions created by the Initial Developer are Copyright (C) 1998-2001
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- *   Robert Kaiser <KaiRo@KaiRo.at>
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either the GNU General Public License Version 2 or later (the "GPL"), or
- * 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.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
-
-/* NEW WIDGET ANDING: <button> */
-
-/** Default Button Styles (apply to usage of <button> without 
- *  any applied class).
- **/
-
-/* outer frame */
-  button
-    {
-      -moz-border-radius  : 3px;
-      border              : none;
-      margin              : 1px 5px 2px 5px;
-      min-width           : 6em;
-      background-color    : #000000;
-      color               : #FFCF00;
-      -moz-user-focus     : normal;
-    }
-  
-  .button-text {
-    margin: 0px !important;
-    text-align: center;
-  }
-
-  button[disabled="true"], 
-  button[disabled="true"][default],
-  button[disabled="true"]:hover,
-  button[disabled="true"]:hover:active
-    {
-      border              : none;
-      background-color    : #000000;
-      color               : #8050B0;
-    }
-
-  .button-box,
-  button[disabled="true"][default] > .button-box,
-  button[disabled="true"]:hover:active > .button-box
-    {
-      -moz-border-radius  : 3px;
-      border              : none;
-      -moz-user-focus     : none;
-    }
-
-  .button-box-2,
-  button[disabled="true"][default] > .button-box > .button-box-2,
-  button[disabled="true"]:hover:active > .button-box > .button-box-2
-    {
-                       border              : none;     
-    }
-  
-  button:hover,
-  button:hover:active,
-  button[open="true"],
-  button[checked="true"]
-    {
-      border              : none;
-      background-color    : #FFCF00;
-      color               : #000000;
-    }
-
-  button:hover:active > .button-box,
-  button[checked="true"] > .button-box,
-  button[checked="true"]:focus > .button-box,
-  button[open="true"] > .button-box,
-  button[open="true"]:focus > .button-box
-    {
-      border              : none;
-    }
-
-  button:hover:active > .button-box > .button-box-2,
-  button[checked="true"] > .button-box > .button-box-2,
-  button[checked="true"]:focus> .button-box > .button-box-2,
-  button[open="true"] > .button-box > .button-box-2,
-  button[open="true"]:focus > .button-box > .button-box-2
-    {
-      border              : none;
-    }
-
-  button:hover:active > .button-box > .button-box-2 > .button-box-text,
-  button[open="true"] > .button-box > .button-box-2 > .button-box-text
-    {
-      padding             : 1px 2px 0px 3px; 
-    }
-  
-  button[disabled="true"] > .button-box > .button-box-2 > .button-box-text,
-  button[disabled="true"]:hover:active > .button-box > .button-box-2 > .button-box-text
-    {
-      padding             : 0px 3px 1px 2px;
-    }
-
-/* text wrapping frame (hack because <text> does not support alignment) */
-  .button-box-text,
-  button[disabled]:focus > .button-box > .button-box-2 > .button-box-text
-    {
-      padding             : 0px 3px 1px 2px;
-      margin              : 1px;
-    }
-
-/** Styles for "DEFAULT" buttons (usually 'OK' or equivalent in dialogs. 
- *  To activate, set 'default' attribute on button.
- **/
-/* outer frame */  
-  button[default], button:focus
-    {
-      border              : none;
-    }
-
-  button[default] > .button-box > .button-box-2 > .button-box-text
-    {
-      font-weight         : bold;
-      list-style-image    : url("chrome://global/skin/return.gif");
-      -moz-box-direction  : reverse;
-    }
-
-  button[default]:hover > .button-box > .button-box-2 > .button-box-text
-    {
-      list-style-image    : url("chrome://global/skin/return-hover.gif");
-    }
-
-  button[default][disabled="true"] > .button-box > .button-box-2 > .button-box-text,
-  button[default][disabled="true"]:hover > .button-box > .button-box-2 > .button-box-text
-    {
-      list-style-image    : url("chrome://global/skin/return-disabled.gif");
-    }
-
-/* ::::: menu-button buttons ::::: */
-
-button[type="menu-button"] {
-  margin: 0px !important;
-  border: none !important;
-}
-
-.menu-button-dropmarker {
-  list-style-image: url("chrome://global/skin/scroll-down.gif");
-}
-
-.menu-button-dropmarker:hover {
-  list-style-image: url("chrome://global/skin/scroll-down-hover.gif");
-}
-
-.menu-button-dropmarker[disabled="true"],
-.menu-button-dropmarker[disabled="true"]:hover {
-  list-style-image: url("chrome://global/skin/scroll-down-disabled.gif");
-}
-
-/* ::::: plain buttons ::::: */
-
-button.plain, 
-button.plain:hover,
-button.plain:hover:active,
-button.plain > .button-box, 
-button.plain:hover > .button-box, 
-button.plain:hover:active > .button-box {
-  border: 0px ! important;
-  margin: 0px;
-  padding: 0px;
-}