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