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

Side by Side Diff: pkg/polymer/lib/src/js/polymer/layout.html

Issue 558673004: update polymer js to 0.4.0 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: review updates Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « pkg/polymer/lib/src/js/polymer/build.log ('k') | pkg/polymer/lib/src/js/polymer/polymer.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 3 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
6 Code distributed by Google as part of the polymer project is also 6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
8 --> 8 -->
9 <style shim-shadowdom> 9 <style shim-shadowdom>
10 /******************************* 10 /*******************************
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 flex-wrap: wrap; 53 flex-wrap: wrap;
54 } 54 }
55 55
56 html /deep/ [layout][wrap-reverse] { 56 html /deep/ [layout][wrap-reverse] {
57 -ms-flex-wrap: wrap-reverse; 57 -ms-flex-wrap: wrap-reverse;
58 -webkit-flex-wrap: wrap-reverse; 58 -webkit-flex-wrap: wrap-reverse;
59 flex-wrap: wrap-reverse; 59 flex-wrap: wrap-reverse;
60 } 60 }
61 61
62 html /deep/ [flex] { 62 html /deep/ [flex] {
63 -ms-flex: 1; 63 -ms-flex: 1 1 0.000000001px;
64 -webkit-flex: 1; 64 -webkit-flex: 1;
65 flex: 1; 65 flex: 1;
66 -webkit-flex-basis: 0.000000001px;
67 flex-basis: 0.000000001px;
68 }
69
70 html /deep/ [vertical][layout] > [flex][auto-vertical], html /deep/ [vertical][l ayout]::shadow [flex][auto-vertical] {
71 -ms-flex: 1 1 auto;
72 -webkit-flex-basis: auto;
73 flex-basis: auto;
66 } 74 }
67 75
68 html /deep/ [flex][auto] { 76 html /deep/ [flex][auto] {
69 -ms-flex: 1 1 auto; 77 -ms-flex: 1 1 auto;
70 -webkit-flex: 1 1 auto; 78 -webkit-flex-basis: auto;
71 flex: 1 1 auto; 79 flex-basis: auto;
72 } 80 }
73 81
74 html /deep/ [flex][none] { 82 html /deep/ [flex][none] {
75 -ms-flex: none; 83 -ms-flex: none;
76 -webkit-flex: none; 84 -webkit-flex: none;
77 flex: none; 85 flex: none;
78 } 86 }
79 87
80 html /deep/ [flex][one] { 88 html /deep/ [flex][one] {
81 -ms-flex: 1; 89 -ms-flex: 1;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 justify-content: center; 191 justify-content: center;
184 } 192 }
185 193
186 html /deep/ [layout][end-justified] { 194 html /deep/ [layout][end-justified] {
187 -ms-flex-pack: end; 195 -ms-flex-pack: end;
188 -webkit-justify-content: flex-end; 196 -webkit-justify-content: flex-end;
189 justify-content: flex-end; 197 justify-content: flex-end;
190 } 198 }
191 199
192 html /deep/ [layout][around-justified] { 200 html /deep/ [layout][around-justified] {
193 -ms-flex-pack: around; 201 -ms-flex-pack: distribute;
194 -webkit-justify-content: space-around; 202 -webkit-justify-content: space-around;
195 justify-content: space-around; 203 justify-content: space-around;
196 } 204 }
197 205
198 html /deep/ [layout][justified] { 206 html /deep/ [layout][justified] {
199 -ms-flex-pack: justify; 207 -ms-flex-pack: justify;
200 -webkit-justify-content: space-between; 208 -webkit-justify-content: space-between;
201 justify-content: space-between; 209 justify-content: space-between;
202 } 210 }
203 211
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 box-sizing: border-box; 277 box-sizing: border-box;
270 margin: 1em 0.5em; 278 margin: 1em 0.5em;
271 padding: 1em; 279 padding: 1em;
272 background-color: white; 280 background-color: white;
273 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); 281 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
274 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); 282 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
275 border-radius: 5px 5px 5px 5px; 283 border-radius: 5px 5px 5px 5px;
276 } 284 }
277 285
278 </style> 286 </style>
OLDNEW
« no previous file with comments | « pkg/polymer/lib/src/js/polymer/build.log ('k') | pkg/polymer/lib/src/js/polymer/polymer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698