Chromium Code Reviews| OLD | NEW |
|---|---|
| 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> |
| OLD | NEW |