| 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>
|
|
|