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

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: Remove unnecessary change Created 6 years, 1 month 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 body { 9 body {
10 background-color: #f7f7f7; 10 background-color: #f7f7f7;
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 color: #696969; 161 color: #696969;
162 font-size: .875em; 162 font-size: .875em;
163 } 163 }
164 164
165 .ssl .icon { 165 .ssl .icon {
166 background-image: -webkit-image-set( 166 background-image: -webkit-image-set(
167 url(images/1x/brokenssl_red.png) 1x, 167 url(images/1x/brokenssl_red.png) 1x,
168 url(images/2x/brokenssl_red.png) 2x); 168 url(images/2x/brokenssl_red.png) 2x);
169 } 169 }
170 170
171 .captive-portal .icon {
172 background-image: -webkit-image-set(
173 url('../../../app/theme/default_100_percent/common/error_network_offline.p ng') 1x,
174 url('../../../app/theme/default_200_percent/common/error_network_offline.p ng') 2x);
175 }
176
171 .styled-checkbox { 177 .styled-checkbox {
172 float: left; 178 float: left;
173 height: 16px; 179 height: 16px;
174 margin-top: .36em; 180 margin-top: .36em;
175 position: relative; 181 position: relative;
176 width: 16px; 182 width: 16px;
177 } 183 }
178 184
179 [dir='rtl'] .styled-checkbox { 185 [dir='rtl'] .styled-checkbox {
180 float: right; 186 float: right;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 } 261 }
256 262
257 .nav-wrapper { 263 .nav-wrapper {
258 margin-top: 30px; 264 margin-top: 30px;
259 } 265 }
260 266
261 .small-link { 267 .small-link {
262 font-size: 1em; 268 font-size: 1em;
263 } 269 }
264 } 270 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698