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

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

Issue 2326833002: Submit button incompatiable with desktop chrome. (Closed)
Patch Set: Added null check. Created 4 years, 3 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 a9d964a3335d0f5a6a184d433982a64ce6706131..90c49d34a03a0458321c4bcc729ae465d9748548 100644
--- a/ui/login/account_picker/user_pod_row.css
+++ b/ui/login/account_picker/user_pod_row.css
@@ -161,7 +161,15 @@ html[dir=rtl] .main-pane {
display: flex;
position: absolute;
top: 160px;
+/* On chromeos we extend the width to cover the padding on the user pods. This
+ is so the submit button on chromeos can extend onto the padding as shown on
+ mocks. */
+<if expr="not chromeos">
+ width: 160px;
+</if>
+<if expr="chromeos">
width: 170px;
+</if>
}
.auth-container .submit-button[disabled] {
@@ -246,6 +254,7 @@ html[dir=rtl] .main-pane {
display: none;
}
+<if expr="chromeos">
.capslock-on .capslock-hint-container {
display: block;
flex: none;
@@ -253,6 +262,7 @@ html[dir=rtl] .main-pane {
position: relative;
width: 20px;
}
+</if>
.capslock-hint {
-webkit-margin-end: 6px;
« 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