| 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 */ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 @apply(--layout-fit); | 72 @apply(--layout-fit); |
| 73 } | 73 } |
| 74 | 74 |
| 75 #nodocs { | 75 #nodocs { |
| 76 background: var(--paper-grey-50); | 76 background: var(--paper-grey-50); |
| 77 font-size: 24px; | 77 font-size: 24px; |
| 78 font-weight: 400; | 78 font-weight: 400; |
| 79 color: var(--paper-grey-400); | 79 color: var(--paper-grey-400); |
| 80 } | 80 } |
| 81 | 81 |
| 82 #demo { | 82 #demo, |
| 83 #demo iframe { |
| 83 border: 0; | 84 border: 0; |
| 84 background: transparent; | 85 background: transparent; |
| 85 width: 100%; | 86 width: 100%; |
| 86 height: 100%; | 87 height: 100%; |
| 87 overflow-x: none; | 88 overflow-x: none; |
| 88 overflow-y: auto; | 89 overflow-y: auto; |
| 89 } | 90 } |
| 90 | 91 |
| 91 #view > * { | 92 #view > * { |
| 92 display: none; | 93 display: none; |
| 93 } | 94 } |
| 94 | 95 |
| 95 #view > .iron-selected { | 96 #view > .iron-selected { |
| 96 display: block; | 97 display: block; |
| 97 } | 98 } |
| 98 | 99 |
| 99 #docs { | 100 #docs { |
| 101 max-width: var(--iron-component-page-max-width, 48em); |
| 102 @apply(--iron-component-page-container); |
| 100 padding: 20px; | 103 padding: 20px; |
| 101 max-width: 48em; | |
| 102 margin: 0 auto; | 104 margin: 0 auto; |
| 103 } | 105 } |
| 104 | 106 |
| 105 #active { | 107 #active { |
| 106 font-size: 20px; | 108 font-size: 20px; |
| 107 font-family: Roboto, Noto; | 109 font-family: Roboto, Noto; |
| 108 border: 0; | 110 border: 0; |
| 109 background: transparent; | 111 background: transparent; |
| 110 } | 112 } |
| 111 | 113 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 [catalog-only] { | 148 [catalog-only] { |
| 147 display: none; | 149 display: none; |
| 148 } | 150 } |
| 149 | 151 |
| 150 :host([_catalog]) [catalog-only] { | 152 :host([_catalog]) [catalog-only] { |
| 151 display: block; | 153 display: block; |
| 152 } | 154 } |
| 153 :host([_catalog]) [catalog-hidden] { | 155 :host([_catalog]) [catalog-hidden] { |
| 154 display: none; | 156 display: none; |
| 155 } | 157 } |
| OLD | NEW |