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-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
361 #donate:hover, .share-buttons a:hover | 361 #donate:hover, .share-buttons a:hover |
362 { | 362 { |
363 box-shadow: 0px 0px 0px 2px #8ca7c4; | 363 box-shadow: 0px 0px 0px 2px #8ca7c4; |
364 border-radius: 30px; | 364 border-radius: 30px; |
365 } | 365 } |
366 | 366 |
367 #share > .block | 367 #share > .block |
368 { | 368 { |
369 display: inline-block; | 369 display: inline-block; |
370 vertical-align: top; | 370 vertical-align: top; |
371 width: 50%; | 371 width: 49%; |
372 padding: 5px 0px; | 372 padding: 5px 0px; |
373 border: 1px dashed #37506d; | 373 border: 1px dashed #37506d; |
374 border-style: none dashed; | 374 border-style: none dashed; |
375 } | 375 } |
376 | 376 |
377 #share > .block:last-child | 377 #share > .block:last-child |
378 { | 378 { |
379 width: 49%; | |
380 -webkit-border-start-style: none; | 379 -webkit-border-start-style: none; |
saroyanm
2015/11/27 18:15:06
I do remember we had discussion several times abou
Thomas Greiner
2015/12/03 15:14:51
The platforms we support are either Gecko (Firefox
| |
381 -moz-border-start-style: none; | 380 -moz-border-start-style: none; |
382 } | 381 } |
383 | 382 |
384 #share > .block > span | 383 #share > .block > span |
385 { | 384 { |
386 margin: 10px 20px; | 385 margin: 10px 20px; |
387 } | 386 } |
388 | 387 |
389 .share-buttons | 388 .share-buttons |
390 { | 389 { |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
647 width: 64px; | 646 width: 64px; |
648 height: 64px; | 647 height: 64px; |
649 } | 648 } |
650 | 649 |
651 section | 650 section |
652 { | 651 { |
653 padding: 40px 20px; | 652 padding: 40px 20px; |
654 } | 653 } |
655 | 654 |
656 #general, | 655 #general, |
657 #general > .block | 656 #general > .block, |
657 #share > .block | |
658 { | 658 { |
659 display: block; | 659 display: block; |
660 } | 660 } |
661 | 661 |
662 #general > .block | 662 #general > .block |
663 { | 663 { |
664 width: auto; | 664 width: auto; |
665 margin-left: 20px; | 665 margin-left: 20px; |
666 margin-right: 20px; | 666 margin-right: 20px; |
667 padding: 10px 0px; | 667 padding: 10px 0px; |
668 border-width: 1px 0px 0px; | 668 border-width: 1px 0px 0px; |
669 } | 669 } |
670 | 670 |
671 #share > .block | 671 #share > .block |
672 { | 672 { |
673 display: block; | |
saroyanm
2015/11/27 18:15:06
Detail: You can move this rule with selector also
Thomas Greiner
2015/12/03 15:14:51
Done.
| |
674 width: auto; | 673 width: auto; |
675 padding: 20px 0px; | 674 padding: 20px 0px; |
676 border-style: dashed none none; | 675 border-style: dashed none none; |
677 } | 676 } |
678 | 677 |
679 #share > .block:last-child | |
680 { | |
681 width: auto; | |
saroyanm
2015/11/27 18:15:06
I guess you have to set this rule again because of
Thomas Greiner
2015/12/03 15:14:51
Done. You're right. Changing the regular width fro
| |
682 } | |
683 | |
684 #donate, | 678 #donate, |
685 .share-buttons | 679 .share-buttons |
686 { | 680 { |
687 margin-top: 10px; | 681 margin-top: 10px; |
688 } | 682 } |
689 | 683 |
690 #can-do-more, | 684 #can-do-more, |
691 #can-do-more .feature h3 | 685 #can-do-more .feature h3 |
692 { | 686 { |
693 text-align: center; | 687 text-align: center; |
694 } | 688 } |
695 | 689 |
696 #can-do-more .feature-description-textblock | 690 #can-do-more .feature-description-textblock |
697 { | 691 { |
698 text-align: start; | 692 text-align: start; |
699 } | 693 } |
700 | 694 |
701 .toggle | 695 .toggle |
702 { | 696 { |
703 margin-top: 14px; | 697 margin-top: 14px; |
704 } | 698 } |
705 } | 699 } |
LEFT | RIGHT |