From bb3a4bc1e873fe77a50136557ff8f8f56c919c2c Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Mon, 10 Jun 2024 13:48:14 +0300 Subject: [PATCH] Fix font size consistency --- mailboxes/folders-lib.pl | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/mailboxes/folders-lib.pl b/mailboxes/folders-lib.pl index 842aa177c..c5717db5c 100755 --- a/mailboxes/folders-lib.pl +++ b/mailboxes/folders-lib.pl @@ -4623,31 +4623,31 @@ if (@calendars) { font-weight: bold; } .calendar-month { - font-size: 21px; + font-size: 19px; color: #1d72ff; text-align: center; padding: 2px 8px; } .calendar-day { - font-size: 24px; + font-size: 19px; text-align: center; padding: 4px 8px; } .calendar-week { - font-size: 16px; + font-size: 13px; border-top: 1px dotted #999999aa; padding: 6px; display: inline-block; } .calendar-details h2 { margin: 0; - font-size: 18px; + font-size: 15px; } .calendar-details p { margin: 4px 0; } .calendar-details .title { - font-size: 20px; + font-size: 16px; } .calendar-details .detail strong { opacity: 0.66; @@ -4657,10 +4657,16 @@ if (@calendars) { margin-top: 0; } details.calendar-details { - font-size: 90%; + font-size: 87%; display: inline-block; margin-left: 9px; } + .calendar-details > .calendar-table-inner .detail:has(strong), + .calendar-details > .calendar-table-inner .detail strong, + .calendar-details > .calendar-table-inner .detail + td { + font-size: 13px; + line-height: 1.2; + } details.calendar-details summary { cursor: help; }