From ae058aaab1a1b922bed6cdd28f41287be002a0f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Guzm=C3=A1n?= Date: Fri, 10 May 2024 06:35:28 +0000 Subject: [PATCH] greybird-gtk-theme: fix caja selected elements on inactive panel at list view --- helpers/make-greybird-gtk-theme | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/helpers/make-greybird-gtk-theme b/helpers/make-greybird-gtk-theme index 19d038b..77a2083 100644 --- a/helpers/make-greybird-gtk-theme +++ b/helpers/make-greybird-gtk-theme @@ -16,7 +16,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -VERSION=11 +VERSION=12 . ./config #correct gtk2 color syntax @@ -125,7 +125,25 @@ style "darkpanel" widget "*Panel*" style "darkpanel" EOF -changelog "Customized for Trisquel" +# fix background non-selected pane - GitLab PH#152 +## light +cat << EOF >> light/gtk-3.0/_others.scss + +treeview.view:selected:not(:focused) { + color: #ffffff; + background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%); +} +EOF +## dark +cat << EOF >> dark/gtk-3.0/_others.scss + +treeview.view:selected:not(:focused) { + color: #ffffff; + background-image: linear-gradient(to bottom, shade(#6699CC, 0.87), shade(#6699CC, 0.95) 100%); +} +EOF + +changelog "Customized for Trisquel" package