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

Unified Diff: chrome/browser/resources/chromeos/login/user_pod_row.css

Issue 11308081: cros: Account picker UI for public account. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased on top of 11419184 Created 8 years, 1 month 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: chrome/browser/resources/chromeos/login/user_pod_row.css
diff --git a/chrome/browser/resources/chromeos/login/user_pod_row.css b/chrome/browser/resources/chromeos/login/user_pod_row.css
index 7bb0e24e1ea1aa82509b4bd5ad4d89e26b8b2771..f7ff6e3bab5f6e337d2bf7c7c268bc86cc5f3798 100644
--- a/chrome/browser/resources/chromeos/login/user_pod_row.css
+++ b/chrome/browser/resources/chromeos/login/user_pod_row.css
@@ -144,7 +144,7 @@ html[oobe=new] .name {
opacity: 0;
}
-.pod.focused .name {
+.pod.need-password.focused .name {
display: none;
}
@@ -174,7 +174,8 @@ html[oobe=new] .pod input[type='password'] {
outline: none;
}
-.pod:not(.focused) input[type='password'] {
+.pod:not(.focused) input[type='password'],
+.pod:not(.need-password).focused input[type='password'] {
bartfab (slow) 2012/11/28 15:11:38 How about you add |display: none| to the rule in 1
xiyuan 2012/12/01 00:24:19 Yep, it works. Changed as suggested.
display: none;
}
@@ -233,6 +234,17 @@ html[dir=rtl] .pod .capslock-hint {
visibility: visible;
}
+.pod .managed-badge {
+ bottom: 15px;
+ position: absolute;
+ right: 10px;
bartfab (slow) 2012/11/28 15:11:38 Should this have a "left: auto" to go with the "ri
xiyuan 2012/12/01 00:24:19 The mock's pod is a bit different from the current
+}
+
+html[dir=rtl] .pod .managed-badge {
+ left: 10px;
+ right: auto;
+}
+
.remove-user-button {
-webkit-transition: width 100ms ease-in-out, background 200ms ease-in-out;
background: -webkit-image-set(
@@ -313,4 +325,4 @@ html[oobe=old] .pod.focused .signed-in-indicator {
/* Track shifting of .user-image on pod focus. */
-webkit-transform: translateY(-1px);
-webkit-transition: -webkit-transform 140ms ease;
-}
+}
bartfab (slow) 2012/11/28 15:11:38 Did you accidentally add trailing whitespace here?
xiyuan 2012/12/01 00:24:19 My vim automatically adds a new line break here.

Powered by Google App Engine
This is Rietveld 408576698