From 5b708e77aa4e0c4809b59e61b7ac6ca68d2f9858 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 21 Nov 2025 20:20:52 +0200 Subject: [PATCH 1/2] fix(client/text): wrong strike-through of nested TODOs --- apps/client/src/stylesheets/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index 71c681ac1..9ef1c5e2d 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -2461,7 +2461,7 @@ footer.webview-footer button { transition: opacity 200ms ease; } -.ck-content ul.todo-list li:has(input[type="checkbox"]:checked) span.todo-list__label__description { +.ck-content ul.todo-list li:has(> span.todo-list__label input[type="checkbox"]:checked) > span.todo-list__label span.todo-list__label__description { text-decoration: line-through; opacity: 0.6; } From 4552b2b1587bfc62a618bf3cd961a51c8b56fc33 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 21 Nov 2025 20:50:06 +0200 Subject: [PATCH 2/2] fix(geomap): marker color not respected --- apps/client/src/widgets/collections/geomap/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/collections/geomap/index.css b/apps/client/src/widgets/collections/geomap/index.css index 9fc5dee63..81039ba48 100644 --- a/apps/client/src/widgets/collections/geomap/index.css +++ b/apps/client/src/widgets/collections/geomap/index.css @@ -45,7 +45,7 @@ top: 3px; inset-inline-start: 2px; background-color: white; - color: black; + color: var(--light-theme-custom-color, black); padding: 2px; border-radius: 50%; font-size: 17px; @@ -79,4 +79,4 @@ body[dir=rtl] .geo-map-container .leaflet-div-icon .title-label { .geo-map-container.dark .leaflet-div-icon .title-label { color: white; text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black; -} \ No newline at end of file +}