Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | /* ===== dialog.css ===================================================== |
michael@0 | 6 | == Styles used by the XUL dialog element. |
michael@0 | 7 | ======================================================================= */ |
michael@0 | 8 | |
michael@0 | 9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
michael@0 | 10 | |
michael@0 | 11 | /* ::::: dialog ::::: */ |
michael@0 | 12 | |
michael@0 | 13 | dialog { |
michael@0 | 14 | padding-top: 8px; |
michael@0 | 15 | padding-bottom: 10px; |
michael@0 | 16 | -moz-padding-start: 8px; |
michael@0 | 17 | -moz-padding-end: 10px; |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | /* ::::: dialog buttons ::::: */ |
michael@0 | 21 | |
michael@0 | 22 | .dialog-button { |
michael@0 | 23 | font: menu; |
michael@0 | 24 | margin-top: 6px; |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | /* ::::: dialog header ::::: */ |
michael@0 | 28 | |
michael@0 | 29 | dialogheader { |
michael@0 | 30 | margin: 0px 5px 5px 5px; |
michael@0 | 31 | border: 2px solid; |
michael@0 | 32 | -moz-border-top-colors: ThreeDShadow ThreeDDarkShadow; |
michael@0 | 33 | -moz-border-right-colors: ThreeDHighlight ThreeDDarkShadow; |
michael@0 | 34 | -moz-border-bottom-colors: ThreeDHighlight ThreeDDarkShadow; |
michael@0 | 35 | -moz-border-left-colors: ThreeDShadow ThreeDDarkShadow; |
michael@0 | 36 | padding: 5px 8px; |
michael@0 | 37 | background-color: Highlight; |
michael@0 | 38 | color: HighlightText; |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | .dialogheader-title { |
michael@0 | 42 | margin: 0px !important; |
michael@0 | 43 | font-size: larger; |
michael@0 | 44 | font-weight: bold; |
michael@0 | 45 | } |
michael@0 | 46 | |
michael@0 | 47 | /* ::::: large dialog header ::::: */ |
michael@0 | 48 | |
michael@0 | 49 | .header-large { |
michael@0 | 50 | -moz-box-orient: vertical; |
michael@0 | 51 | margin-top: -8px; |
michael@0 | 52 | margin-bottom: 0; |
michael@0 | 53 | -moz-margin-start: -8px; |
michael@0 | 54 | -moz-margin-end: -10px; |
michael@0 | 55 | border-left: none; |
michael@0 | 56 | border-right: none; |
michael@0 | 57 | border-top: none; |
michael@0 | 58 | -moz-border-bottom-colors: ThreeDHighlight ThreeDShadow; |
michael@0 | 59 | padding-top: 12px; |
michael@0 | 60 | padding-bottom: 12px; |
michael@0 | 61 | -moz-padding-start: 25px; |
michael@0 | 62 | -moz-padding-end: 5px; |
michael@0 | 63 | background-color: Window; |
michael@0 | 64 | color: WindowText; |
michael@0 | 65 | } |
michael@0 | 66 | |
michael@0 | 67 | .header-large > .dialogheader-title { |
michael@0 | 68 | font: inherit; |
michael@0 | 69 | font-weight: bold; |
michael@0 | 70 | } |
michael@0 | 71 | |
michael@0 | 72 | .header-large > .dialogheader-description { |
michael@0 | 73 | -moz-margin-start: 12px !important; |
michael@0 | 74 | } |