| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 outline: none; | 63 outline: none; |
| 64 } | 64 } |
| 65 | 65 |
| 66 :host([link]) { | 66 :host([link]) { |
| 67 padding: 0; | 67 padding: 0; |
| 68 } | 68 } |
| 69 | 69 |
| 70 .tab-content { | 70 .tab-content { |
| 71 height: 100%; | 71 height: 100%; |
| 72 transform: translateZ(0); | 72 transform: translateZ(0); |
| 73 -webkit-transform: translateZ(0); | |
| 74 transition: opacity 0.1s cubic-bezier(0.4, 0.0, 1, 1); | 73 transition: opacity 0.1s cubic-bezier(0.4, 0.0, 1, 1); |
| 75 @apply(--layout-horizontal); | 74 @apply(--layout-horizontal); |
| 76 @apply(--layout-center-center); | 75 @apply(--layout-center-center); |
| 77 @apply(--layout-flex-auto); | 76 @apply(--layout-flex-auto); |
| 78 @apply(--paper-tab-content); | 77 @apply(--paper-tab-content); |
| 79 } | 78 } |
| 80 | 79 |
| 81 :host(:not(.iron-selected)) > .tab-content { | 80 :host(:not(.iron-selected)) > .tab-content { |
| 82 opacity: 0.8; | 81 opacity: 0.8; |
| 83 | 82 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 100 } | 99 } |
| 101 </style> | 100 </style> |
| 102 | 101 |
| 103 <div class="tab-content"> | 102 <div class="tab-content"> |
| 104 <content></content> | 103 <content></content> |
| 105 </div> | 104 </div> |
| 106 </template> | 105 </template> |
| 107 | 106 |
| 108 </dom-module> | 107 </dom-module> |
| 109 <script src="paper-tab-extracted.js"></script></body></html> | 108 <script src="paper-tab-extracted.js"></script></body></html> |
| OLD | NEW |