Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
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 | %filter substitution |
michael@0 | 6 | %include defines.inc |
michael@0 | 7 | |
michael@0 | 8 | body { |
michael@0 | 9 | background-color: #F4F4F4; |
michael@0 | 10 | margin-left: 16%; |
michael@0 | 11 | margin-right: 23%; |
michael@0 | 12 | margin-top: 115px; |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | a { |
michael@0 | 16 | text-decoration: none; |
michael@0 | 17 | } |
michael@0 | 18 | |
michael@0 | 19 | #detailsLink { |
michael@0 | 20 | color: black; |
michael@0 | 21 | display: table-row; |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | #detailsGrid { |
michael@0 | 25 | display: table; |
michael@0 | 26 | } |
michael@0 | 27 | |
michael@0 | 28 | #detailsContainer { |
michael@0 | 29 | display: table-row; |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | #detailsLinkLabel { |
michael@0 | 33 | display: table-cell; |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | .detailsSpacer { |
michael@0 | 37 | display: table-cell; |
michael@0 | 38 | padding-right: 8px; |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | #crashpromptDetailedMessage { |
michael@0 | 42 | font-size: @metro_font_snormal@; |
michael@0 | 43 | display: table-cell; |
michael@0 | 44 | } |
michael@0 | 45 | |
michael@0 | 46 | #crashPromptTitle { |
michael@0 | 47 | color: #737980; |
michael@0 | 48 | font-weight: normal; |
michael@0 | 49 | } |
michael@0 | 50 | |
michael@0 | 51 | .hidden { |
michael@0 | 52 | display: none !important; |
michael@0 | 53 | } |
michael@0 | 54 | |
michael@0 | 55 | #crashPromptButtonContainer { |
michael@0 | 56 | margin-top: 40px; |
michael@0 | 57 | } |
michael@0 | 58 | |
michael@0 | 59 | #lightboxBackdrop { |
michael@0 | 60 | position: fixed; |
michael@0 | 61 | top: 0%; |
michael@0 | 62 | left: 0%; |
michael@0 | 63 | width: 100%; |
michael@0 | 64 | height: 100%; |
michael@0 | 65 | z-index: 1001; |
michael@0 | 66 | background-color: rgba(0,0,0,0.7); |
michael@0 | 67 | } |
michael@0 | 68 | |
michael@0 | 69 | #lightbox { |
michael@0 | 70 | position: fixed; |
michael@0 | 71 | top: 20%; |
michael@0 | 72 | left: 15%; |
michael@0 | 73 | width: 70%; |
michael@0 | 74 | height: 60%; |
michael@0 | 75 | padding-bottom: 1%; |
michael@0 | 76 | padding-top: 1%; |
michael@0 | 77 | background-color: white; |
michael@0 | 78 | z-index: 1002; |
michael@0 | 79 | } |
michael@0 | 80 | |
michael@0 | 81 | #privacyPolicyTitle { |
michael@0 | 82 | margin-left: 10%; |
michael@0 | 83 | } |
michael@0 | 84 | |
michael@0 | 85 | #privacyPolicyBody { |
michael@0 | 86 | margin-left: 10%; |
michael@0 | 87 | margin-right: 10%; |
michael@0 | 88 | padding-right: 20px; |
michael@0 | 89 | max-height: 75%; |
michael@0 | 90 | overflow: auto; |
michael@0 | 91 | } |
michael@0 | 92 | |
michael@0 | 93 | #lightboxCloseButton { |
michael@0 | 94 | background-image: -moz-image-rect(url("chrome://browser/skin/images/infobar-close.png"), 0, 40, 40, 0); |
michael@0 | 95 | width: 40px; |
michael@0 | 96 | height: 40px; |
michael@0 | 97 | float: right; |
michael@0 | 98 | margin-right: 30px; |
michael@0 | 99 | margin-top: 10px; |
michael@0 | 100 | } |
michael@0 | 101 | |
michael@0 | 102 | button { |
michael@0 | 103 | color: #FFFFFF; |
michael@0 | 104 | } |
michael@0 | 105 | |
michael@0 | 106 | button:not([disabled]):hover { |
michael@0 | 107 | color: #FFFFFF; |
michael@0 | 108 | } |
michael@0 | 109 | |
michael@0 | 110 | #refuseButton { |
michael@0 | 111 | background: #847F7C; |
michael@0 | 112 | } |
michael@0 | 113 | |
michael@0 | 114 | #refuseButton:hover { |
michael@0 | 115 | background: #B0B0B0; |
michael@0 | 116 | } |
michael@0 | 117 | |
michael@0 | 118 | hr { |
michael@0 | 119 | border: 1px solid #C7C7C7; |
michael@0 | 120 | } |
michael@0 | 121 | |
michael@0 | 122 | #privacyPolicyLink { |
michael@0 | 123 | color: #649FEF; |
michael@0 | 124 | } |
michael@0 | 125 | |
michael@0 | 126 | .button-default { |
michael@0 | 127 | background: #649FEF; |
michael@0 | 128 | border-color: #9DCFF2; |
michael@0 | 129 | } |
michael@0 | 130 | |
michael@0 | 131 | .button-default:not([disabled]):hover { |
michael@0 | 132 | background: #2990D9; |
michael@0 | 133 | border-color: #8DBAD9; |
michael@0 | 134 | } |