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

Unified Diff: ui/login/account_picker/user_pod_row.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/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 dc8e1a003b5e9cca5ec857ce19f5d831a3c10262..18c0d0c1038322434e5476e199a678c942f6bf8a 100644
--- a/ui/login/account_picker/user_pod_row.css
+++ b/ui/login/account_picker/user_pod_row.css
@@ -30,13 +30,34 @@ podrow.images-loading {
height: 213px;
outline: none;
position: absolute;
+ top: 0;
transform: scale3d(0.9, 0.9, 0.9);
+ transition: height 500ms ease-in-out,
+ padding 500ms ease-in-out,
+ top 500ms ease-in-out,
+ width 500ms ease-in-out;
width: 180px;
z-index: 0;
}
-.account-picker.flying-pods .pod {
- transition: all 180ms;
+.pod.pin-enabled {
+ height: 600px;
+ padding: 10px;
+ top: -200px !important;
+ width: 256px;
+}
+
+.pod #pin-container {
+ display: block;
+ height: 334px;
+ position: absolute;
+ top: 276px;
+ width: 256px;
+}
+
+#account-picker {
+ height: 100%;
+ width: 100%;
}
.pod.faded {
@@ -60,12 +81,6 @@ podrow[ncolumns='6'] .pod {
.user-image-pane {
background-color: white;
- height: 160px;
- left: 10px;
- position: absolute;
- top: 10px;
- width: 160px;
- z-index: 3;
}
html[dir=rtl] .user-image-pane {
@@ -91,6 +106,15 @@ html:not([screen=login-add-user]) .pod .user-image {
max-height: 160px;
max-width: 160px;
opacity: 0.7;
+ position: absolute;
+ top: 10px;
+ transition: max-height 500ms ease-in-out,
+ max-width 500ms ease-in-out;
+}
+
+html:not([screen=login-add-user]) .pod .user-image.pin-enabled {
+ max-height: 256px;
+ max-width: 256px;
}
html:not([screen=login-add-user]) .pod.focused .user-image {
@@ -110,11 +134,16 @@ html:not([screen=login-add-user]) .pod.focused .user-image {
color: white;
display: block;
font-size: small;
- padding: 3px 0;
+ left: 10px;
position: absolute;
text-align: center;
- top: 0;
- width: 100%;
+ top: 10px;
+ transition: width 500ms ease-in-out;
+ width: 160px;
+}
+
+.pod.signed-in .signed-in-indicator.pin-enabled {
+ width: 256px;
}
.main-pane {
@@ -138,6 +167,16 @@ html[dir=rtl] .main-pane {
width: 160px;
}
+.auth-container.pin-disabled {
+ opacity: 1;
+ transition: opacity 200ms ease-in-out 500ms;
+}
+
+.auth-container.pin-enabled {
jdufault 2016/06/15 22:20:39 Can the user still access this element by tabbing
sammiequon 2016/06/17 01:00:43 Done.
+ opacity: 0;
+ transition: none;
+}
+
.name-container {
transition: transform 180ms;
}

Powered by Google App Engine
This is Rietveld 408576698