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