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-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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 } | 376 } |
377 | 377 |
378 [data-validation] .floating-input input:focus:invalid ~ .attention::before | 378 [data-validation] .floating-input input:focus:invalid ~ .attention::before |
379 { | 379 { |
380 background-image: url(icons/attention.svg); | 380 background-image: url(icons/attention.svg); |
381 } | 381 } |
382 | 382 |
383 [data-validation] .floating-input input:valid ~ .attention::before | 383 [data-validation] .floating-input input:valid ~ .attention::before |
384 { | 384 { |
385 top: 0.8rem; | 385 top: 0.8rem; |
386 background-image: url(icons/checkmark.svg#approve); | 386 background-image: url(icons/checkmark.svg#approved); |
387 } | 387 } |
388 | 388 |
389 [data-validation] .floating-input input ~ .error-msg | 389 [data-validation] .floating-input input ~ .error-msg |
390 { | 390 { |
391 margin-top: 0.5rem; | 391 margin-top: 0.5rem; |
392 color: #C11D27; | 392 color: #C11D27; |
393 display: block; | 393 display: block; |
394 visibility: hidden; | 394 visibility: hidden; |
395 } | 395 } |
396 | 396 |
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1441 | 1441 |
1442 #hide-notification::after | 1442 #hide-notification::after |
1443 { | 1443 { |
1444 background-image: url(icons/delete.svg#secondary); | 1444 background-image: url(icons/delete.svg#secondary); |
1445 } | 1445 } |
1446 | 1446 |
1447 #hide-notification:hover::after | 1447 #hide-notification:hover::after |
1448 { | 1448 { |
1449 background-image: url(icons/delete.svg#secondary-hover); | 1449 background-image: url(icons/delete.svg#secondary-hover); |
1450 } | 1450 } |
LEFT | RIGHT |