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

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: Fixed comments for bauerb 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 2ea38bb5f3a4ff37eb5450996f707e822c63f9ab..a412c8319988be77cee7647794679581193ef7e8 100644
--- a/chrome/browser/resources/ssl/interstitial_v2.css
+++ b/chrome/browser/resources/ssl/interstitial_v2.css
@@ -6,12 +6,21 @@ a {
color: rgb(43, 43, 43);
}
+.a-red {
+ color: rgb(255, 255, 255);
+}
+
body {
background: rgb(247, 247, 247);
color: rgb(43, 43, 43);
line-height: 1.7em;
}
+.body-red {
+ background: rgb(217, 69, 61);
+ color: rgb(255, 255, 255);
+}
+
button {
background: rgb(76, 142, 250);
border: 0;
@@ -24,6 +33,10 @@ button {
padding: 8px 24px;
}
+.button-red {
+ background: rgba(255, 255, 255, 0.15);
+}
+
#details {
margin: 40px 0 150px 0;
}
@@ -40,14 +53,23 @@ 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: 69px;
+ height: 72px;
margin: 0 0 40px;
- width: 56px;
+ width: 72px;
+}
+
+.icon-malware {
+ background: -webkit-image-set(
+ url('../safe_browsing/images/1x/stop_sign.png') 1x,
+ url('../safe_browsing/images/2x/stop_sign.png') 2x);
+}
+
+.icon-ssl {
+ background: -webkit-image-set(
+ url('images/1x/brokenssl_red.png') 1x,
+ url('images/2x/brokenssl_red.png') 2x);
}
.interstitial-wrapper {

Powered by Google App Engine
This is Rietveld 408576698