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