browser/themes/osx/places/editBookmarkOverlay.css

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:ecea40295f54
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/. */
4
5 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
6 @namespace html url("http://www.w3.org/1999/xhtml");
7
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 }
14
15 .folder-icon > .menu-iconic-left {
16 display: -moz-box;
17 }
18
19 .folder-icon {
20 list-style-image: url("chrome://global/skin/tree/folder.png") !important;
21 }
22
23 @media (min-resolution: 2dppx) {
24 .folder-icon {
25 list-style-image: url("chrome://global/skin/tree/folder@2x.png") !important;
26 }
27 }
28
29 .menulist-icon {
30 margin: 0 !important;
31 }
32
33 /**** expanders ****/
34
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 }
43
44 .expander-up {
45 list-style-image: url("chrome://browser/skin/places/expander-open.png");
46 }
47
48 .expander-down {
49 list-style-image: url("chrome://browser/skin/places/expander-closed.png");
50 }
51
52 .expander-down:hover:active {
53 list-style-image: url("chrome://browser/skin/places/expander-closed-active.png");
54 }
55
56 .expander-up:hover:active {
57 list-style-image: url("chrome://browser/skin/places/expander-open-active.png");
58 }
59
60 #editBookmarkPanelContent {
61 min-width: 23em;
62 }
63
64 #editBMPanel_folderTree {
65 margin: 6px 4px 0 4px;
66 }
67
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 }
76
77
78 /* ----- BOOKMARK PANEL DROPDOWN MENU ITEMS ----- */
79
80 #editBMPanel_folderMenuList[selectedIndex="0"],
81 #editBMPanel_toolbarFolderItem {
82 list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.png") !important;
83 }
84
85 #editBMPanel_folderMenuList[selectedIndex="1"],
86 #editBMPanel_bmRootItem {
87 list-style-image: url("chrome://browser/skin/places/bookmarksMenu.png") !important;
88 }
89
90 #editBMPanel_folderMenuList[selectedIndex="2"],
91 #editBMPanel_unfiledRootItem {
92 list-style-image: url("chrome://browser/skin/places/unfiledBookmarks.png") !important;
93 }
94
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 }
100
101 #editBMPanel_folderMenuList[selectedIndex="2"],
102 #editBMPanel_unfiledRootItem {
103 list-style-image: url("chrome://browser/skin/places/unfiledBookmarks@2x.png") !important;
104 }
105 }

mercurial