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

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

Issue 319193002: Update the malware interstitial to have the new layout (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased again 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
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 e06b7ffee1635f3c71b69f21a04c1db525d8c77f..e76e014df208e61ad9fe1108f969085ff439a9ad 100644
--- a/chrome/browser/resources/ssl/interstitial_v2.css
+++ b/chrome/browser/resources/ssl/interstitial_v2.css
@@ -12,6 +12,11 @@ body {
font-size: 125%;
}
+body.safe-browsing {
+ background: rgb(217, 69, 61);
+ color: rgb(255, 255, 255);
+}
+
button {
background: rgb(76, 142, 250);
border: 0;
@@ -63,13 +68,10 @@ h1 {
}
.icon {
- background: -webkit-image-set(
- url('images/1x/brokenssl_red.png') 1x,
- url('images/2x/brokenssl_red.png') 2x);
background-repeat: no-repeat;
background-size: 100%;
height: 72px;
- margin: 0 0 45px;
+ margin: 0 0 40px;
width: 72px;
}
@@ -97,6 +99,26 @@ h1 {
margin-top: 39px;
}
+.safe-browsing a {
+ color: rgb(255, 255, 255);
+}
+
+.safe-browsing button {
+ background: rgba(255, 255, 255, 0.15);
+}
+
+.safe-browsing .icon {
+ background: -webkit-image-set(
+ url('../safe_browsing/images/1x/stop_sign.png') 1x,
+ url('../safe_browsing/images/2x/stop_sign.png') 2x);
+}
+
+.ssl .icon {
+ background: -webkit-image-set(
+ url('images/1x/brokenssl_red.png') 1x,
+ url('images/2x/brokenssl_red.png') 2x);
+}
+
@media (max-width: 700px) {
.interstitial-wrapper {
padding: 0 10%;
« no previous file with comments | « chrome/browser/resources/safe_browsing/safe_browsing_v3.js ('k') | chrome/browser/resources/ssl/interstitial_v2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698