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

Side by Side Diff: chrome/browser/resources/md_user_manager/user_manager_pages.html

Issue 1642323004: User Manager MD User Pods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed Roger's comments, css cleanup, rtl css tweak 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 mated-pages.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-right-animation.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-right-animation.html">
5 5
6 <dom-module id="user-manager-pages"> 6 <dom-module id="user-manager-pages">
7 <link rel="stylesheet" type="css" href="user_manager_pages.css"> 7 <link rel="stylesheet" type="css" href="user_manager_pages.css">
8 <template> 8 <template>
9 <neon-animated-pages id="animatedPages" attr-for-selected="id" 9 <neon-animated-pages id="animated-pages" attr-for-selected="id"
10 selected="[[selectedPage]]" entry-animation="slide-from-left-animation" 10 selected="[[selectedPage]]" entry-animation="slide-from-left-animation"
11 exit-animation="slide-right-animation"> 11 exit-animation="slide-right-animation">
12 <content></content> 12 <content></content>
13 </neon-animated-pages> 13 </neon-animated-pages>
14 </template> 14 </template>
15 <script src="chrome://md-user-manager/user_manager_pages.js"></script> 15 <script src="chrome://md-user-manager/user_manager_pages.js"></script>
16 </dom-module> 16 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698