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

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

Issue 1418073008: MD Settings: Adding reset page Material UI dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix wrong html path Created 5 years, 2 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/reset_page/reset_page.css
diff --git a/chrome/browser/resources/settings/reset_page/reset_page.css b/chrome/browser/resources/settings/reset_page/reset_page.css
new file mode 100644
index 0000000000000000000000000000000000000000..ebbe46c50414e75d287138fefb5eddf25f67ec20
--- /dev/null
+++ b/chrome/browser/resources/settings/reset_page/reset_page.css
@@ -0,0 +1,40 @@
+/* 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. */
+
+#resetDialog {
+ max-width: 500px;
+ min-width: 300px;
+}
+
+#reset {
+ -webkit-margin-start: 10px;
+ -webkit-padding-end: 15px;
+ -webkit-padding-start: 15px;
+ background-color: rgb(120, 120, 120);
+ color: white;
+}
+
+#learnMore {
+ margin: auto;
+}
Dan Beam 2015/10/29 22:02:00 ^ why is this necessary?
dpapad 2015/10/30 17:45:59 This achieves aligning the text "LEARN MORE" with
dpapad 2015/10/30 18:30:23 Removed as discussed, and using "layout center" on
+
+#learnMore,
+#cancel {
+ color: rgb(94, 94, 94);
+}
+
+
+#explanation {
+ margin: 10px 0;
+}
+
+#buttonContainer {
+ margin-bottom: 15px;
+}
+
+#sendSettings {
+ background-color: rgb(236, 236, 236);
+ margin: 0;
+ padding: 20px;
+}

Powered by Google App Engine
This is Rietveld 408576698