| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.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/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.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/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --> | 9 --> |
| 10 | 10 |
| 11 <dom-module id="paper-dialog-shared-styles"> | 11 <dom-module id="paper-dialog-shared-styles"> |
| 12 <template> | 12 <template> |
| 13 <style> | 13 <style> |
| 14 :host { | 14 :host { |
| 15 display: block; | 15 display: block; |
| 16 margin: 24px 40px; | 16 margin: 24px 40px; |
| 17 -webkit-overflow-scrolling: touch; | |
| 18 | 17 |
| 19 background: var(--paper-dialog-background-color, --primary-background-co
lor); | 18 background: var(--paper-dialog-background-color, --primary-background-co
lor); |
| 20 color: var(--paper-dialog-color, --primary-text-color); | 19 color: var(--paper-dialog-color, --primary-text-color); |
| 21 | 20 |
| 22 @apply(--paper-font-body1); | 21 @apply(--paper-font-body1); |
| 23 @apply(--shadow-elevation-16dp); | 22 @apply(--shadow-elevation-16dp); |
| 24 @apply(--paper-dialog); | 23 @apply(--paper-dialog); |
| 25 } | 24 } |
| 26 | 25 |
| 27 :host > ::content > * { | 26 :host > ::content > * { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 55 margin: 0; | 54 margin: 0; |
| 56 | 55 |
| 57 color: var(--paper-dialog-button-color, --primary-color); | 56 color: var(--paper-dialog-button-color, --primary-color); |
| 58 | 57 |
| 59 @apply(--layout-horizontal); | 58 @apply(--layout-horizontal); |
| 60 @apply(--layout-end-justified); | 59 @apply(--layout-end-justified); |
| 61 } | 60 } |
| 62 </style> | 61 </style> |
| 63 </template> | 62 </template> |
| 64 </dom-module> | 63 </dom-module> |
| OLD | NEW |