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

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

Issue 349313005: update polymer and platform.js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | « no previous file | 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 /******************************* 230 /*******************************
231 Other Layout 231 Other Layout
232 *******************************/ 232 *******************************/
233 233
234 html /deep/ [block] { 234 html /deep/ [block] {
235 display: block; 235 display: block;
236 } 236 }
237 237
238 /* ie support for hidden */ 238 /* ie support for hidden */
239 html /deep/ [hidden] { 239 html /deep/ [hidden] {
240 display: none; 240 display: none !important;
241 } 241 }
242 242
243 html /deep/ [relative] { 243 html /deep/ [relative] {
244 position: relative; 244 position: relative;
245 } 245 }
246 246
247 html /deep/ [fit] { 247 html /deep/ [fit] {
248 position: absolute; 248 position: absolute;
249 top: 0; 249 top: 0;
250 right: 0; 250 right: 0;
(...skipping 18 matching lines...) Expand all
269 box-sizing: border-box; 269 box-sizing: border-box;
270 margin: 1em 0.5em; 270 margin: 1em 0.5em;
271 padding: 1em; 271 padding: 1em;
272 background-color: white; 272 background-color: white;
273 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); 273 -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); 274 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
275 border-radius: 5px 5px 5px 5px; 275 border-radius: 5px 5px 5px 5px;
276 } 276 }
277 277
278 </style> 278 </style>
OLDNEW
« no previous file with comments | « no previous file | pkg/polymer/lib/src/js/polymer/polymer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698