Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
6 @namespace html url("http://www.w3.org/1999/xhtml");
8 /**** folder menulist ****/
9 .folder-icon > .menulist-label-box > .menulist-icon,
10 .folder-icon > .menu-iconic-left > .menu-iconic-icon {
11 width: 16px;
12 height: 16px;
13 }
15 .folder-icon > .menu-iconic-left {
16 display: -moz-box;
17 }
19 .folder-icon {
20 list-style-image: url("chrome://global/skin/tree/folder.png") !important;
21 }
23 @media (min-resolution: 2dppx) {
24 .folder-icon {
25 list-style-image: url("chrome://global/skin/tree/folder@2x.png") !important;
26 }
27 }
29 .menulist-icon {
30 margin: 0 !important;
31 }
33 /**** expanders ****/
35 .expander-up,
36 .expander-down {
37 -moz-appearance: none;
38 margin: 0;
39 margin-left: 8px;
40 padding: 0;
41 min-width: 0;
42 }
44 .expander-up {
45 list-style-image: url("chrome://browser/skin/places/expander-open.png");
46 }
48 .expander-down {
49 list-style-image: url("chrome://browser/skin/places/expander-closed.png");
50 }
52 .expander-down:hover:active {
53 list-style-image: url("chrome://browser/skin/places/expander-closed-active.png");
54 }
56 .expander-up:hover:active {
57 list-style-image: url("chrome://browser/skin/places/expander-open-active.png");
58 }
60 #editBookmarkPanelContent {
61 min-width: 23em;
62 }
64 #editBMPanel_folderTree {
65 margin: 6px 4px 0 4px;
66 }
68 /* Hide the value column of the tag autocomplete popup
69 * leaving only the comment column visible. This is
70 * so that only the tag being edited is shown in the
71 * popup.
72 */
73 #editBMPanel_tagsField #treecolAutoCompleteValue {
74 visibility: collapse;
75 }
78 /* ----- BOOKMARK PANEL DROPDOWN MENU ITEMS ----- */
80 #editBMPanel_folderMenuList[selectedIndex="0"],
81 #editBMPanel_toolbarFolderItem {
82 list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.png") !important;
83 }
85 #editBMPanel_folderMenuList[selectedIndex="1"],
86 #editBMPanel_bmRootItem {
87 list-style-image: url("chrome://browser/skin/places/bookmarksMenu.png") !important;
88 }
90 #editBMPanel_folderMenuList[selectedIndex="2"],
91 #editBMPanel_unfiledRootItem {
92 list-style-image: url("chrome://browser/skin/places/unfiledBookmarks.png") !important;
93 }
95 @media (min-resolution: 2dppx) {
96 #editBMPanel_folderMenuList[selectedIndex="0"],
97 #editBMPanel_toolbarFolderItem {
98 list-style-image: url("chrome://browser/skin/places/bookmarksToolbar@2x.png") !important;
99 }
101 #editBMPanel_folderMenuList[selectedIndex="2"],
102 #editBMPanel_unfiledRootItem {
103 list-style-image: url("chrome://browser/skin/places/unfiledBookmarks@2x.png") !important;
104 }
105 }