| 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 | @import url("chrome://global/skin/global.css"); |
| 6 | |
| 7 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
| 8 | |
| 9 | /* Make nice LCARS border */ |
| 10 | window.dialog { |
| 11 | padding: 0; |
| 12 | } |
| 13 | |
| 14 | .dialog-content-box { |
| 15 | background-color: #A09090; |
| 16 | border-radius: 5px 0 0 0; |
| 17 | } |
| 18 | |
| 19 | .dialog-content-box:-moz-locale-dir(rtl) { |
| 20 | border-radius: 0 5px 0 0; |
| 21 | } |
| 22 | |
| 23 | #header { |
| 24 | background-color: #9C9CFF; |
| 25 | color: #000000; |
| 26 | border: none; |
| 27 | -moz-border-start: 3px solid #000000; |
| 28 | border-radius: 0; |
| 29 | -moz-margin-start: 37px; |
| 30 | } |
| 31 | |
| 32 | .wizard-box { |
| 33 | background-color: #000000; |
| 34 | border-radius: 5px 0 0 0; |
| 35 | -moz-margin-start: 5px; |
| 36 | } |
| 37 | |
| 38 | .wizard-box:-moz-locale-dir(rtl) { |
| 39 | border-radius: 0 5px 0 0; |
| 40 | } |
| 41 | |
| 42 | .dialog-button-box { |
| 43 | -moz-border-start: 5px solid #8050B0; /* match wizard-box margin */ |
| 44 | -moz-padding-start: 2px; |
| 45 | margin-top: 3px; |
| 46 | } |
| 47 | |
| 48 | treechildren::-moz-tree-image { |
| 49 | -moz-margin-end: 2px; |
| 50 | list-style-image: url("chrome://communicator/skin/profile/profile.png"); |
| 51 | -moz-image-region: rect(0, 10px, 12px, 0); |
| 52 | } |
| 53 | |
| 54 | treechildren::-moz-tree-image(selected) { |
| 55 | -moz-margin-end: 2px; |
| 56 | list-style-image: url("chrome://communicator/skin/profile/profile.png"); |
| 57 | -moz-image-region: rect(0, 20px, 12px, 10px); |
| 58 | } |
| 59 | |
| 60 | treechildren::-moz-tree-image(rowMigrate-no) { |
| 61 | list-style-image: url("chrome://communicator/skin/profile/migrate.gif"); |
| 62 | -moz-image-region: auto; |
| 63 | } |
| 64 | |
| 65 | /* profile selection dialog */ |
| 66 | #intro, |
| 67 | #label { |
| 68 | width: 17em; |
| 69 | } |
| 70 | |
| 71 | #managebuttons > button { |
| 72 | min-width: 8em; |
| 73 | } |