complete sync of both themes with toolkit winstripe changes in Mozilla 16 cycle
[themes.git] / EarlyBlue / global / alerts / alert.css
CommitLineData
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/. */
c3af6803 4
e181d49e
RK
5/* ===== alert.css =====================================================
6 == Styles specific to the alerts dialog.
7 ======================================================================= */
c3af6803 8
e181d49e 9@import url("chrome://global/skin/");
c3af6803 10
e181d49e 11@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
c3af6803 12
e181d49e
RK
13.alertBox {
14 border: 2px solid #666699;
15 background-color: #CCD0DD;
16 min-height: 50px;
c3af6803 17}
18
e181d49e
RK
19.alertBox[orient="horizontal"] > .alertImageBox {
20 -moz-margin-start: 4px;
21 -moz-margin-end: 6px;
22 min-height: 46px;
c3af6803 23}
24
e181d49e
RK
25.alertBox[orient="vertical"] > .alertImageBox {
26 margin-top: 6px;
27 margin-bottom: 4px;
28 min-width: 46px;
c3af6803 29}
30
e181d49e
RK
31.alertTitle {
32 font-weight: bold;
33}
c3af6803 34
71a617ff
RK
35#alertImage {
36 max-width: 48px;
37 max-height: 48px;
38}
39
e181d49e
RK
40.alertText {
41 -moz-margin-end: 6px;
c3af6803 42}
43
18f5421a 44#alertNotification[clickable="true"] {
e181d49e 45 cursor: pointer;
18f5421a
RK
46}
47
48label {
49 cursor: inherit;
50}
51
52.alertText[clickable="true"] {
e181d49e
RK
53 color: blue;
54 text-decoration: underline;
c3af6803 55}
56
e181d49e
RK
57.alertText[clickable="true"]:hover:active {
58 color: red;
59}
c3af6803 60
e181d49e
RK
61.alertBox[orient="horizontal"] > .alertTextBox {
62 -moz-padding-end: 10px;
63 padding-top: 5px;
c3af6803 64}
65
e181d49e
RK
66.alertBox[orient="vertical"] > .alertTextBox {
67 -moz-padding-start: 5px;
68 -moz-padding-end: 5px;
69 margin-bottom: 8px;
154ee8b3 70 -moz-box-align: center;
c3af6803 71}