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

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

Issue 1912483003: Expand the footer in the material design Clear Browsing Data dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the test. Created 4 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: chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.css
diff --git a/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.css b/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..099d0d5c8d878bf4a81179917c0c8ef034f0b3b6
--- /dev/null
+++ b/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.css
@@ -0,0 +1,52 @@
+/* Copyright 2016 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 {
+ max-width: 700px;
+}
+
+paper-spinner {
+ -webkit-margin-end: 16px;
+ margin-bottom: auto;
+ margin-top: auto;
+}
+
+#generalFooter {
+ margin: 0;
+ min-height: 18px;
+}
+
+#generalFooter iron-icon {
+ height: 18px;
+ width: 18px;
+}
+
+#googleFooter {
+ margin: 0 0 0.8em 0;
+ min-height: 16px;
+}
+
+#googleFooter iron-icon {
+ height: 16px;
+ width: 16px;
+}
+
+.clear-browsing-data-footer .footer-text {
+ -webkit-margin-start: 33px;
+}
+
+.clear-browsing-data-footer iron-icon {
+ float: left;
+ padding-top: 2px; /* Slightly lower the icons, so that their top is
+ approximately at the ascender line of the font. */
dschuyler 2016/04/26 17:29:49 Does this make the clickable area of the icon smal
msramek 2016/04/27 18:10:29 Padding counts towards the size of the object, so
dschuyler 2016/04/27 23:10:40 My mistake. If it's not clickable then this is fi
+}
+
+html[dir='rtl'] .clear-browsing-data-footer iron-icon {
+ float: right;
+}
+
+.clear-browsing-data-footer a {
+ text-decoration: none;
+}
+

Powered by Google App Engine
This is Rietveld 408576698