1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/osx/places/editBookmarkOverlay.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,105 @@ 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 +@namespace html url("http://www.w3.org/1999/xhtml"); 1.10 + 1.11 +/**** folder menulist ****/ 1.12 +.folder-icon > .menulist-label-box > .menulist-icon, 1.13 +.folder-icon > .menu-iconic-left > .menu-iconic-icon { 1.14 + width: 16px; 1.15 + height: 16px; 1.16 +} 1.17 + 1.18 +.folder-icon > .menu-iconic-left { 1.19 + display: -moz-box; 1.20 +} 1.21 + 1.22 +.folder-icon { 1.23 + list-style-image: url("chrome://global/skin/tree/folder.png") !important; 1.24 +} 1.25 + 1.26 +@media (min-resolution: 2dppx) { 1.27 + .folder-icon { 1.28 + list-style-image: url("chrome://global/skin/tree/folder@2x.png") !important; 1.29 + } 1.30 +} 1.31 + 1.32 +.menulist-icon { 1.33 + margin: 0 !important; 1.34 +} 1.35 + 1.36 +/**** expanders ****/ 1.37 + 1.38 +.expander-up, 1.39 +.expander-down { 1.40 + -moz-appearance: none; 1.41 + margin: 0; 1.42 + margin-left: 8px; 1.43 + padding: 0; 1.44 + min-width: 0; 1.45 +} 1.46 + 1.47 +.expander-up { 1.48 + list-style-image: url("chrome://browser/skin/places/expander-open.png"); 1.49 +} 1.50 + 1.51 +.expander-down { 1.52 + list-style-image: url("chrome://browser/skin/places/expander-closed.png"); 1.53 +} 1.54 + 1.55 +.expander-down:hover:active { 1.56 + list-style-image: url("chrome://browser/skin/places/expander-closed-active.png"); 1.57 +} 1.58 + 1.59 +.expander-up:hover:active { 1.60 + list-style-image: url("chrome://browser/skin/places/expander-open-active.png"); 1.61 +} 1.62 + 1.63 +#editBookmarkPanelContent { 1.64 + min-width: 23em; 1.65 +} 1.66 + 1.67 +#editBMPanel_folderTree { 1.68 + margin: 6px 4px 0 4px; 1.69 +} 1.70 + 1.71 +/* Hide the value column of the tag autocomplete popup 1.72 + * leaving only the comment column visible. This is 1.73 + * so that only the tag being edited is shown in the 1.74 + * popup. 1.75 + */ 1.76 +#editBMPanel_tagsField #treecolAutoCompleteValue { 1.77 + visibility: collapse; 1.78 +} 1.79 + 1.80 + 1.81 +/* ----- BOOKMARK PANEL DROPDOWN MENU ITEMS ----- */ 1.82 + 1.83 +#editBMPanel_folderMenuList[selectedIndex="0"], 1.84 +#editBMPanel_toolbarFolderItem { 1.85 + list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.png") !important; 1.86 +} 1.87 + 1.88 +#editBMPanel_folderMenuList[selectedIndex="1"], 1.89 +#editBMPanel_bmRootItem { 1.90 + list-style-image: url("chrome://browser/skin/places/bookmarksMenu.png") !important; 1.91 +} 1.92 + 1.93 +#editBMPanel_folderMenuList[selectedIndex="2"], 1.94 +#editBMPanel_unfiledRootItem { 1.95 + list-style-image: url("chrome://browser/skin/places/unfiledBookmarks.png") !important; 1.96 +} 1.97 + 1.98 +@media (min-resolution: 2dppx) { 1.99 + #editBMPanel_folderMenuList[selectedIndex="0"], 1.100 + #editBMPanel_toolbarFolderItem { 1.101 + list-style-image: url("chrome://browser/skin/places/bookmarksToolbar@2x.png") !important; 1.102 + } 1.103 + 1.104 + #editBMPanel_folderMenuList[selectedIndex="2"], 1.105 + #editBMPanel_unfiledRootItem { 1.106 + list-style-image: url("chrome://browser/skin/places/unfiledBookmarks@2x.png") !important; 1.107 + } 1.108 +}