| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  428   bottom: 0px; |  428   bottom: 0px; | 
|  429 } |  429 } | 
|  430  |  430  | 
|  431 .share-button |  431 .share-button | 
|  432 { |  432 { | 
|  433   display: inline-block; |  433   display: inline-block; | 
|  434   width: 82px; |  434   width: 82px; | 
|  435   height: 82px; |  435   height: 82px; | 
|  436 } |  436 } | 
|  437  |  437  | 
|  438 #glass-pane, #share-popup |  | 
|  439 { |  | 
|  440   visibility: hidden; |  | 
|  441   opacity: 0; |  | 
|  442   -webkit-transition-property: opacity; |  | 
|  443   transition-property: opacity; |  | 
|  444 } |  | 
|  445  |  | 
|  446 #glass-pane |  | 
|  447 { |  | 
|  448   position: fixed; |  | 
|  449   top: 0; |  | 
|  450   right: 0; |  | 
|  451   bottom: 0; |  | 
|  452   left: 0; |  | 
|  453   background: rgba(0, 0, 0, 0.5) url(ajax-loader.gif) no-repeat 50% 50%; |  | 
|  454   z-index: 101; |  | 
|  455   -webkit-transition-duration: 0.2s; |  | 
|  456   transition-duration: 0.2s; |  | 
|  457 } |  | 
|  458  |  | 
|  459 #share-popup |  | 
|  460 { |  | 
|  461   position: absolute; |  | 
|  462   top: 50%; |  | 
|  463   left: 50%; |  | 
|  464   border: none; |  | 
|  465   -webkit-transition-delay: 0.1s; |  | 
|  466   transition-delay: 0.1s; |  | 
|  467 } |  | 
|  468  |  | 
|  469 #glass-pane.visible, #share-popup.visible |  | 
|  470 { |  | 
|  471   visibility: visible; |  | 
|  472   opacity: 1; |  | 
|  473 } |  | 
|  474  |  | 
|  475 #share-popup.visible |  | 
|  476 { |  | 
|  477   -webkit-transition-duration: 0.15s; |  | 
|  478   transition-duration: 0.15s; |  | 
|  479 } |  | 
|  480  |  | 
|  481 /* Change order of the blocks for French */ |  438 /* Change order of the blocks for French */ | 
|  482 #content:lang(fr) |  439 #content:lang(fr) | 
|  483 { |  440 { | 
|  484   display: table; |  441   display: table; | 
|  485   margin: auto; |  442   margin: auto; | 
|  486   caption-side: bottom; |  443   caption-side: bottom; | 
|  487 } |  444 } | 
|  488  |  445  | 
|  489 #share:lang(fr) |  446 #share:lang(fr) | 
|  490 { |  447 { | 
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  592   background-image: url(donate.png); |  549   background-image: url(donate.png); | 
|  593   background-repeat: repeat-x; |  550   background-repeat: repeat-x; | 
|  594 } |  551 } | 
|  595  |  552  | 
|  596 footer |  553 footer | 
|  597 { |  554 { | 
|  598   margin: 0 auto 30px; |  555   margin: 0 auto 30px; | 
|  599   max-width: 960px; |  556   max-width: 960px; | 
|  600   text-align: center; |  557   text-align: center; | 
|  601 } |  558 } | 
| OLD | NEW |