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

Side by Side Diff: remoting/webapp/app_remoting/html/loading_window.css

Issue 1081813007: Make loading dialog prettier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer feedback. Created 5 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698