1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/metro/theme/crashprompt.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,134 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +%filter substitution 1.9 +%include defines.inc 1.10 + 1.11 +body { 1.12 + background-color: #F4F4F4; 1.13 + margin-left: 16%; 1.14 + margin-right: 23%; 1.15 + margin-top: 115px; 1.16 +} 1.17 + 1.18 +a { 1.19 + text-decoration: none; 1.20 +} 1.21 + 1.22 +#detailsLink { 1.23 + color: black; 1.24 + display: table-row; 1.25 +} 1.26 + 1.27 +#detailsGrid { 1.28 + display: table; 1.29 +} 1.30 + 1.31 +#detailsContainer { 1.32 + display: table-row; 1.33 +} 1.34 + 1.35 +#detailsLinkLabel { 1.36 + display: table-cell; 1.37 +} 1.38 + 1.39 +.detailsSpacer { 1.40 + display: table-cell; 1.41 + padding-right: 8px; 1.42 +} 1.43 + 1.44 +#crashpromptDetailedMessage { 1.45 + font-size: @metro_font_snormal@; 1.46 + display: table-cell; 1.47 +} 1.48 + 1.49 +#crashPromptTitle { 1.50 + color: #737980; 1.51 + font-weight: normal; 1.52 +} 1.53 + 1.54 +.hidden { 1.55 + display: none !important; 1.56 +} 1.57 + 1.58 +#crashPromptButtonContainer { 1.59 + margin-top: 40px; 1.60 +} 1.61 + 1.62 +#lightboxBackdrop { 1.63 + position: fixed; 1.64 + top: 0%; 1.65 + left: 0%; 1.66 + width: 100%; 1.67 + height: 100%; 1.68 + z-index: 1001; 1.69 + background-color: rgba(0,0,0,0.7); 1.70 +} 1.71 + 1.72 +#lightbox { 1.73 + position: fixed; 1.74 + top: 20%; 1.75 + left: 15%; 1.76 + width: 70%; 1.77 + height: 60%; 1.78 + padding-bottom: 1%; 1.79 + padding-top: 1%; 1.80 + background-color: white; 1.81 + z-index: 1002; 1.82 +} 1.83 + 1.84 +#privacyPolicyTitle { 1.85 + margin-left: 10%; 1.86 +} 1.87 + 1.88 +#privacyPolicyBody { 1.89 + margin-left: 10%; 1.90 + margin-right: 10%; 1.91 + padding-right: 20px; 1.92 + max-height: 75%; 1.93 + overflow: auto; 1.94 +} 1.95 + 1.96 +#lightboxCloseButton { 1.97 + background-image: -moz-image-rect(url("chrome://browser/skin/images/infobar-close.png"), 0, 40, 40, 0); 1.98 + width: 40px; 1.99 + height: 40px; 1.100 + float: right; 1.101 + margin-right: 30px; 1.102 + margin-top: 10px; 1.103 +} 1.104 + 1.105 +button { 1.106 + color: #FFFFFF; 1.107 +} 1.108 + 1.109 +button:not([disabled]):hover { 1.110 + color: #FFFFFF; 1.111 +} 1.112 + 1.113 +#refuseButton { 1.114 + background: #847F7C; 1.115 +} 1.116 + 1.117 +#refuseButton:hover { 1.118 + background: #B0B0B0; 1.119 +} 1.120 + 1.121 +hr { 1.122 + border: 1px solid #C7C7C7; 1.123 +} 1.124 + 1.125 +#privacyPolicyLink { 1.126 + color: #649FEF; 1.127 +} 1.128 + 1.129 +.button-default { 1.130 + background: #649FEF; 1.131 + border-color: #9DCFF2; 1.132 +} 1.133 + 1.134 +.button-default:not([disabled]):hover { 1.135 + background: #2990D9; 1.136 + border-color: #8DBAD9; 1.137 +}