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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-flex-layout/iron-flex-layout.html

Issue 1468623004: Update Polymer from 1.2.1 -> 1.2.3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@travis-yml
Patch Set: local-state.html Created 5 years 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 --> 9 -->
10 10
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 right: 0; 288 right: 0;
289 bottom: 0; 289 bottom: 0;
290 left: 0; 290 left: 0;
291 }; 291 };
292 292
293 --layout-scroll: { 293 --layout-scroll: {
294 -webkit-overflow-scrolling: touch; 294 -webkit-overflow-scrolling: touch;
295 overflow: auto; 295 overflow: auto;
296 }; 296 };
297 297
298 --layout-fullbleed: {
299 margin: 0;
300 height: 100vh;
301 }
302
298 /* fixed position */ 303 /* fixed position */
299 304
300 --layout-fixed-top: { 305 --layout-fixed-top: {
301 position: fixed; 306 position: fixed;
302 top: 0; 307 top: 0;
303 left: 0; 308 left: 0;
304 right: 0; 309 right: 0;
305 }; 310 };
306 311
307 --layout-fixed-right: { 312 --layout-fixed-right: {
(...skipping 13 matching lines...) Expand all
321 --layout-fixed-left: { 326 --layout-fixed-left: {
322 position: fixed; 327 position: fixed;
323 top: 0; 328 top: 0;
324 bottom: 0; 329 bottom: 0;
325 left: 0; 330 left: 0;
326 }; 331 };
327 332
328 } 333 }
329 334
330 </style> 335 </style>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698