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

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

Issue 1736733003: MD Settings: Custom expand/collapse section animations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/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-material/paper-ma terial.html">
4 4
5 <dom-module id="settings-section"> 5 <dom-module id="settings-section">
6 <link rel="import" type="css" href="settings_section.css"> 6 <link rel="import" type="css" href="settings_section.css">
7 <template> 7 <template>
8 <div id="header"> 8 <div id="header">
9 <div class="title">{{pageTitle}}</div> 9 <div class="title">{{pageTitle}}</div>
10 </div> 10 </div>
11 <paper-material id="card" animated> 11 <paper-material id="card" animated>
12 <content id="content"></content> 12 <content id="content"></content>
13 </paper-material> 13 </paper-material>
14 <div id="placeholder"></div>
Dan Beam 2016/02/26 19:18:23 huzzah
michaelpg 2016/03/01 00:18:28 Acknowledged.
15 </template> 14 </template>
16 <script src="settings_section.js"></script> 15 <script src="settings_section.js"></script>
17 </dom-module> 16 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698