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

Side by Side Diff: chrome/browser/resources/settings/settings_page_css.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2
2 <link rel="import" href="settings_page/main_page_behavior.html"> 3 <link rel="import" href="settings_page/main_page_behavior.html">
3 4
4 <dom-module id="settings-page-styles"> 5 <dom-module id="settings-page-styles">
5 <template> 6 <template>
6 <style> 7 <style>
7 :host { 8 :host {
8 box-sizing: border-box; 9 box-sizing: border-box;
9 display: block; 10 display: block;
10 height: inherit; 11 height: inherit;
11 margin: 0 auto; 12 margin: 0 auto;
(...skipping 24 matching lines...) Expand all
36 37
37 .expanding, 38 .expanding,
38 .collapsing { 39 .collapsing {
39 /* Must be lower than the cr-toolbar's z-index. 40 /* Must be lower than the cr-toolbar's z-index.
40 * See settings_ui.html. */ 41 * See settings_ui.html. */
41 z-index: 1; 42 z-index: 1;
42 } 43 }
43 </style> 44 </style>
44 </template> 45 </template>
45 </dom-module> 46 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698