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

Side by Side Diff: chrome/browser/resources/settings/settings_ui/settings_ui.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/core-drawer-panel/core-drawe r-panel.html">
2 <link rel="import" href="chrome://md-settings/settings_drawer/settings_drawer.ht ml">
3 <link rel="import" href="chrome://md-settings/settings_main/settings_main.html">
4
5 <polymer-element name="cr-settings-ui">
6 <template>
7 <link rel="stylesheet" href="settings_ui.css">
8 <core-drawer-panel drawerWidth="280px">
Jeremy Klein 2015/03/12 06:46:36 Just curious: How does the responsive design look
Oren Blasberg 2015/03/12 18:58:17 Could the drawerWidth=280 be styled via css? Could
michaelpg 2015/03/13 00:47:01 It's kind of silly and may not be the best approac
michaelpg 2015/03/13 00:47:01 Not that I can tell, it seems to be an attribute t
Jeremy Klein 2015/03/13 00:49:31 Yeah, that's fine with me.
9 <cr-settings-drawer drawer id="drawer" pages="{{pages}}"
10 selectedId="{{selectedPageId}}">
11 </cr-settings-drawer>
12 <cr-settings-main main pages="{{pages}}" prefs="{{prefs}}"
13 selectedPageId="{{selectedPageId}}">
14 </cr-settings-main>
15 </core-drawer-panel>
16 </template>
17 <script src="settings_ui.js"></script>
18 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698