Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: skin/common.css

Issue 29321336: Issue 2381 - Added share overlay to options page (Closed)
Patch Set: Rebased to a40c644fc2aa Created July 29, 2015, 12:27 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« options.js ('K') | « options.js ('k') | skin/firstRun.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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;
saroyanm 2015/09/08 17:33:49 We are using "ms" in options.css and "s" for durat
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 }
OLDNEW
« options.js ('K') | « options.js ('k') | skin/firstRun.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld