| 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..d06134dea694ca2c38dacede2d7ac09550cc63a9 100644
|
| --- a/chrome/browser/resources/ssl/interstitial_v2.css
|
| +++ b/chrome/browser/resources/ssl/interstitial_v2.css
|
| @@ -12,6 +12,11 @@ body {
|
| line-height: 1.7em;
|
| }
|
|
|
| +body.safe-browsing {
|
| + background: rgb(217, 69, 61);
|
| + color: rgb(255, 255, 255);
|
| +}
|
| +
|
| button {
|
| background: rgb(76, 142, 250);
|
| border: 0;
|
| @@ -40,14 +45,11 @@ 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;
|
| }
|
|
|
| .interstitial-wrapper {
|
| @@ -72,6 +74,26 @@ p {
|
| margin-bottom: 22px;
|
| }
|
|
|
| +.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%;
|
|
|