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

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

Issue 2191283002: Two visual fixes in the MD Clear Browsing Data dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.html
diff --git a/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.html b/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.html
index b471c22d415e4c77058627b2533f04a74894126d..4f72ee9aec387cb9b21c18ed0980f4361ffc1d50 100644
--- a/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.html
+++ b/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.html
@@ -30,6 +30,7 @@
#dialog .footer {
background-color: #fff;
+ color: var(--paper-grey-600);
}
.row {
@@ -96,11 +97,15 @@
display: inline;
}
- /* Cap the height on smaller screens to avoid unfavorable clipping. */
+ /* Cap the height on smaller screens to avoid unfavorable clipping.
+ * Replace the bottom margin with padding to avoid the gap between
+ * the scrollbar and the bottom separator. */
@media all and (max-height: 714px) {
- .body {
+ #dialog .body {
+ margin-bottom: 0;
max-height: 270px;
overflow-y: scroll;
+ padding-bottom: 12px;
}
}
</style>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698