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

Unified Diff: ui/login/bubble.css

Issue 2727583002: Desktop error bubble should be yellow. (Closed)
Patch Set: Cleanup. Created 3 years, 10 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 | « chrome/browser/resources/chromeos/login/oobe.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/login/bubble.css
diff --git a/ui/login/bubble.css b/ui/login/bubble.css
index 1d73f4b4fcdb70c4479e651f58f1aad4ef49d76a..289b5fa5368c3b00518b04a6827a69f261007a71 100644
--- a/ui/login/bubble.css
+++ b/ui/login/bubble.css
@@ -18,6 +18,10 @@
transition: opacity 200ms ease-in-out;
}
+body.chromeos .bubble {
+ padding: 16px;
+}
+
/* --- oldstyle begin --- */
.bubble[oldstyle] {
@@ -124,7 +128,7 @@ html[dir=rtl] .bubble-right::after {
/* --- oldstyle end --- */
-.error-message-bubble::before {
+body.chromeos .error-message-bubble::before {
-webkit-mask-image: url(../../ui/webui/resources/images/warning.svg);
-webkit-mask-position: left top;
-webkit-mask-repeat: no-repeat;
@@ -139,7 +143,13 @@ html[dir=rtl] .bubble-right::after {
width: 20px;
}
-.error-message-bubble {
+body:not(.chromeos) .error-message-bubble {
+ -webkit-padding-start: 30px;
+ background: url(chrome://theme/IDR_WARNING) left top no-repeat;
+ background-size: 24px;
+}
+
+body.chromeos .error-message-bubble {
-webkit-padding-start: 20px;
}
@@ -148,7 +158,7 @@ html[dir=rtl] .bubble-right::after {
padding-top: 20px;
}
-.bubble a {
+body.chromeos .bubble a {
color: #7baaf7;
text-decoration: none;
}
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698