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

Side by Side Diff: chrome/browser/resources/security_warnings/interstitial_v2.css

Issue 791083003: Add captive portal interstitial icons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move images to resources/security_warnings/images Created 5 years, 11 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
« no previous file with comments | « chrome/browser/resources/security_warnings/images/2x/captive_portal_page_icon.png ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 } 169 }
170 170
171 .ssl .icon { 171 .ssl .icon {
172 background-image: -webkit-image-set( 172 background-image: -webkit-image-set(
173 url(images/1x/brokenssl_red.png) 1x, 173 url(images/1x/brokenssl_red.png) 1x,
174 url(images/2x/brokenssl_red.png) 2x); 174 url(images/2x/brokenssl_red.png) 2x);
175 } 175 }
176 176
177 .captive-portal .icon { 177 .captive-portal .icon {
178 background-image: -webkit-image-set( 178 background-image: -webkit-image-set(
179 url(../../../app/theme/default_100_percent/common/error_network_offline.pn g) 1x, 179 url(images/1x/captive_portal_page_icon.png) 1x,
180 url(../../../app/theme/default_200_percent/common/error_network_offline.pn g) 2x); 180 url(images/2x/captive_portal_page_icon.png) 2x);
181 } 181 }
182 182
183 .styled-checkbox { 183 .styled-checkbox {
184 float: left; 184 float: left;
185 height: 16px; 185 height: 16px;
186 margin-top: .36em; 186 margin-top: .36em;
187 position: relative; 187 position: relative;
188 width: 16px; 188 width: 16px;
189 } 189 }
190 190
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 } 267 }
268 268
269 .nav-wrapper { 269 .nav-wrapper {
270 margin-top: 30px; 270 margin-top: 30px;
271 } 271 }
272 272
273 .small-link { 273 .small-link {
274 font-size: 1em; 274 font-size: 1em;
275 } 275 }
276 } 276 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/security_warnings/images/2x/captive_portal_page_icon.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698