/* 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. ======================================================================= */ @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* ::::: listbox ::::: */ listbox { margin: 1px 2px; padding: 0px; border: 1px inset #CCD0DD; background-color: #FFFFFF; color: #000000; } listbox[disabled="true"] { color: #CCCCCC; } /* ::::: listitem ::::: */ listitem { border: 1px solid transparent; --listitem-selectedColor: #FFFFFF; --listitem-selectedBackground: #808080; --listitem-selectedFocusColor: var(--listitem-selectedColor); --listitem-selectedFocusBackground: #336699; --listitem-focusCurrentBorder: #6666CC; --listitem-selectedFocusCurrentBorder: #666699; } listbox:-moz-focusring > listitem[current="true"] { border: 1px dotted var(--listitem-focusCurrentBorder); } listbox:-moz-focusring > listitem[current="true"][selected="true"] { border: 1px dotted var(--listitem-selectedFocusCurrentBorder); } listitem[selected="true"] { background-color: var(--listitem-selectedBackground); color: var(--listitem-selectedColor); } listbox:focus > listitem[selected="true"] { background-color: var(--listitem-selectedFocusBackground); color: var(--listitem-selectedFocusColor); } /* ::::: listheader ::::: */ listheader { -moz-box-align: center; border: 1px outset #CCD0DD; background-color: #CCD0DD; color: #000000; padding: 0 4px; } listheader[sortable="true"]:hover:active { border: 1px outset #CCD0DD; padding-top: 1px; padding-bottom: 0px; padding-inline-start: 5px; padding-inline-end: 4px; } .listheader-icon { margin-inline-end: 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-desc.gif"); } /* ::::: listcell ::::: */ .listcell-label { margin: 0px !important; padding-top: 0px; padding-bottom: 1px; padding-inline-start: 4px; padding-inline-end: 0px; white-space: nowrap; } .listcell-icon { margin-inline-end: 2px; } .listcell-label[disabled="true"] { color: #808080; } /* ::::: listcell checkbox ::::: */ .listcell-check { -moz-box-align: center; margin: 0px 2px; border: 1px solid #CCD0DD; padding: 2px; min-width: 12px; min-height: 12px; background: #FFFFFF no-repeat 50% 50%; } .listcell-check[checked="true"] { background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); }