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/. */ | |
f6e0a33f | 4 | |
5 | /* ===== dialogs.css ==================================================== | |
6 | == Styles used by the general dialogs in Messenger. | |
7 | ======================================================================= */ | |
8 | ||
9 | @import url("chrome://messenger/skin/"); | |
10 | ||
11 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
12 | ||
13 | /* ::::: button-like menus ::::: */ | |
6c5a63bb | 14 | |
f6e0a33f | 15 | menu.push { |
16 | border: 1px outset #CCD0DD; | |
17 | padding: 2px; | |
18 | margin: 2px; | |
19 | background-color: inherit; | |
20 | background-image: inherit; | |
21 | } | |
22 | ||
23 | menu.push:hover:active, | |
74d14f90 | 24 | menu.push[open] { |
f6e0a33f | 25 | border-style: inset; |
02920d2b RK |
26 | padding-top: 3px; |
27 | padding-bottom: 1px; | |
28 | -moz-padding-start: 3px; | |
29 | -moz-padding-end: 1px; | |
f6e0a33f | 30 | } |
31 | ||
f6e0a33f | 32 | menu.push[disabled="true"], |
33 | menu.push[disabled="true"]:hover, | |
34 | menu.push[disabled="true"]:hover:active { | |
35 | color: #999999; | |
36 | } |