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

Side by Side Diff: polymer_0.5.4/bower_components/paper-shadow/paper-shadow.css

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 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
OLDNEW
1 /* 1 /*
2 * @license 2 * @license
3 * Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 * Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 * This code may only be used under the BSD style license found at http://polyme r.github.io/LICENSE.txt 4 * This code may only be used under the BSD style license found at http://polyme r.github.io/LICENSE.txt
5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS. txt 5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS. txt
6 * The complete set of contributors may be found at http://polymer.github.io/CON TRIBUTORS.txt 6 * The complete set of contributors may be found at http://polymer.github.io/CON TRIBUTORS.txt
7 * Code distributed by Google as part of the polymer project is also 7 * Code distributed by Google as part of the polymer project is also
8 * subject to an additional IP rights grant found at http://polymer.github.io/PA TENTS.txt 8 * subject to an additional IP rights grant found at http://polymer.github.io/PA TENTS.txt
9 */ 9 */
10 10
11 html /deep/ paper-shadow, 11 html /deep/ paper-shadow,
12 html /deep/ paper-animated-shadow { 12 html /deep/ paper-animated-shadow {
13 display: block; 13 display: block;
14 position: relative; 14 position: relative;
15 } 15 }
16 16
17 html /deep/ paper-shadow::shadow #shadow-bottom, 17 html /deep/ paper-shadow::shadow #shadow-bottom,
18 html /deep/ paper-shadow::shadow #shadow-top { 18 html /deep/ paper-shadow::shadow #shadow-top {
19 border-radius: inherit; 19 border-radius: inherit;
20 pointer-events: none; 20 pointer-events: none;
21 } 21 }
22 22
23 html /deep/ paper-shadow::shadow #shadow-bottom[animated], 23 html /deep/ paper-shadow::shadow #shadow-bottom[animated],
24 html /deep/ paper-shadow::shadow #shadow-top[animated] { 24 html /deep/ paper-shadow::shadow #shadow-top[animated] {
25 transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); 25 transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
26 } 26 }
27 27
28 html /deep/ .paper-shadow-top-z-1 { 28 html /deep/ .paper-shadow-top-z-1 {
29 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16); 29 box-shadow: none;
30 } 30 }
31 31
32 html /deep/ .paper-shadow-bottom-z-1 { 32 html /deep/ .paper-shadow-bottom-z-1 {
33 box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); 33 box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
34 } 34 }
35 35
36 html /deep/ .paper-shadow-top-z-2 { 36 html /deep/ .paper-shadow-top-z-2 {
37 box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19); 37 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
38 } 38 }
39 39
40 html /deep/ .paper-shadow-bottom-z-2 { 40 html /deep/ .paper-shadow-bottom-z-2 {
41 box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2); 41 box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3);
42 } 42 }
43 43
44 html /deep/ .paper-shadow-top-z-3 { 44 html /deep/ .paper-shadow-top-z-3 {
45 box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19); 45 box-shadow: 0 11px 7px 0 rgba(0, 0, 0, 0.19);
46 } 46 }
47 47
48 html /deep/ .paper-shadow-bottom-z-3 { 48 html /deep/ .paper-shadow-bottom-z-3 {
49 box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24); 49 box-shadow: 0 13px 25px 0 rgba(0, 0, 0, 0.3);
50 } 50 }
51 51
52 html /deep/ .paper-shadow-top-z-4 { 52 html /deep/ .paper-shadow-top-z-4 {
53 box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21); 53 box-shadow: 0 14px 12px 0 rgba(0, 0, 0, 0.17);
54 } 54 }
55 55
56 html /deep/ .paper-shadow-bottom-z-4 { 56 html /deep/ .paper-shadow-bottom-z-4 {
57 box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22); 57 box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.3);
58 } 58 }
59 59
60 html /deep/ .paper-shadow-top-z-5 { 60 html /deep/ .paper-shadow-top-z-5 {
61 box-shadow: 0 40px 77px 0 rgba(0, 0, 0, 0.22); 61 box-shadow: 0 17px 17px 0 rgba(0, 0, 0, 0.15);
62 } 62 }
63 63
64 html /deep/ .paper-shadow-bottom-z-5 { 64 html /deep/ .paper-shadow-bottom-z-5 {
65 box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2); 65 box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3);
66 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698