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

Unified Diff: appengine/config_service/ui/common/auth-signin.html

Issue 2977763002: config_service: Changed lists from paper-items to paper-cards, fixed (Closed)
Patch Set: Fixed nit regarding first letter of sentence in comment. Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: appengine/config_service/ui/common/auth-signin.html
diff --git a/appengine/config_service/ui/common/auth-signin.html b/appengine/config_service/ui/common/auth-signin.html
index 048aa3f327c47391380946308ff0944791847e7a..505e9cb1fcd6957137fc678b42ced8b75e80dc1d 100644
--- a/appengine/config_service/ui/common/auth-signin.html
+++ b/appengine/config_service/ui/common/auth-signin.html
@@ -34,21 +34,11 @@
<dom-module id="auth-signin">
<template>
<style>
- #avatar {
- border-radius: 5px;
- }
+ #avatar { border-radius: 5px; }
- a {
- color: white;
- }
+ .center { vertical-align: middle; }
- .center {
- vertical-align: middle;
- }
-
- .sign-in-font {
- color: black;
- }
+ .typeface { font-size: 75%; }
</style>
<google-signin-aware id="aware"
@@ -61,16 +51,16 @@
<template is="dom-if" if="[[!signed_in]]">
<div id="signinContainer">
<!-- TODO(cwpayton): Before official deployment, change href to "/#/" -->
- <a class="sign-in-font" on-tap="signIn" href="/newui#/">Sign in</a>
+ <a class="typeface" on-tap="signIn" href="/newui#/">Sign in</a>
</div>
</template>
<template is="dom-if" if="[[signed_in]]">
<img class="center" id="avatar" src="[[profile.imageUrl]]" width="30" height="30">
- <span class="center">[[profile.email]]</span>
- <span class="center">|</span>
+ <span class="center typeface">[[profile.email]]</span>
+ <span class="center typeface">|</span>
<!-- TODO(cwpayton): Before official deployment, change href to "/#/" -->
- <a class="center sign-in-font" on-tap="signOut" href="/newui#/">Sign out</a>
+ <a class="center typeface" on-tap="signOut" href="/newui#/">Sign out</a>
</template>
</template>
<script>

Powered by Google App Engine
This is Rietveld 408576698