1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/themes/osx/global/linkTree.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); 1.9 + 1.10 +/** 1.11 + * All the properties in this rule are important to avoid having to create 1.12 + * a special type of tree. This stylesheet can be loaded into a document with 1.13 + * a single tree that is a link tree. Hardly elegant but it's efficient. 1.14 + */ 1.15 +treeitem[selected="true"] > treerow 1.16 + { 1.17 + background : transparent !important; 1.18 + border : none !important; 1.19 + color : -moz-FieldText !important; 1.20 + } 1.21 + 1.22 +treecell:hover 1.23 + { 1.24 + text-decoration : underline !important; 1.25 + color : #000080 !important; 1.26 + cursor : pointer; 1.27 + } 1.28 + 1.29 +treecell:hover:active 1.30 + { 1.31 + text-decoration : underline !important; 1.32 + color : red !important; 1.33 + } 1.34 + 1.35 +