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

Unified Diff: ui/login/screen_container.css

Issue 2027683003: Pin keyboard moved to under the user profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fixed patch set 2 errors. Created 4 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/screen_container.css
diff --git a/ui/login/screen_container.css b/ui/login/screen_container.css
index 9a9177503d6ef95adec7a980da4fb9146826776d..176fdbb603730e2712dcab4485303df259726d9e 100644
--- a/ui/login/screen_container.css
+++ b/ui/login/screen_container.css
@@ -23,7 +23,16 @@
#pin-container {
opacity: 0; /* Opacity is set to 1 after the pin element is loaded. */
- transition: opacity 200ms ease-in-out;
+}
+
+#pin-container.pin-enabled {
+ opacity: 1;
+ transition: opacity 200ms ease-in-out 500ms;
+}
+
+#pin-container.pin-disabled {
+ opacity: 0;
jdufault 2016/06/15 22:20:39 Is this needed? It should get this value from #pin
sammiequon 2016/06/17 01:00:43 Done.
+ transition: none;
}
#scroll-container {
@@ -42,7 +51,6 @@
#inner-container {
border-radius: 2px;
- padding: 0;
position: relative;
}
« ui/login/account_picker/user_pod_row.css ('K') | « ui/login/account_picker/user_pod_template.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698