| 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 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 10 <link rel="import" href="../iron-behaviors/iron-button-state.html"> | 10 <link rel="import" href="../iron-behaviors/iron-button-state.html"> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 outline: none; | 58 outline: none; |
| 59 } | 59 } |
| 60 | 60 |
| 61 :host([link]) { | 61 :host([link]) { |
| 62 padding: 0; | 62 padding: 0; |
| 63 } | 63 } |
| 64 | 64 |
| 65 .tab-content { | 65 .tab-content { |
| 66 height: 100%; | 66 height: 100%; |
| 67 transform: translateZ(0); | 67 transform: translateZ(0); |
| 68 -webkit-transform: translateZ(0); | |
| 69 transition: opacity 0.1s cubic-bezier(0.4, 0.0, 1, 1); | 68 transition: opacity 0.1s cubic-bezier(0.4, 0.0, 1, 1); |
| 70 @apply(--layout-horizontal); | 69 @apply(--layout-horizontal); |
| 71 @apply(--layout-center-center); | 70 @apply(--layout-center-center); |
| 72 @apply(--layout-flex-auto); | 71 @apply(--layout-flex-auto); |
| 73 @apply(--paper-tab-content); | 72 @apply(--paper-tab-content); |
| 74 } | 73 } |
| 75 | 74 |
| 76 :host(:not(.iron-selected)) > .tab-content { | 75 :host(:not(.iron-selected)) > .tab-content { |
| 77 opacity: 0.8; | 76 opacity: 0.8; |
| 78 | 77 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 95 } | 94 } |
| 96 </style> | 95 </style> |
| 97 | 96 |
| 98 <div class="tab-content"> | 97 <div class="tab-content"> |
| 99 <content></content> | 98 <content></content> |
| 100 </div> | 99 </div> |
| 101 </template> | 100 </template> |
| 102 | 101 |
| 103 </dom-module> | 102 </dom-module> |
| 104 <script src="paper-tab-extracted.js"></script></body></html> | 103 <script src="paper-tab-extracted.js"></script></body></html> |
| OLD | NEW |