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

Side by Side Diff: components/security_interstitials/core/browser/resources/interstitial_v2.css

Issue 2158113002: Update interstitials to match the new security indicators (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows test fix Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. */ 3 found in the LICENSE file. */
4 4
5 a { 5 a {
6 color: #585858; 6 color: #585858;
7 } 7 }
8 8
9 .bad-clock .icon { 9 .bad-clock .icon {
10 background-image: -webkit-image-set( 10 background-image: -webkit-image-set(
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 } 186 }
187 187
188 .safe-browsing button:hover { 188 .safe-browsing button:hover {
189 box-shadow: 0 2px 3px rgba(0, 0, 0, .5); 189 box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
190 } 190 }
191 191
192 .safe-browsing .error-code { 192 .safe-browsing .error-code {
193 display: none; 193 display: none;
194 } 194 }
195 195
196 .safe-browsing .icon { 196 .safe-browsing .new-icons {
197 background-image: -webkit-image-set(
198 url(images/1x/triangle_white.png) 1x,
199 url(images/2x/triangle_white.png) 2x);
200 }
201
202 .safe-browsing .old-icons {
197 background-image: -webkit-image-set( 203 background-image: -webkit-image-set(
198 url(images/1x/stop_sign.png) 1x, 204 url(images/1x/stop_sign.png) 1x,
199 url(images/2x/stop_sign.png) 2x); 205 url(images/2x/stop_sign.png) 2x);
200 } 206 }
201 207
202 .small-link { 208 .small-link {
203 color: #696969; 209 color: #696969;
204 font-size: .875em; 210 font-size: .875em;
205 } 211 }
206 212
207 .ssl .icon { 213 .ssl .new-icons {
214 background-image: -webkit-image-set(
215 url(images/1x/triangle_red.png) 1x,
216 url(images/2x/triangle_red.png) 2x);
217 }
218
219 .ssl .old-icons {
208 background-image: -webkit-image-set( 220 background-image: -webkit-image-set(
209 url(images/1x/brokenssl_red.png) 1x, 221 url(images/1x/brokenssl_red.png) 1x,
210 url(images/2x/brokenssl_red.png) 2x); 222 url(images/2x/brokenssl_red.png) 2x);
211 } 223 }
212 224
213 .captive-portal .icon { 225 .captive-portal .icon {
214 background-image: -webkit-image-set( 226 background-image: -webkit-image-set(
215 url(images/1x/captive_portal_page_icon.png) 1x, 227 url(images/1x/captive_portal_page_icon.png) 1x,
216 url(images/2x/captive_portal_page_icon.png) 2x); 228 url(images/2x/captive_portal_page_icon.png) 2x);
217 } 229 }
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 width: 100%; 639 width: 100%;
628 } 640 }
629 } 641 }
630 642
631 @media (max-width: 239px) and (orientation: portrait) { 643 @media (max-width: 239px) and (orientation: portrait) {
632 .nav-wrapper { 644 .nav-wrapper {
633 padding-left: 0; 645 padding-left: 0;
634 padding-right: 0; 646 padding-right: 0;
635 } 647 }
636 } 648 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698