| 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>
|
|
|