From 19fa7d513d1f6dd71a4c87957f3bae4f9531ea87 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 5 May 2022 12:31:51 -0400 Subject: [PATCH] theme: Fix editable label selection When the editable label is in editing mode, selections should appear the same as in other entries. --- gtk/theme/Default/_common.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gtk/theme/Default/_common.scss b/gtk/theme/Default/_common.scss index 89aa344683..fc0f75c5aa 100644 --- a/gtk/theme/Default/_common.scss +++ b/gtk/theme/Default/_common.scss @@ -468,6 +468,15 @@ treeview entry { *******************/ editablelabel > stack > text { @include entry(normal); + + > selection { + background-color: $backdrop_selected_bg_color; + color: transparent; + &:focus-within { + background-color: $selected_text_bg_color; + color: $fg_color; + } + } } /*********** -- 2.30.2