| OLD | NEW | 
| (Empty) |  | 
 |   1 /* | 
 |   2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 
 |   3  * Copyright (C) 2006-2015 Eyeo GmbH | 
 |   4  * | 
 |   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 | 
 |   7  * published by the Free Software Foundation. | 
 |   8  * | 
 |   9  * Adblock Plus is distributed in the hope that it will be useful, | 
 |  10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 |  11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 |  12  * GNU General Public License for more details. | 
 |  13  * | 
 |  14  * You should have received a copy of the GNU General Public License | 
 |  15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
 |  16  */ | 
 |  17  | 
 |  18 #glass-pane, #share-popup | 
 |  19 { | 
 |  20   visibility: hidden; | 
 |  21   opacity: 0; | 
 |  22   -webkit-transition-property: opacity; | 
 |  23   transition-property: opacity; | 
 |  24 } | 
 |  25  | 
 |  26 #glass-pane | 
 |  27 { | 
 |  28   position: fixed; | 
 |  29   top: 0; | 
 |  30   right: 0; | 
 |  31   bottom: 0; | 
 |  32   left: 0; | 
 |  33   background: rgba(0, 0, 0, 0.5) url(ajax-loader.gif) no-repeat 50% 50%; | 
 |  34   z-index: 101; | 
 |  35   -webkit-transition-duration: 0.2s; | 
 |  36   transition-duration: 0.2s; | 
 |  37 } | 
 |  38  | 
 |  39 #share-popup | 
 |  40 { | 
 |  41   position: absolute; | 
 |  42   top: 50%; | 
 |  43   left: 50%; | 
 |  44   border: none; | 
 |  45   -webkit-transition-delay: 0.1s; | 
 |  46   transition-delay: 0.1s; | 
 |  47 } | 
 |  48  | 
 |  49 #glass-pane.visible, #share-popup.visible | 
 |  50 { | 
 |  51   visibility: visible; | 
 |  52   opacity: 1; | 
 |  53 } | 
 |  54  | 
 |  55 #share-popup.visible | 
 |  56 { | 
 |  57   -webkit-transition-duration: 0.15s; | 
 |  58   transition-duration: 0.15s; | 
 |  59 } | 
| OLD | NEW |