| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |