Commit | Line | Data |
---|---|---|
c3c5761b RK |
1 | /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
2 | * This Source Code Form is subject to the terms of the Mozilla Public | |
3 | * License, v. 2.0. If a copy of the MPL was not distributed with this | |
4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
5 | ||
6 | /* ===== alert.css ===================================================== | |
7 | == Styles specific to the alerts dialog. | |
8 | ======================================================================= */ | |
9 | ||
10 | @import url("chrome://messenger/skin/"); | |
11 | ||
12 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
13 | ||
14 | #newMailAlertNotification { | |
15 | min-height: 60px; | |
16 | border: ridge #9999CC 4px; | |
17 | } | |
18 | ||
19 | #alertImage { | |
20 | list-style-image: url("chrome://branding/content/icon64.png"); | |
21 | } | |
22 | ||
23 | #alertImageBox { | |
24 | padding: 4px; | |
25 | } | |
26 | ||
27 | #alertTitle { | |
28 | font-weight: bold; | |
29 | } | |
30 | ||
31 | #alertTextBox { | |
32 | padding: 4px; | |
33 | -moz-padding-end: 16px; | |
34 | } | |
35 | ||
36 | .folderSummary-message-row | |
37 | { | |
38 | /* This max width ends up dictating the overall width of the alert window | |
39 | because it controls how large the preview, subject and sender text can be | |
40 | before cropping kicks in */ | |
41 | max-width: 450px; | |
42 | padding: 0px 5px; | |
43 | } | |
44 | ||
45 | .folderSummary-subject { | |
46 | font-weight: bold; | |
47 | } | |
48 | ||
49 | .folderSummary-sender, .folderSummary-subject { | |
50 | cursor: inherit; | |
51 | } | |
52 | ||
53 | .folderSummary-previewText { | |
54 | color: #808080; | |
55 | } | |
56 | ||
57 | .folderSummaryMessage:hover > .folderSummary-message-row { | |
58 | cursor: pointer; | |
59 | color: #666699; | |
60 | } | |
61 | ||
62 | #closeButton { | |
63 | list-style-image: url("chrome://global/skin/icons/close-button.gif"); | |
64 | -moz-appearance: none; | |
65 | border: none !important; | |
66 | padding: 2px 0px 0px; | |
67 | } |