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

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

Issue 2931063004: Extract colors from wallpaper and dynamically update login screen overlay (Closed)
Patch Set: Address comments Created 3 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/md_screen_account_picker.css
diff --git a/ui/login/account_picker/md_screen_account_picker.css b/ui/login/account_picker/md_screen_account_picker.css
index ca8742c8c0b174b376f22ea5b939cdd93cccd115..7476056118e68432e90e8be4fd99ac07e0a0df88 100644
--- a/ui/login/account_picker/md_screen_account_picker.css
+++ b/ui/login/account_picker/md_screen_account_picker.css
@@ -74,12 +74,16 @@ html[screen=lock] #signin-banner.message-set {
position: absolute;
}
-.small-pod-container::-webkit-scrollbar {
- width: 0;
+.small-pod-container.scroll {
+ background-color: rgba(0, 0, 0, 0.3);
}
-.small-pod-container.scroll {
- background-color: rgba(20, 29, 40, .2);
+.small-pod-container.images-loading {
+ visibility: hidden;
+}
+
+.small-pod-container::-webkit-scrollbar {
+ width: 0;
}
.small-pod-container.scroll::-webkit-scrollbar {
@@ -92,13 +96,17 @@ html[screen=lock] #signin-banner.message-set {
}
.small-pod-container-mask {
- background: linear-gradient(#4FC3F7, transparent);
+ background: linear-gradient(#000, transparent);
height: 112px;
position: absolute;
width: 100%;
z-index: 2;
}
+.small-pod-container-mask.images-loading {
+ visibility: hidden;
+}
+
.small-pod-container-mask.rotate {
transform: rotate(180deg);
}

Powered by Google App Engine
This is Rietveld 408576698