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

Unified Diff: chrome/browser/resources/ssl/interstitial_v2.css

Issue 339183006: Update the background color for the Safe Browsing interstitial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ssl/interstitial_v2.css
diff --git a/chrome/browser/resources/ssl/interstitial_v2.css b/chrome/browser/resources/ssl/interstitial_v2.css
index 84506997e4ccbe963d7e9970b6b3e813df2f1a77..65b90a17e21c3c9214dfcd4238ffd86fd9105c99 100644
--- a/chrome/browser/resources/ssl/interstitial_v2.css
+++ b/chrome/browser/resources/ssl/interstitial_v2.css
@@ -7,14 +7,14 @@ a {
}
body {
- background: rgb(247, 247, 247);
+ background-color: rgb(247, 247, 247);
Dan Beam 2014/06/17 21:38:34 nit: #hex
felt 2014/06/17 23:16:37 Done.
color: #585858;
font-size: 125%;
}
body.safe-browsing {
- background: rgb(217, 69, 61);
- color: rgb(255, 255, 255);
+ background-color: rgb(206, 52, 38);
+ color: white;
}
button {
@@ -108,11 +108,21 @@ h1 {
.safe-browsing #details,
.safe-browsing #details-button,
.safe-browsing h1 {
- color: rgb(255, 255, 255);
+ color: white;
}
.safe-browsing button {
- background: rgba(255, 255, 255, 0.15);
+ background-color: rgb(206, 52, 38);
+ border: 1px solid white;
+}
+
+.safe-browsing button:active {
+ background-color: rgb(206, 52, 38);
+ border: 1px solid rgb(255, 255, 255, .6);
Dan Beam 2014/06/17 21:38:34 nit: border-color
felt 2014/06/17 23:16:37 Done.
+}
+
+.safe-browsing button:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .50);
Dan Beam 2014/06/17 21:38:34 nit: .5
felt 2014/06/17 23:16:37 Done.
}
.safe-browsing .icon {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698