| 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 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
| 6 | |
| 7 | /** |
| 8 | * Small Dialog Header (without icon) |
| 9 | **/ |
| 10 | .box-smallheader |
| 11 | { |
| 12 | -moz-binding : url(chrome://communicator/content/dialogBindings.xml#smallheader); |
| 13 | border : 1px inset #CCD0DD; |
| 14 | margin : 0px 5px 6px 5px; |
| 15 | } |
| 16 | |
| 17 | .box-smallheader > .toolbar-primary |
| 18 | { |
| 19 | padding : 0px 0px 3px 0px; |
| 20 | min-height : 0px; |
| 21 | background-color : #666699; |
| 22 | } |
| 23 | |
| 24 | .box-smallheader-left |
| 25 | { |
| 26 | font-size : larger; |
| 27 | font-weight : bold; |
| 28 | color : #FFFFFF; |
| 29 | padding-left : 6px; |
| 30 | } |
| 31 | |
| 32 | .box-smallheader-right |
| 33 | { |
| 34 | color : #FFFFFF; |
| 35 | padding-right : 6px; |
| 36 | } |
| 37 | |
| 38 | .box-smallheader > .toolbar-primary |
| 39 | { |
| 40 | /* border : 1px solid ThreeDDarkShadow; */ |
| 41 | padding-top : 3px; |
| 42 | } |
| 43 | |
| 44 | |
| 45 | /** |
| 46 | * Large Dialog Header (with icon) |
| 47 | **/ |
| 48 | .box-header |
| 49 | { |
| 50 | -moz-binding : url(chrome://global/skin/classicBindings.xml#largeheader); |
| 51 | } |
| 52 | |
| 53 | .largeheader-box |
| 54 | { |
| 55 | /* |
| 56 | background-color : window; |
| 57 | border-bottom : 1px solid ThreeDShadow; |
| 58 | */ |
| 59 | } |
| 60 | |
| 61 | .largeheader-header-text |
| 62 | { |
| 63 | font-weight : bold; |
| 64 | margin-left : 23px; |
| 65 | } |
| 66 | |
| 67 | .largeheader-desc-text |
| 68 | { |
| 69 | margin-left : 44px; |
| 70 | } |
| 71 | |
| 72 | .largeheader-icon |
| 73 | { |
| 74 | width : 49px; |
| 75 | height : 49px; |
| 76 | margin : 5px; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Dialog status line (blue) including progress area |
| 81 | **/ |
| 82 | .box-status |
| 83 | { |
| 84 | visibility : collapse; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Utility classes for use when combined headers/footers are used |
| 89 | **/ |
| 90 | /* display area framed container */ |
| 91 | #contentarea |
| 92 | { |
| 93 | border-top : 2px groove #CCD0DD; |
| 94 | border-bottom : 2px groove #CCD0DD; |
| 95 | padding : 7px; |
| 96 | } |