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