OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 justify-content: center; | 188 justify-content: center; |
189 margin-top: 2rem; | 189 margin-top: 2rem; |
190 } | 190 } |
191 | 191 |
192 #result | 192 #result |
193 { | 193 { |
194 flex-grow: 1; | 194 flex-grow: 1; |
195 border-width: 0px; | 195 border-width: 0px; |
196 } | 196 } |
197 | 197 |
| 198 #showDataValue |
| 199 { |
| 200 flex-grow: 1; |
| 201 width: 100%; |
| 202 margin-bottom: 1rem; |
| 203 } |
| 204 |
198 footer | 205 footer |
199 { | 206 { |
200 display: flex; | 207 display: flex; |
201 flex-direction: row; | 208 flex-direction: row; |
202 box-sizing: border-box; | 209 box-sizing: border-box; |
203 width: 46.3rem; | 210 width: 46.3rem; |
204 margin-top: 2rem; | 211 margin-top: 2rem; |
205 } | 212 } |
206 | 213 |
207 #privacyPolicy | 214 #privacyPolicy |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 background-color: transparent; | 303 background-color: transparent; |
297 background-image: url(icons/checkbox.png); | 304 background-image: url(icons/checkbox.png); |
298 display: inline-block; | 305 display: inline-block; |
299 } | 306 } |
300 | 307 |
301 input[type="checkbox"]:checked, | 308 input[type="checkbox"]:checked, |
302 input[type="radio"]:checked | 309 input[type="radio"]:checked |
303 { | 310 { |
304 background-position: 0px 18px; | 311 background-position: 0px 18px; |
305 } | 312 } |
| 313 |
| 314 .modal:not([hidden]) |
| 315 { |
| 316 display: flex; |
| 317 flex-direction: column; |
| 318 position: fixed; |
| 319 left: 0; |
| 320 top: 0; |
| 321 right: 0; |
| 322 bottom: 0; |
| 323 padding: 5rem; |
| 324 background-color: rgba(0, 0, 0, 0.5); |
| 325 } |
| 326 |
| 327 .modalContent |
| 328 { |
| 329 flex-grow: 1; |
| 330 display: flex; |
| 331 flex-direction: column; |
| 332 align-items: flex-end; |
| 333 background-color: #FFFFFF; |
| 334 border: 1px solid #CDCDCD; |
| 335 padding: 2rem; |
| 336 } |
OLD | NEW |