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

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

Issue 981203007: Scaffold for MD-Settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: some fixes Created 5 years, 9 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
(Empty)
1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/core-animated-pages/core-ani mated-pages.html">
3 <link rel="import" href="chrome://resources/polymer/core-transition/core-transit ion.html">
4 <link rel="import" href="chrome://resources/polymer/paper-shadow/paper-shadow.ht ml">
5
6 <polymer-element name="cr-settings-main">
7 <template>
8 <link rel="stylesheet" href="settings_main.css">
9 <div id="container">
10 <paper-shadow>
11 <core-animated-pages id="pages" selected="{{selectedPageId}}"
Kyle Horimoto 2015/03/12 18:57:35 nit: Do you think it would be better to give this
michaelpg 2015/03/13 00:47:01 Good idea. I used 'pageContainer'.
12 valueattr="PAGE_ID" transitions="cross-fade">
Jeremy Klein 2015/03/12 06:46:36 For the cross-fade, are you just thinking we'll ad
michaelpg 2015/03/13 00:47:01 No, we'll wrap the entire page in a <section cross
Jeremy Klein 2015/03/13 00:49:31 Cool, that works too. Thanks.
13 <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page>
14 </core-animated-pages>
15 </paper-shadow>
16 </div>
17 </template>
18 <script src="settings_main.js"></script>
19 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698