From 182cc74834a3e15954a6b594c8f20661bab4da8c Mon Sep 17 00:00:00 2001 From: Corey Berla Date: Fri, 6 Jan 2023 20:14:15 -0800 Subject: [PATCH] calendar: Add css style for marked days As part of a6f9052cf1c1c7b4224834ed18a63e70477d8729, marked days lost their style, essentially making that function worthless. Previously, they were simply bolded, but that doesn't give them proper justice. --- gtk/theme/Default/_common.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/theme/Default/_common.scss b/gtk/theme/Default/_common.scss index 056d36c8d3..fd25bfc0d6 100644 --- a/gtk/theme/Default/_common.scss +++ b/gtk/theme/Default/_common.scss @@ -3510,6 +3510,10 @@ calendar { @extend %selected_items; border-radius: 3px; } + + &:checked { + background-color: gtkalpha($selected_bg_color, 0.3); + } } > label.day-number.other-month { -- 2.30.2