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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
Index: remoting/webapp/app_remoting/html/loading_window.css
diff --git a/remoting/webapp/app_remoting/html/loading_window.css b/remoting/webapp/app_remoting/html/loading_window.css
new file mode 100644
index 0000000000000000000000000000000000000000..9d3ac43a0520e584dff6b23820d64b5f770d1770
--- /dev/null
+++ b/remoting/webapp/app_remoting/html/loading_window.css
@@ -0,0 +1,40 @@
+/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+body {
+ /*
+ * Ensure that the scrollWidth of the <html> element takes into account
+ * content outside the window borders. Without this, resizeWindowToContent
+ * cannot set the required window width.
+ */
+ overflow: visible;
+
+ /* Eliminate the gap between the background image and the message. */
+ line-height: 0;
+}
+
+.message-container {
+ padding: 20px;
+ line-height: 16px;
+}
+
+body .message-container {
+ padding: 12px;
+}
+
+body .button-row {
+ margin-top: 0;
+}
+
+#splash-image {
+ -webkit-app-region: drag;
+}
+
+#infobox {
+ margin-top: 10px;
+ margin-bottom: 10px;
+ position: fixed;
+ top: 0;
+}

Powered by Google App Engine
This is Rietveld 408576698