From 8e3eb0f5fee66ddf2ace8b8e60d8a86b5ad1fcb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20L=C3=B6vdahl?= Date: Fri, 8 Aug 2025 11:07:56 +0300 Subject: [PATCH] ongoingFactEntry: Remove custom style class This fixes the "Enter activity.." text input to actually be usable and visible on my Ubuntu 24.04 (GNOME 46) when using light mode. In dark mode having the extra style class seems to work fine, but in light mode the input field is a light color and the text is also almost in the same color, so you cannot see what you write. --- extension/widgets/ongoingFactEntry.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extension/widgets/ongoingFactEntry.js b/extension/widgets/ongoingFactEntry.js index cd63ae3f..671859fd 100644 --- a/extension/widgets/ongoingFactEntry.js +++ b/extension/widgets/ongoingFactEntry.js @@ -42,8 +42,7 @@ class OngoingFactEntry extends St.Entry { name: 'searchEntry', can_focus: true, track_hover: true, - hint_text: _("Enter activity…"), - style_class: "search-entry" + hint_text: _("Enter activity…") }); this._controller = controller;