Left: | ||
Right: |
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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
271 background-color: #E1F2FA; | 271 background-color: #E1F2FA; |
272 text-align: initial; | 272 text-align: initial; |
273 } | 273 } |
274 | 274 |
275 button.list:hover | 275 button.list:hover |
276 { | 276 { |
277 box-shadow: inset 0 0 0 3px #099CD0; | 277 box-shadow: inset 0 0 0 3px #099CD0; |
278 border-color: #099CD0; | 278 border-color: #099CD0; |
279 } | 279 } |
280 | 280 |
281 .side-controls:not(.wrap) | |
282 { | |
283 margin: 0.8rem 0rem; | |
284 display: flex; | |
285 justify-content: flex-end; | |
286 } | |
287 | |
281 .side-controls button | 288 .side-controls button |
saroyanm
2017/09/19 18:53:02
Note: Now we have controls that are pushed to the
ire
2017/09/20 14:53:13
Acknowledged.
| |
289 { | |
290 margin: 0rem; | |
291 -moz-margin-start: 1rem; | |
292 -webkit-margin-start: 1rem; | |
293 } | |
294 | |
295 .side-controls.wrap button | |
282 { | 296 { |
283 margin: 0.8rem 0rem; | 297 margin: 0.8rem 0rem; |
284 -moz-margin-start: auto; | 298 -moz-margin-start: auto; |
285 -webkit-margin-start: auto; | 299 -webkit-margin-start: auto; |
286 } | |
287 | |
288 .side-controls.nowrap | |
289 { | |
290 margin: 0.8rem 0rem; | |
291 display: flex; | |
292 justify-content: flex-end; | |
293 } | |
294 | |
295 .side-controls.nowrap button | |
296 { | |
297 margin: 0rem; | |
298 -moz-margin-start: 1rem; | |
299 -webkit-margin-start: 1rem; | |
300 } | 300 } |
301 | 301 |
302 /* | 302 /* |
303 Forms | 303 Forms |
304 */ | 304 */ |
305 | 305 |
306 .floating-input | 306 .floating-input |
307 { | 307 { |
308 position: relative; | 308 position: relative; |
309 padding-top: 0.7rem; | 309 padding-top: 0.7rem; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
374 [data-validation] .floating-input input:focus:invalid ~ .attention::before | 374 [data-validation] .floating-input input:focus:invalid ~ .attention::before |
375 { | 375 { |
376 background-color: #C11D27; | 376 background-color: #C11D27; |
377 -webkit-mask: url(icons/attention.svg); | 377 -webkit-mask: url(icons/attention.svg); |
378 mask: url(icons/attention.svg); | 378 mask: url(icons/attention.svg); |
379 } | 379 } |
380 | 380 |
381 [data-validation] .floating-input input:focus:valid ~ .attention::before | 381 [data-validation] .floating-input input:focus:valid ~ .attention::before |
382 { | 382 { |
383 top: 0.8rem; | 383 top: 0.8rem; |
384 background-color: green; | 384 background-color: green; |
saroyanm
2017/09/19 18:53:02
We don't have green color yet, see -> https://bitb
ire
2017/09/20 14:53:13
Acknowledged.
| |
385 -webkit-mask: url(icons/checkmark.svg); | 385 -webkit-mask: url(icons/checkmark.svg); |
386 mask: url(icons/checkmark.svg); | 386 mask: url(icons/checkmark.svg); |
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; |
(...skipping 1040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1435 | 1435 |
1436 #hide-notification::after | 1436 #hide-notification::after |
1437 { | 1437 { |
1438 background-color: #099DD1; | 1438 background-color: #099DD1; |
1439 } | 1439 } |
1440 | 1440 |
1441 #hide-notification:hover::after | 1441 #hide-notification:hover::after |
1442 { | 1442 { |
1443 background-color: #5CBCE1; | 1443 background-color: #5CBCE1; |
1444 } | 1444 } |
LEFT | RIGHT |