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 { |