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

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

Issue 2129253002: Multi-pod support for lock screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Rebased. Created 4 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
« no previous file with comments | « no previous file | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4ed29cb4012dd67b0777be726d562e97ca3fca04..a2f3553d2d0b4f533d2440b700679c2a6eb93ece 100644
--- a/ui/login/account_picker/user_pod_row.css
+++ b/ui/login/account_picker/user_pod_row.css
@@ -46,6 +46,7 @@ pin-keyboard {
.pod.flying-pin-pod {
transition: height 180ms ease-in-out,
+ left 180ms ease-in-out,
top 180ms ease-in-out,
width 180ms ease-in-out;
}
@@ -216,11 +217,17 @@ html[dir=rtl] .main-pane {
}
.name-container {
- transition: transform 180ms;
+ transition: transform 180ms,
+ opacity 180ms ease-in-out 180ms,
+ visibility 180ms ease-in-out 180ms;
+ opacity : 1;
+ visibility: visible;
}
-.pod.focused .name-container {
- display: none;
+.name-container.pin-enabled {
+ opacity : 0;
+ transition: none;
+ visibility: hidden;
}
.pod.focused.multiprofiles-policy-applied .name-container {
« no previous file with comments | « no previous file | ui/login/account_picker/user_pod_row.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698