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

Side by Side Diff: chrome/browser/resources/chromeos/login/gaia_header.html

Issue 1100623003: ChromeOS Gaia: Polishing Offline UI and Password changed UI according to specs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/polymer/layout.html"> 2 <link rel="import" href="chrome://resources/polymer/polymer/layout.html">
3 3
4 <!-- 4 <!--
5 Blue header for New Gaia UI, contains blue avatar logo and user email. 5 Blue header for New Gaia UI, contains blue avatar logo and user email.
6 6
7 Example: 7 Example:
8 <gaia-header id="passwordHeader"> 8 <gaia-header id="passwordHeader">
9 </gaia-header> 9 </gaia-header>
10 10
11 Attributes: 11 Attributes:
12 'email' - displayed email. 12 'email' - displayed email.
13 --> 13 -->
14 <polymer-element name="gaia-header" flex vertical layout noscript 14 <polymer-element name="gaia-header" flex vertical layout noscript
15 attributes="email"> 15 attributes="email">
16 <template> 16 <template>
17 <div flex vertical justified layout start> 17 <div flex vertical justified layout start>
18 <img self-start src="chrome://theme/IDR_LOGO_AVATAR_CIRCLE_BLUE_COLOR" 18 <img self-start src="chrome://theme/IDR_LOGO_AVATAR_CIRCLE_BLUE_COLOR"
19 alt> 19 alt>
20 <p id="email">{{email}}</p> 20 <p class="email">{{email}}</p>
21 </div> 21 </div>
22 </template> 22 </template>
23 </polymer-element> 23 </polymer-element>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/gaia_card.html ('k') | chrome/browser/resources/chromeos/login/gaia_input_form.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698