| 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 | /* ===== config.css ============================================== |
| 6 | == Styles for about:config |
| 7 | ======================================================================= */ |
| 8 | |
| 9 | @import url("chrome://global/skin/"); |
| 10 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
| 11 | |
| 12 | /* ::::: warning screen ::::: */ |
| 13 | |
| 14 | #warningScreen |
| 15 | { |
| 16 | background: #CCD0DD; |
| 17 | } |
| 18 | |
| 19 | #warningBox |
| 20 | { |
| 21 | background: #9999CC; |
| 22 | color: #000000; |
| 23 | border: 1px solid #666699; |
| 24 | border-radius: 10px; |
| 25 | padding: 3em; |
| 26 | -moz-padding-start: 30px; |
| 27 | -moz-margin-start: 1em; |
| 28 | -moz-margin-end: 1em; |
| 29 | } |
| 30 | |
| 31 | #warningInnerBox |
| 32 | { |
| 33 | max-width: 50em; |
| 34 | } |
| 35 | |
| 36 | #warningTitle |
| 37 | { |
| 38 | margin: 0 0 .6em; |
| 39 | font-size: 160%; |
| 40 | border-bottom: 1px solid #666699; |
| 41 | } |
| 42 | |
| 43 | #warningText |
| 44 | { |
| 45 | font-size: 110%; |
| 46 | -moz-margin-start: 0; |
| 47 | } |
| 48 | |
| 49 | #warningButton |
| 50 | { |
| 51 | margin-top: 0.6em; |
| 52 | } |
| 53 | |
| 54 | #showWarningNextTime |
| 55 | { |
| 56 | margin-top: 0.6em; |
| 57 | } |
| 58 | |
| 59 | #exclam |
| 60 | { |
| 61 | list-style-image: url("chrome://global/skin/icons/alert-exclam.gif"); |
| 62 | -moz-margin-end: 3em; |
| 63 | } |
| 64 | |
| 65 | /* ::::: tree rows ::::: */ |
| 66 | |
| 67 | #configTreeBody::-moz-tree-cell-text(user) |
| 68 | { |
| 69 | font-weight: bold; |
| 70 | } |
| 71 | |
| 72 | #configTreeBody::-moz-tree-cell-text(locked) |
| 73 | { |
| 74 | font-style: italic; |
| 75 | } |
| 76 | |
| 77 | #configTree |
| 78 | { |
| 79 | margin-top: 5px; |
| 80 | margin-bottom: 5px; |
| 81 | } |
| 82 | |
| 83 | #filterRow |
| 84 | { |
| 85 | margin-top: 5px; |
| 86 | } |