From c8c40937b2f9b2161194aa888cbad273d55bf273 Mon Sep 17 00:00:00 2001 From: frabera Date: Sat, 16 May 2026 17:45:33 +0200 Subject: [PATCH 1/2] apply borders on reply all button --- userChrome.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/userChrome.css b/userChrome.css index 847e68c..d72471c 100644 --- a/userChrome.css +++ b/userChrome.css @@ -634,6 +634,10 @@ tree-view[data-show-grouped-by-sort="true"] .card-layout.children *:hover { border-color: #ececee !important; } +#hdrReplyAllButton { + border-radius: var(--button-border-radius) !important; +} + #hdrReplyAllButton .toolbarbutton-menubutton-button, #hdrReplyAllButton .toolbarbutton-menubutton-dropmarker, #hdrReplyListButton .toolbarbutton-menubutton-button, From fe133f36564c5a536a70368e531857d256766787 Mon Sep 17 00:00:00 2001 From: frabera Date: Sat, 16 May 2026 18:19:15 +0200 Subject: [PATCH 2/2] fix also hdrReplyListButton --- userChrome.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userChrome.css b/userChrome.css index d72471c..22e4af8 100644 --- a/userChrome.css +++ b/userChrome.css @@ -634,7 +634,7 @@ tree-view[data-show-grouped-by-sort="true"] .card-layout.children *:hover { border-color: #ececee !important; } -#hdrReplyAllButton { +#hdrReplyAllButton, #hdrReplyListButton { border-radius: var(--button-border-radius) !important; }