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/. */ | |
1d7eeb22 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 | padding: 2px 0; | |
dae45075 | 26 | padding-inline-start: 2px; |
1d7eeb22 RK |
27 | } |
28 | ||
29 | .expander-up { | |
30 | list-style-image: url("chrome://global/skin/arrow/arrow-up.gif"); | |
31 | } | |
32 | ||
33 | .expander-down { | |
34 | list-style-image: url("chrome://global/skin/arrow/arrow-down.gif"); | |
35 | } | |
36 | ||
37 | #editBookmarkPanelContent { | |
38 | min-width: 23em; | |
fb2b5761 | 39 | /* width: 32em; */ |
1d7eeb22 RK |
40 | } |
41 | ||
42 | #editBMPanel_folderTree { | |
43 | margin-top: 2px; | |
44 | margin-bottom: 2px; | |
45 | } | |
46 | ||
1d7eeb22 RK |
47 | /* Hide the value column of the tag autocomplete popup |
48 | * leaving only the comment column visible. This is | |
49 | * so that only the tag being edited is shown in the | |
50 | * popup. | |
51 | */ | |
52 | #editBMPanel_tagsField #treecolAutoCompleteValue { | |
53 | visibility: collapse; | |
54 | } | |
55 | ||
56 | ||
57 | /* ::::: bookmark panel dropdown icons ::::: */ | |
58 | ||
59 | #editBMPanel_folderMenuList[selectedIndex="0"], | |
60 | #editBMPanel_toolbarFolderItem { | |
61 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmarksToolbar.png") !important; | |
62 | -moz-image-region: auto !important; | |
63 | } | |
64 | ||
65 | #editBMPanel_folderMenuList[selectedIndex="1"], | |
66 | #editBMPanel_bmRootItem { | |
67 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmarksMenu.png") !important; | |
68 | -moz-image-region: auto !important; | |
69 | } | |
70 | ||
71 | #editBMPanel_folderMenuList[selectedIndex="2"], | |
72 | #editBMPanel_unfiledRootItem { | |
73 | list-style-image: url("chrome://communicator/skin/bookmarks/unsortedBookmarks.png") !important; | |
74 | -moz-image-region: auto !important; | |
75 | } |