| 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/. */ |
| 4 | |
| 5 | /* ===== dialog.css ===================================================== |
| 6 | == Styles used by the XUL dialog element. |
| 7 | ======================================================================= */ |
| 8 | |
| 9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
| 10 | |
| 11 | /* ::::: dialog ::::: */ |
| 12 | |
| 13 | dialog { |
| 14 | padding: 3px; |
| 15 | } |
| 16 | |
| 17 | /* ::::: dialog buttons ::::: */ |
| 18 | |
| 19 | .dialog-button { |
| 20 | /* font: menu; */ |
| 21 | margin-top: 3px; |
| 22 | } |
| 23 | |
| 24 | /* ::::: dialog header ::::: */ |
| 25 | |
| 26 | dialogheader { |
| 27 | border-radius: 8px; |
| 28 | margin: 0px; |
| 29 | padding: 1px 12px; |
| 30 | background-color: #A09090; |
| 31 | color: #000000; |
| 32 | } |
| 33 | |
| 34 | .dialogheader-title { |
| 35 | margin: 0px !important; |
| 36 | font-size: larger; |
| 37 | font-weight: bold; |
| 38 | } |
| 39 | |
| 40 | /* ::::: large dialog header ::::: */ |
| 41 | |
| 42 | .header-large { |
| 43 | -moz-box-orient: vertical; |
| 44 | margin: 0; |
| 45 | border: none; |
| 46 | border-bottom: 1px solid #9C9CFF; |
| 47 | padding-top: 12px; |
| 48 | padding-bottom: 12px; |
| 49 | padding-inline-start: 25px; |
| 50 | padding-inline-end: 5px; |
| 51 | background-color: #000000; |
| 52 | color: #FF9F00; |
| 53 | } |
| 54 | |
| 55 | .header-large > .dialogheader-title { |
| 56 | font: inherit; |
| 57 | font-weight: bold; |
| 58 | } |
| 59 | |
| 60 | .header-large > .dialogheader-description { |
| 61 | margin-inline-start: 12px !important; |
| 62 | } |