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

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

Issue 318213002: Add custom interstitial for captive portals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Android builds 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 | Annotate | Revision Log
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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 color: #696969; 167 color: #696969;
168 font-size: .875em; 168 font-size: .875em;
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 {
178 background-image: -webkit-image-set(
179 url(../../../app/theme/default_100_percent/common/error_network_offline.pn g) 1x,
180 url(../../../app/theme/default_200_percent/common/error_network_offline.pn g) 2x);
181 }
182
177 .styled-checkbox { 183 .styled-checkbox {
178 float: left; 184 float: left;
179 height: 16px; 185 height: 16px;
180 margin-top: .36em; 186 margin-top: .36em;
181 position: relative; 187 position: relative;
182 width: 16px; 188 width: 16px;
183 } 189 }
184 190
185 [dir='rtl'] .styled-checkbox { 191 [dir='rtl'] .styled-checkbox {
186 float: right; 192 float: right;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 } 267 }
262 268
263 .nav-wrapper { 269 .nav-wrapper {
264 margin-top: 30px; 270 margin-top: 30px;
265 } 271 }
266 272
267 .small-link { 273 .small-link {
268 font-size: 1em; 274 font-size: 1em;
269 } 275 }
270 } 276 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698