/* ***** 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 * * 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"); /* ===== outliner.css =================================================== == Styles used by the XUL outline element. ======================================================================= */ /* ::::: outliner ::::: */ outliner { -moz-border-radius: 5px; border-spacing: 0px; border: 1px solid #9C9CFF; background-color: #000000; color: #FF9F00; } /* ::::: outliner rows ::::: */ outlinerchildren:-moz-outliner-row { border: 1px solid transparent; height: 18px; } outlinerchildren:-moz-outliner-row(selected) { background-color: #008484; color: #FFCF00; } outlinerchildren:-moz-outliner-row(selected, focus) { background-color: #008484; color: #FFCF00; } outlinerchildren:-moz-outliner-row(current, focus) { border: 1px dotted #008484; } /* ::::: outliner cells ::::: */ outlinerchildren:-moz-outliner-cell { padding: 0px 0px 1px 2px; } outlinerchildren:-moz-outliner-cell-text { color: inherit; border: 2px solid transparent; } /* outlinerchildren:-moz-outliner-cell-text(selected) { color: #FFFFFF; } outlinerchildren:-moz-outliner-cell-text(selected, focus) { color: #FFFFFF; } */ /* ::::: lines connecting cells ::::: */ outlinerchildren:-moz-outliner-line { visibility: hidden; } /* outlinerchildren:-moz-outliner-line { border: 1px dotted grey; } outlinerchildren:-moz-outliner-line(selected) { border: 1px dotted black; } */ /* ::::: outliner separator ::::: */ outlinerchildren:-moz-outliner-separator { border: 1px solid #9C9CFF; } /* ::::: drop feedback ::::: */ outlinerchildren:-moz-outliner-cell-text(dropOn) { background-color: #008484; color: #FFCF00; } outlinerchildren:-moz-outliner-drop-feedback { background-color: #008484; width: 50px; height: 2px; margin-left: 5px; } outlinerchildren:-moz-outliner-drop-feedback(selected) { background-color: #FFCF00; } /* ::::: outliner columns ::::: */ outlinercol { -moz-box-align: center; -moz-box-pack: center; border: 1px solid #FF9F00; background-color: #9C9CFF; color: #000000; padding: 1px 4px; } outlinercolpicker { -moz-box-align: center; -moz-box-pack: center; border: 1px solid transparent; background-color: #000000; padding: 1px 0px; } .outlinercol-image { padding: 1px; } .outlinercol-text { margin: 0px !important; padding: 0px !important; } /* ..... internal box ..... */ outlinercol:hover:active { border: 1px solid #FFCF00; padding: 2px 3px 0px 5px; } outlinercolpicker:hover { background-color: #FFCF00; } outlinercolpicker:hover:active { border: 1px solid #FFCF00; background-color: #FF9F00; } .outlinercol-image:hover:active { padding: 2px 0px 0px 2px; } /* ::::: column drag and drop styles ::::: */ outlinercol[dragging="true"] { border: 1px solid transparent; background-color: #008484; color: #000000; } outlinercol[insertafter="true"] { border-right: 1px solid #FFCF00; } outlinercol[insertbefore="true"] { border-left: 1px solid #FFCF00; } outlinerchildren:-moz-outliner-column(insertbefore) { border-left: 1px solid #FFCF00; } outlinerchildren:-moz-outliner-column(insertafter) { border-right: 1px solid #FFCF00; } /* ::::: sort direction indicator ::::: */ .outlinercol-sortdirection { list-style-image: none; } .sortDirectionIndicator[sortDirection="ascending"] .outlinercol-sortdirection { list-style-image: url("chrome://global/skin/tree/sort-asc.gif"); } .sortDirectionIndicator[sortDirection="descending"] .outlinercol-sortdirection { list-style-image: url("chrome://global/skin/tree/sort-desc.gif"); } /* ::::: column picker ::::: */ .outliner-columnpicker-icon { list-style-image: url("chrome://global/skin/tree/columnpicker.gif"); } outlinercolpicker:hover > .outliner-columnpicker-icon, outlinercolpicker:hover:active > .outliner-columnpicker-icon { list-style-image: url("chrome://global/skin/tree/columnpicker-hover.gif"); } /* ::::: twisty ::::: */ outlinerchildren:-moz-outliner-twisty { padding-right: 2px; width: 12px; /* The image's width is 12 pixels */ list-style-image: url("chrome://global/skin/tree/twisty-closed.gif"); } outlinerchildren:-moz-outliner-twisty(open) { width: 12px; /* The image's width is 12 pixels */ list-style-image: url("chrome://global/skin/tree/twisty-open.gif"); } outlinerchildren:-moz-outliner-indentation { width: 10px; }