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 /**
6 * Line up the actions menu with action labels above and below it.
7 * Equalize the distance from the left side of the action box to the left side
8 * of the icon for both the menu and the non-menu versions of the action box.
9 * Also make sure the labels are the same distance away from the icons.
10 */
11 .actionsMenu {
12 margin-top: 0;
13 margin-bottom: 0;
14 -moz-margin-start: -2px;
15 -moz-margin-end: 0;
16 }
18 .typeIcon,
19 .actionIcon {
20 -moz-margin-start: 3px;
21 -moz-margin-end: 3px;
22 }
24 #handlersView > richlistitem label {
25 -moz-margin-start: 1px;
26 margin-top: 2px;
27 }
29 #handlersView > richlistitem {
30 min-height: 22px;
31 }
33 richlistitem[appHandlerIcon="ask"],
34 menuitem[appHandlerIcon="ask"] {
35 list-style-image: url("chrome://browser/skin/preferences/alwaysAsk.png");
36 }
38 richlistitem[appHandlerIcon="save"],
39 menuitem[appHandlerIcon="save"] {
40 list-style-image: url("chrome://browser/skin/preferences/application.png");
41 }
43 richlistitem[appHandlerIcon="feed"],
44 menuitem[appHandlerIcon="feed"] {
45 list-style-image: url("chrome://browser/skin/page-livemarks.png");
46 }
48 richlistitem[appHandlerIcon="plugin"],
49 menuitem[appHandlerIcon="plugin"] {
50 list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric-16.png");
51 }
53 .actionsMenu .menulist-icon {
54 -moz-margin-end: 3px;
55 }
57 .actionsMenu > menupopup > menuitem > .menu-iconic-left {
58 -moz-padding-start: 0px;
59 -moz-padding-end: 2px;
60 }
62 .actionsMenu > menupopup > menuitem {
63 -moz-padding-start: 4px;
64 }