| 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 :host { | 10 :host { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 :host([function]) #type { | 54 :host([function]) #type { |
| 55 display: none; | 55 display: none; |
| 56 } | 56 } |
| 57 | 57 |
| 58 #details { | 58 #details { |
| 59 margin-left: 160px; | 59 margin-left: 160px; |
| 60 flex: 1; | 60 flex: 1; |
| 61 } | 61 } |
| 62 | 62 |
| 63 @media (max-width: 500px) { |
| 64 #details { |
| 65 margin-left: 0; |
| 66 } |
| 67 } |
| 68 |
| 63 /* Metadata */ | 69 /* Metadata */ |
| 64 | 70 |
| 65 #meta { | 71 #meta { |
| 66 display: flex; | 72 display: flex; |
| 67 } | 73 } |
| 68 | 74 |
| 69 #type { | 75 #type { |
| 70 @apply(--paper-font-code1); | 76 @apply(--paper-font-code1); |
| 71 } | 77 } |
| 72 | 78 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 } | 152 } |
| 147 :host([_collapsed]) #meta { | 153 :host([_collapsed]) #meta { |
| 148 opacity: 0; | 154 opacity: 0; |
| 149 } | 155 } |
| 150 :host([_collapsed]) #desc { | 156 :host([_collapsed]) #desc { |
| 151 transform: translateY(-34px); | 157 transform: translateY(-34px); |
| 152 } | 158 } |
| 153 :host([_collapsed][function]) #desc { | 159 :host([_collapsed][function]) #desc { |
| 154 opacity: 0; | 160 opacity: 0; |
| 155 } | 161 } |
| OLD | NEW |