fix some parsing errors etc. and make new HTML-based buttons with ::before work in...
[themes.git] / LCARStrek / global / listbox.css
index e2e5016599e1d32f3b3dbeb20e6bfb509bed790f..5bc4be856107eee29abff4e43eb4c575b1f980c1 100644 (file)
@@ -1,27 +1,6 @@
-/*
- * 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)
- *   Dean Tessman (dean_tessman@hotmail.com)
- *   Robert Kaiser <KaiRo@KaiRo.at>
- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 /* ===== listbox.css =======================================================
   == Styles used by XUL listbox-related elements.
@@ -49,38 +28,57 @@ listbox[disabled="true"] {
 
 listitem {
   border: 1px solid transparent;
+
+  --listitem-selectedColor: #000000;
+  --listitem-selectedBackground: #008484;
+  --listitem-selectedFocusColor: #FFCF00;
+  --listitem-selectedFocusBackground: var(--listitem-selectedBackground);
+  --listitem-focusCurrentBorder: #FF9F00;
+  --listitem-selectedFocusCurrentBorder: var(--listitem-focusCurrentBorder);
 }
 
 listbox:-moz-focusring > listitem[current="true"] {
-  border: 1px dotted #FF9F00;
+  border: 1px dotted var(--listitem-focusCurrentBorder);
 }
 
 listbox:-moz-focusring > listitem[current="true"][selected="true"] {
-  border: 1px dotted #FF9F00;
+  border: 1px dotted var(--listitem-selectedFocusCurrentBorder);
 }
 
 listitem[selected="true"] {
-  background-color: #008484;
-  color: #000000;
+  background-color: var(--listitem-selectedBackground);
+  color: var(--listitem-selectedColor);
 }
 
 listbox:focus > listitem[selected="true"] {
-  background-color: #008484;
-  color: #FFCF00;
+  background-color: var(--listitem-selectedFocusBackground);
+  color: var(--listitem-selectedFocusColor);
 }
 
 /* ::::: listheader ::::: */
 
 listheader {
   -moz-box-align: center;
-  border: 1px solid #FFCF00;
+  border: 1px solid #FF9F00;
+  border-top-left-radius: 3px;
+  border-top-right-radius: 3px;
   background-color: #9C9CFF;
   color: #000000;
-  padding: 0 4px;
+  padding: 0;
+}
+
+listheader > treecol {
+  -moz-border-start: none;
+  border-top: none;
+  border-bottom: none;
+}
+
+listheader > treecol:last-child {
+  -moz-border-end: none;
 }
 
 listheader[sortable="true"]:hover:active {
-  border: 1px solid #FFCF00;
+  border: 1px solid #FF9F00;
   padding-top: 1px;
   padding-bottom: 0px;
   -moz-padding-start: 5px;
@@ -92,7 +90,7 @@ listheader[sortable="true"]:hover:active {
 }
 
 .listheader-label {
-  margin: 0px !important;
+  margin: 0 4px !important;
 }
 
 /* ..... sort direction icon ..... */
@@ -139,3 +137,19 @@ listheader[sortable="true"]:hover:active {
   min-height: 12px;
   background: #000000 no-repeat 50% 50%;
 }
+
+.listcell-check[checked="true"] {
+  background-image: url("chrome://global/skin/checkbox/cbox-check.gif");
+}
+
+listitem[type="checkbox"]:hover .listcell-check[checked="true"] {
+  background-image: url("chrome://global/skin/checkbox/cbox-check-hover.gif");
+}
+
+listitem[type="checkbox"]:hover .listcell-check {
+  border-color: #FFCF00;
+}
+
+listitem[type="checkbox"]:hover .listcell-label {
+  color: #FFCF00;
+}