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

Unified Diff: chrome/browser/resources/settings/downloads_page/downloads_page.css

Issue 988783002: Add an initial implementation of the downloads MD settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add the missing demo.js I accidentally omitted in previous patch. Created 5 years, 9 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: chrome/browser/resources/settings/downloads_page/downloads_page.css
diff --git a/chrome/browser/resources/settings/downloads_page/downloads_page.css b/chrome/browser/resources/settings/downloads_page/downloads_page.css
new file mode 100644
index 0000000000000000000000000000000000000000..c23bc9404e955abd08e38753502afe84b7284cbb
--- /dev/null
+++ b/chrome/browser/resources/settings/downloads_page/downloads_page.css
@@ -0,0 +1,25 @@
+/* Copyright 2015 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. */
+
+core-label {
+ margin: 10px;
+}
+
+cr-checkbox {
+ -webkit-margin-end: 10px;
+}
+
+cr-input {
+ width: 300px;
+}
+
+cr-input /deep/ #input {
Kyle Horimoto 2015/03/09 20:16:21 Isn't this a more appropriate use case for ::shado
Oren Blasberg 2015/03/09 21:05:05 Done.
+ /* This ensures that the "Download location" label and the text in the input
+ * itself are vertically aligned. */
+ margin: 0.25em 0;
+}
+
+.location-label {
+ -webkit-margin-end: 10px;
+}

Powered by Google App Engine
This is Rietveld 408576698