Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: chrome/common/extensions/docs/examples/api/browsingData/basic/popup.css

Issue 2534693002: Reduce usage of webkit prefixes in extension examples (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/document_scan/scan.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 margin: 5px 10px 10px; 8 margin: 5px 10px 10px;
9 } 9 }
10 10
11 h1 { 11 h1 {
12 color: #53637D; 12 color: #53637D;
13 font: 26px/1.2 Helvetica, sans-serif; 13 font: 26px/1.2 Helvetica, sans-serif;
14 font-size: 200%; 14 font-size: 200%;
15 margin: 0; 15 margin: 0;
16 padding-bottom: 4px; 16 padding-bottom: 4px;
17 text-shadow: white 0 1px 2px; 17 text-shadow: white 0 1px 2px;
18 } 18 }
19 19
20 label { 20 label {
21 color: #222; 21 color: #222;
22 font: 18px/1.4 Helvetica, sans-serif; 22 font: 18px/1.4 Helvetica, sans-serif;
23 margin: 0.5em 0; 23 margin: 0.5em 0;
24 display: inline-block; 24 display: inline-block;
25 } 25 }
26 26
27 form { 27 form {
28 transition: transform 0.25s ease;
28 width: 563px; 29 width: 563px;
29 -webkit-transition: -webkit-transform 0.25s ease;
30 } 30 }
31 31
32 button { 32 button {
33 display: block; 33 display: block;
34 border-radius: 2px; 34 border-radius: 2px;
35 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); 35 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
36 -webkit-user-select: none; 36 -webkit-user-select: none;
37 background: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5); 37 background: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
38 border: 1px solid #AAA; 38 border: 1px solid #AAA;
39 color: #444; 39 color: #444;
(...skipping 11 matching lines...) Expand all
51 left: 50%; 51 left: 50%;
52 top: 50%; 52 top: 50%;
53 width: 500px; 53 width: 500px;
54 padding: 20px; 54 padding: 20px;
55 margin: -40px 0 0 -270px; 55 margin: -40px 0 0 -270px;
56 opacity: 0; 56 opacity: 0;
57 background: rgba(0, 0, 0, 0.75); 57 background: rgba(0, 0, 0, 0.75);
58 border-radius: 5px; 58 border-radius: 5px;
59 color: #FFF; 59 color: #FFF;
60 font: 1.5em/1.2 Helvetica Neue, sans-serif; 60 font: 1.5em/1.2 Helvetica Neue, sans-serif;
61 -webkit-transition: all 1.0s ease; 61 transition: all 1.0s ease;
62 -webkit-transform: scale(0); 62 transform: scale(0);
63 } 63 }
64 64
65 .overlay a { 65 .overlay a {
66 color: #FFF; 66 color: #FFF;
67 } 67 }
68 68
69 .overlay.visible { 69 .overlay.visible {
70 opacity: 1; 70 opacity: 1;
71 -webkit-transform: scale(1); 71 transform: scale(1);
72 } 72 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/document_scan/scan.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698