Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-toolbar/paper-toolbar.html

Issue 1633603004: Add script to remove prefixed CSS from third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing files Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698