Commit | Line | Data |
---|---|---|
9099c61d RK |
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/. */ | |
8da9da4e RK |
4 | |
5 | /**** folder menulist ****/ | |
6 | .folder-icon > .menulist-label-box > .menulist-icon { | |
7 | width: 16px; | |
8 | height: 16px; | |
9 | } | |
10 | ||
11 | .folder-icon > .menu-iconic-left { | |
12 | display: -moz-box; | |
13 | } | |
14 | ||
15 | .folder-icon { | |
16 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif") !important; | |
17 | } | |
18 | ||
19 | ||
20 | /**** expanders ****/ | |
21 | ||
22 | .expander-up, | |
23 | .expander-down { | |
24 | min-width: 0; | |
25 | margin: 0; | |
26 | -moz-margin-end: 4px; | |
27 | } | |
28 | ||
29 | .expander-up > .button-box, | |
30 | .expander-down > .button-box { | |
31 | padding: 0; | |
32 | } | |
33 | ||
34 | .expander-up { | |
8b5fc82e | 35 | list-style-image: url("chrome://global/skin/arrow/arrow-up-hover.gif"); |
8da9da4e RK |
36 | } |
37 | ||
38 | .expander-down { | |
8b5fc82e | 39 | list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif"); |
8da9da4e RK |
40 | } |
41 | ||
42 | .expander-down:hover:active { | |
8da9da4e RK |
43 | } |
44 | ||
45 | .expander-up:hover:active { | |
8da9da4e RK |
46 | } |
47 | ||
48 | #editBookmarkPanelContent { | |
49 | min-width: 23em; | |
50 | } | |
51 | ||
52 | #editBMPanel_folderTree { | |
53 | margin-top: 2px; | |
54 | margin-bottom: 2px; | |
55 | } | |
56 | ||
8da9da4e RK |
57 | /* Hide the value column of the tag autocomplete popup |
58 | * leaving only the comment column visible. This is | |
59 | * so that only the tag being edited is shown in the | |
60 | * popup. | |
61 | */ | |
62 | #editBMPanel_tagsField #treecolAutoCompleteValue { | |
63 | visibility: collapse; | |
64 | } | |
65 | ||
66 | ||
67 | /* ::::: bookmark panel dropdown icons ::::: */ | |
68 | ||
69 | #editBMPanel_folderMenuList[selectedIndex="0"], | |
70 | #editBMPanel_toolbarFolderItem { | |
71 | list-style-image: url("chrome://browser/skin/places/bookmarksToolbar.png") !important; | |
72 | -moz-image-region: auto !important; | |
73 | } | |
74 | ||
75 | #editBMPanel_folderMenuList[selectedIndex="1"], | |
76 | #editBMPanel_bmRootItem { | |
77 | list-style-image: url("chrome://browser/skin/places/bookmarksMenu.png") !important; | |
78 | -moz-image-region: auto !important; | |
79 | } | |
80 | ||
81 | #editBMPanel_folderMenuList[selectedIndex="2"], | |
82 | #editBMPanel_unfiledRootItem { | |
83 | list-style-image: url("chrome://browser/skin/places/unsortedBookmarks.png") !important; | |
84 | -moz-image-region: auto !important; | |
85 | } |