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

Unified Diff: chrome/browser/resources/print_preview/print_preview.css

Issue 2814893002: Print Preview: Fix small radio buttons (Closed)
Patch Set: Add variables Created 3 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
« 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/print_preview/print_preview.css
diff --git a/chrome/browser/resources/print_preview/print_preview.css b/chrome/browser/resources/print_preview/print_preview.css
index 2f85f76e1694448ec5a4f8d5486bc2222b3b5f82..fe76b9f991c15f640eb04fcf397a8db4c3c667c8 100644
--- a/chrome/browser/resources/print_preview/print_preview.css
+++ b/chrome/browser/resources/print_preview/print_preview.css
@@ -73,14 +73,14 @@ header {
padding-top: 10px;
}
-.right-column .radio input[type='radio'] {
- height: 1.1em;
- width: 1.1em;
-}
-
+.right-column .radio input[type='radio'],
.right-column label input[type='checkbox'] {
- height: 1.1em;
- width: 1.1em;
+ --min-size: 13.19px;
+ --size: 1.1em;
+ height: var(--size);
+ min-height: var(--min-size);
+ min-width: var(--min-size);
+ width: var(--size);
}
.left-column {
« 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