From f58ac5f6cd6d9d2c1db79105702680c608ae2d9c Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Sat, 12 Apr 2025 20:59:45 +0000 Subject: [PATCH] themes: Define merged titlebar icon colors Resolves #11552 We did not explicitly define the colors for the Minimize, Maximize, and Close button icons for merged titlebars. On some system themes, the color used blends into the titlebar and makes the icon look invisible. This patch makes sure we always define the icon color for the Default theme. --- themes/Default/common.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/themes/Default/common.css b/themes/Default/common.css index 73a822b916..70cc866b32 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -817,6 +817,11 @@ headerbar button.titlebutton, headerbar > menubar { box-shadow: none; } +/* Define icon colors for merged headerbar buttons */ +.minimize image, .maximize image, .close image { + color: @scrollbar-slider-color; +} + .titlebar { padding-top: 0px; padding-bottom: 0px;