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

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

Issue 1949533003: MD Settings: replace paper-material with paper-material-shared-styles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mation-runner-behavior.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mation-runner-behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
4 <link rel="import" href="chrome://md-settings/settings_page/settings_section_css .html">
4 5
5 <dom-module id="settings-section"> 6 <dom-module id="settings-section">
6 <link rel="import" type="css" href="settings_section.css">
7 <template> 7 <template>
8 <style is="custom-style" include="settings-section-styles">
dschuyler 2016/05/04 22:23:39 Is settings-section-styles likely to be used elsew
michaelpg 2016/05/05 13:36:49 Done.
9 #card {
10 @apply(--shadow-elevation-2dp);
11 }
12 </style>
8 <div id="header"> 13 <div id="header">
9 <div class="title">{{pageTitle}}</div> 14 <div class="title">{{pageTitle}}</div>
10 </div> 15 </div>
11 <paper-material id="card" animated> 16 <div id="card">
michaelpg 2016/05/04 02:55:25 there is a corresponding TODO in main_page_behavio
12 <content id="content"></content> 17 <content id="content"></content>
13 </paper-material> 18 </div>
14 </template> 19 </template>
15 <script src="settings_section.js"></script> 20 <script src="settings_section.js"></script>
16 </dom-module> 21 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698