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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-material/paper-material.html

Issue 1561893002: [Polymer] Roll polymer to latest version (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update grdp Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/v1_0/components-chromium/paper-material/paper-material.html
diff --git a/third_party/polymer/v1_0/components-chromium/paper-material/paper-material.html b/third_party/polymer/v1_0/components-chromium/paper-material/paper-material.html
index 4bb3e4d640f31fefc2447136eb2fe4d885921918..984a38995c37ee6a7692d52bdf15ad6554e7ad0a 100644
--- a/third_party/polymer/v1_0/components-chromium/paper-material/paper-material.html
+++ b/third_party/polymer/v1_0/components-chromium/paper-material/paper-material.html
@@ -8,6 +8,7 @@ Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
--><html><head><link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../paper-styles/shadow.html">
+<link rel="import" href="paper-material-shared-styles.html">
<!--
Material design: [Cards](https://www.google.com/design/spec/components/cards.html)
@@ -27,35 +28,11 @@ Example:
</head><body><dom-module id="paper-material">
<template>
+ <style include="paper-material-shared-styles"></style>
<style>
- :host {
- display: block;
- position: relative;
- }
-
:host([animated]) {
@apply(--shadow-transition);
}
-
- :host([elevation="1"]) {
- @apply(--shadow-elevation-2dp);
- }
-
- :host([elevation="2"]) {
- @apply(--shadow-elevation-4dp);
- }
-
- :host([elevation="3"]) {
- @apply(--shadow-elevation-6dp);
- }
-
- :host([elevation="4"]) {
- @apply(--shadow-elevation-8dp);
- }
-
- :host([elevation="5"]) {
- @apply(--shadow-elevation-16dp);
- }
</style>
<content></content>

Powered by Google App Engine
This is Rietveld 408576698