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

Unified Diff: ui/login/account_picker/user_pod_row.css

Issue 1191273002: ChromeOS: Show the new POD RE-AUTH ICON when users needs to re-auth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use CSS selectors instead of JS code. Created 5 years, 6 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: ui/login/account_picker/user_pod_row.css
diff --git a/ui/login/account_picker/user_pod_row.css b/ui/login/account_picker/user_pod_row.css
index 1685f13e55d76a406044d2d7dff1a45d7781d239..38b8ca0e84db35160d75d95b8cfbb16dd3ee9c52 100644
--- a/ui/login/account_picker/user_pod_row.css
+++ b/ui/login/account_picker/user_pod_row.css
@@ -150,15 +150,27 @@ html[dir=rtl] .main-pane {
display: flex;
}
-.name {
+.name-box {
color: #565656;
/* This should be 15.6px - the equivalent of 14px at 90% scale. */
flex: auto;
font-size: 16px;
margin-top: 12px;
outline: none;
- overflow: hidden;
padding: 0 6px;
+}
+
+.pod[auth-type='onlineSignIn'] .name-box .reauth-warning {
+ color: #ffc107;
dzhioev (left Google) 2015/07/01 21:38:26 Can you please use #f4b400 (Google Yellow 500) ins
Alexander Alekseev 2015/07/02 18:53:40 Done.
+ display: inline-flex;
+}
+
+.pod .name-box .reauth-warning {
+ display: none;
+}
+
+.name {
+ overflow: hidden;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;

Powered by Google App Engine
This is Rietveld 408576698