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

Side by Side Diff: chrome/renderer/resources/neterror.css

Issue 220593006: Fix one of the SSL error pages to work with the new neterror CSS file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: merge Created 6 years, 7 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
« no previous file with comments | « chrome/browser/resources/ssl/blocking.html ('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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 /*******************************************************************************
6 *
7 * Note: This is also used by a file in chrome/browser/resources/ssl. When
8 * updating this file, make sure nothing in that directory regresses.
9 *
10 ******************************************************************************/
Nico 2014/05/06 23:08:04 I'm afraid that this file is long enough that peop
mmenke 2014/05/06 23:34:27 You're probably right, but I don't have a better s
11
5 body { 12 body {
6 background-color: #E6E6E6; 13 background-color: #E6E6E6;
7 font-family: Helvetica, Arial, sans-serif; 14 font-family: Helvetica, Arial, sans-serif;
8 font-size: 10pt; 15 font-size: 10pt;
9 margin: 50px 40px 20px 40px; 16 margin: 50px 40px 20px 40px;
10 } 17 }
11 18
12 #main-frame-error { 19 #main-frame-error {
13 margin: auto; 20 margin: auto;
14 max-width: 540px; 21 max-width: 540px;
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 visibility: visible; 350 visibility: visible;
344 } 351 }
345 352
346 /* If the iframe is too small, always hide the error code. */ 353 /* If the iframe is too small, always hide the error code. */
347 /* TODO(mmenke): See if overflow: no-display works better, once supported. */ 354 /* TODO(mmenke): See if overflow: no-display works better, once supported. */
348 @media (max-width: 200px), (max-height: 95px) { 355 @media (max-width: 200px), (max-height: 95px) {
349 #sub-frame-error-details { 356 #sub-frame-error-details {
350 display: none; 357 display: none;
351 } 358 }
352 } 359 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/ssl/blocking.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698