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

Side by Side Diff: chrome/browser/resources/settings/settings_page/settings_section.html

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts Created 3 years, 10 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 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
3 <link rel="import" href="/animation/animation.html"> 3 <link rel="import" href="../animation/animation.html">
4 4
5 <dom-module id="settings-section"> 5 <dom-module id="settings-section">
6 <template> 6 <template>
7 <style> 7 <style>
8 :host { 8 :host {
9 -webkit-margin-end: 3px; 9 -webkit-margin-end: 3px;
10 -webkit-margin-start: 3px; 10 -webkit-margin-start: 3px;
11 display: flex; 11 display: flex;
12 flex-direction: column; 12 flex-direction: column;
13 /* Margin so the box-shadow isn't clipped during animations. */ 13 /* Margin so the box-shadow isn't clipped during animations. */
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 </style> 61 </style>
62 <div id="header"> 62 <div id="header">
63 <h2 class="title">{{pageTitle}}</h2> 63 <h2 class="title">{{pageTitle}}</h2>
64 </div> 64 </div>
65 <div id="card"> 65 <div id="card">
66 <content id="content"></content> 66 <content id="content"></content>
67 </div> 67 </div>
68 </template> 68 </template>
69 <script src="settings_section.js"></script> 69 <script src="settings_section.js"></script>
70 </dom-module> 70 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698