LEFT | RIGHT |
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-2017 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 |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 } | 286 } |
287 | 287 |
288 [role="dialog"] label | 288 [role="dialog"] label |
289 { | 289 { |
290 order: 1; | 290 order: 1; |
291 display: block; | 291 display: block; |
292 margin: 5px 0; | 292 margin: 5px 0; |
293 font-size: 10px; | 293 font-size: 10px; |
294 } | 294 } |
295 | 295 |
296 [role="dialog"] menu | |
297 { | |
298 display: flex; | |
299 margin: 0; | |
300 padding: 0; | |
301 border-top: 1px solid #BBBBBB; | |
302 } | |
303 | |
304 [role="dialog"] input[type="text"] | 296 [role="dialog"] input[type="text"] |
305 { | 297 { |
306 order: 2; | 298 order: 2; |
307 } | 299 } |
308 | 300 |
309 [role="dialog"] .error | 301 [role="dialog"] .error |
310 { | 302 { |
311 order: 3; | 303 order: 3; |
312 margin-top: 5px; | 304 margin-top: 5px; |
313 font-size: 12px; | 305 font-size: 12px; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 margin: 10px; | 358 margin: 10px; |
367 content: ""; | 359 content: ""; |
368 } | 360 } |
369 | 361 |
370 #dialog-recommended ul li.installed::before | 362 #dialog-recommended ul li.installed::before |
371 { | 363 { |
372 background-color: #BBBBBB; | 364 background-color: #BBBBBB; |
373 mask: url(mobile/checkmark.svg) center/cover no-repeat; | 365 mask: url(mobile/checkmark.svg) center/cover no-repeat; |
374 } | 366 } |
375 | 367 |
376 #dialog-recommended menu | 368 #dialog-recommended > button |
377 { | 369 { |
378 flex-shrink: 0; | 370 border-width: 1px 0 0 0; |
379 } | 371 text-align: center; |
| 372 } |
LEFT | RIGHT |