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-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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 bottom: 0px; | 530 bottom: 0px; |
531 } | 531 } |
532 | 532 |
533 .share-button | 533 .share-button |
534 { | 534 { |
535 display: inline-block; | 535 display: inline-block; |
536 width: 82px; | 536 width: 82px; |
537 height: 82px; | 537 height: 82px; |
538 } | 538 } |
539 | 539 |
540 #glass-pane, #share-popup | |
541 { | |
542 visibility: hidden; | |
543 opacity: 0; | |
544 -webkit-transition-property: opacity; | |
545 transition-property: opacity; | |
546 } | |
547 | |
548 #glass-pane | |
549 { | |
550 position: fixed; | |
551 top: 0; | |
552 right: 0; | |
553 bottom: 0; | |
554 left: 0; | |
555 background: rgba(0, 0, 0, 0.5) url(ajax-loader.gif) no-repeat 50% 50%; | |
556 z-index: 101; | |
557 -webkit-transition-duration: 0.2s; | |
558 transition-duration: 0.2s; | |
559 } | |
560 | |
561 #share-popup | |
562 { | |
563 position: absolute; | |
564 top: 50%; | |
565 left: 50%; | |
566 border: none; | |
567 -webkit-transition-delay: 0.1s; | |
568 transition-delay: 0.1s; | |
569 } | |
570 | |
571 #glass-pane.visible, #share-popup.visible | |
572 { | |
573 visibility: visible; | |
574 opacity: 1; | |
575 } | |
576 | |
577 #share-popup.visible | |
578 { | |
579 -webkit-transition-duration: 0.15s; | |
580 transition-duration: 0.15s; | |
581 } | |
582 | |
583 /* Change order of the blocks for French */ | 540 /* Change order of the blocks for French */ |
584 #content:lang(fr) | 541 #content:lang(fr) |
585 { | 542 { |
586 display: table; | 543 display: table; |
587 margin: auto; | 544 margin: auto; |
588 caption-side: bottom; | 545 caption-side: bottom; |
589 } | 546 } |
590 | 547 |
591 #share:lang(fr) | 548 #share:lang(fr) |
592 { | 549 { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 background-image: url(donate.png); | 651 background-image: url(donate.png); |
695 background-repeat: repeat-x; | 652 background-repeat: repeat-x; |
696 } | 653 } |
697 | 654 |
698 footer | 655 footer |
699 { | 656 { |
700 margin: 0 auto 30px; | 657 margin: 0 auto 30px; |
701 max-width: 960px; | 658 max-width: 960px; |
702 text-align: center; | 659 text-align: center; |
703 } | 660 } |
OLD | NEW |