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

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: Fixed nits 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..4b29d78db4421360c9c8df8a713654d369d615e3 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: #f7f7f7;
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 {
@@ -28,6 +28,7 @@ button {
font-size: .875em;
height: 36px;
margin: -6px 0 0;
+ outline: 0;
padding: 8px 24px;
transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
@@ -108,11 +109,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-color: rgba(255, 255, 255, .6);
+}
+
+.safe-browsing button:hover {
+ box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
}
.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