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

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

Issue 1482573002: MD Settings: Adjusting reset-page dialogs styling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years 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_dialog.css
diff --git a/chrome/browser/resources/settings/reset_page/reset_page_dialog.css b/chrome/browser/resources/settings/reset_page/reset_page_dialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..94db6f1f6219f70f2a7f4f01fc2f26227bcc9190
--- /dev/null
+++ b/chrome/browser/resources/settings/reset_page/reset_page_dialog.css
@@ -0,0 +1,57 @@
+/* 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. */
+
+#dialog-content {
+ -webkit-padding-end: 0;
+ -webkit-padding-start: 0;
+ margin-top: 0;
+}
+
+.dialog-title {
+ border-bottom: 1px solid gainsboro;
+ font-size: 1.13em;
+ padding-bottom: 14px;
+ padding-top: 14px;
+}
+
+.dialog-body {
+ font-size: 1em;
+ margin: 20px 0;
+}
+
+.dialog-title,
+.dialog-body {
+ -webkit-padding-end: 24px;
+ -webkit-padding-start: 24px;
+}
+
+.button-container {
+ display: flex;
+}
+
+.action-button {
+ -webkit-margin-start: 10px;
+ background-color: rgb(66, 133, 244);
+ color: white;
+ font-weight: 500;
+}
+
+.cancel-button {
+ color: rgb(66, 133, 244);
+ font-weight: 500;
+}
+
+paper-button {
+ margin: 0;
+}
+
+.explanation {
+ margin-bottom: 35px;
+}
+
+.action-buttons {
+ display: flex;
+ flex: 1;
+ justify-content: flex-end;
+}

Powered by Google App Engine
This is Rietveld 408576698