| 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="../paper-styles/default-theme.html"> | 10 <link rel="import" href="../paper-styles/default-theme.html"> |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 <template> | 104 <template> |
| 105 <style> | 105 <style> |
| 106 :host { | 106 :host { |
| 107 --calculated-paper-toolbar-height: var(--paper-toolbar-height, 64px); | 107 --calculated-paper-toolbar-height: var(--paper-toolbar-height, 64px); |
| 108 --calculated-paper-toolbar-sm-height: var(--paper-toolbar-sm-height, 56p
x); | 108 --calculated-paper-toolbar-sm-height: var(--paper-toolbar-sm-height, 56p
x); |
| 109 | 109 |
| 110 /* technical */ | 110 /* technical */ |
| 111 display: block; | 111 display: block; |
| 112 position: relative; | 112 position: relative; |
| 113 box-sizing: border-box; | 113 box-sizing: border-box; |
| 114 -moz-box-sizing: border-box; | |
| 115 | 114 |
| 116 /* size */ | 115 /* size */ |
| 117 height: var(--calculated-paper-toolbar-height); | 116 height: var(--calculated-paper-toolbar-height); |
| 118 | 117 |
| 119 background: var(--paper-toolbar-background, --primary-color); | 118 background: var(--paper-toolbar-background, --primary-color); |
| 120 color: var(--paper-toolbar-color, --dark-theme-text-color); | 119 color: var(--paper-toolbar-color, --dark-theme-text-color); |
| 121 | 120 |
| 122 @apply(--paper-toolbar); | 121 @apply(--paper-toolbar); |
| 123 } | 122 } |
| 124 | 123 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 /* middle bar */ | 175 /* middle bar */ |
| 177 #middleBar { | 176 #middleBar { |
| 178 position: absolute; | 177 position: absolute; |
| 179 top: 0; | 178 top: 0; |
| 180 right: 0; | 179 right: 0; |
| 181 left: 0; | 180 left: 0; |
| 182 } | 181 } |
| 183 | 182 |
| 184 :host(.tall) #middleBar, | 183 :host(.tall) #middleBar, |
| 185 :host(.medium-tall) #middleBar { | 184 :host(.medium-tall) #middleBar { |
| 186 -webkit-transform: translateY(100%); | |
| 187 transform: translateY(100%); | 185 transform: translateY(100%); |
| 188 } | 186 } |
| 189 | 187 |
| 190 /* bottom bar */ | 188 /* bottom bar */ |
| 191 #bottomBar { | 189 #bottomBar { |
| 192 position: absolute; | 190 position: absolute; |
| 193 right: 0; | 191 right: 0; |
| 194 bottom: 0; | 192 bottom: 0; |
| 195 left: 0; | 193 left: 0; |
| 196 } | 194 } |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 <content select=".middle"></content> | 280 <content select=".middle"></content> |
| 283 </div> | 281 </div> |
| 284 | 282 |
| 285 <div id="bottomBar" class$="toolbar-tools [[_computeBarExtraClasses(bottomJu
stify)]]"> | 283 <div id="bottomBar" class$="toolbar-tools [[_computeBarExtraClasses(bottomJu
stify)]]"> |
| 286 <content select=".bottom"></content> | 284 <content select=".bottom"></content> |
| 287 </div> | 285 </div> |
| 288 </template> | 286 </template> |
| 289 | 287 |
| 290 </dom-module> | 288 </dom-module> |
| 291 <script src="paper-toolbar-extracted.js"></script></body></html> | 289 <script src="paper-toolbar-extracted.js"></script></body></html> |
| OLD | NEW |