Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 | |
| 6 body { | |
| 7 /* | |
| 8 * Ensure that the scrollWidth of the <html> element takes into account | |
| 9 * content outside the window borders. Without this, resizeWindowToContent | |
| 10 * cannot set the required window width. | |
| 11 */ | |
| 12 overflow: visible; | |
| 13 | |
| 14 /* Eliminate the gap between the background image and the message. */ | |
| 15 line-height: 0; | |
| 16 } | |
| 17 | |
| 18 .message-container { | |
| 19 padding: 20px; | |
| 20 line-height: 16px; | |
| 21 } | |
| 22 | |
| 23 body .message-container { | |
| 24 padding: 12px; | |
| 25 } | |
| 26 | |
| 27 body .button-row { | |
| 28 margin-top: 0; | |
| 29 } | |
| 30 | |
| 31 #splash-image { | |
| 32 -webkit-app-region: drag; | |
| 33 } | |
| 34 | |
| 35 #infobox { | |
| 36 margin-top: 10px; | |
| 37 margin-bottom: 10px; | |
| 38 position: fixed; | |
| 39 top: 0; | |
| 40 } | |
| OLD | NEW |