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