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

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: remove chrome.send call, needs more setup on the C++ side. 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..7dc488faf38006928b08dea2a17f2fdbf3767124
--- /dev/null
+++ b/chrome/browser/resources/settings/reset_page/reset_page.css
@@ -0,0 +1,41 @@
+/* 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;
Dan Beam 2015/10/29 00:46:10 i think internet settings also shows dialogs. can
dpapad 2015/10/29 01:33:09 I 'll look into this tomorrow. Even if sharing CSS
+}
+
+#resetButton {
+ background-color: rgb(120, 120, 120);
+ color: white;
+ margin-left: 10px;
Dan Beam 2015/10/29 00:46:10 RTL
dpapad 2015/10/29 01:33:09 Are you suggesting using -webkit-margin-start inst
Dan Beam 2015/10/29 02:20:25 yes
dpapad 2015/10/29 17:59:19 Done.
+}
+
+a,
+#cancelButton {
+ color: rgb(94, 94, 94);
+}
+
+
+#explanation {
+ margin: 10px 0;
+}
+
+#buttonContainer {
+ margin-bottom: 15px;
+}
+
+a {
+ margin: auto;
+ text-decoration: none;
+ text-transform: uppercase;
Dan Beam 2015/10/29 00:46:10 should we be using paper-button instead then?
dpapad 2015/10/29 01:33:09 I tried this, but makes things more complicated. I
Dan Beam 2015/10/29 02:20:25 an <a> tag with text-transform uppercase is very v
dpapad 2015/10/29 17:59:19 Done.
+ width: 100%;
+}
+
+#sendSettings {
+ background-color: rgb(236, 236, 236);
+ margin: 0;
+ padding: 20px;
+}

Powered by Google App Engine
This is Rietveld 408576698