From c548769c1a167f1e45e0271d169bcdf357696214 Mon Sep 17 00:00:00 2001 From: Andre Miranda Date: Mon, 17 Jun 2024 16:48:42 +0200 Subject: [PATCH 1/2] thunar: Selected sidepane item when disabled should not stand out --- light/gtk-3.0/_xfce.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/light/gtk-3.0/_xfce.scss b/light/gtk-3.0/_xfce.scss index ae27352..f13832f 100644 --- a/light/gtk-3.0/_xfce.scss +++ b/light/gtk-3.0/_xfce.scss @@ -147,7 +147,6 @@ wnck-pager { &:hover { background-color: $selected_bg_color; } } -/* Thunar's sidebar top border */ .thunar { grid :backdrop { color: $insensitive_fg_color; } toolbar { @@ -155,7 +154,10 @@ wnck-pager { entry { min-height: 24px; } } - .sidebar.frame { border-top: 1px solid $borders_color; } + .sidebar { + &.frame { border-top: 1px solid $borders_color; } + .view:selected:backdrop { color: $insensitive_fg_color; } + } } XfdesktopIconView.view { From 8dc38f676d2fbcec7ebed31207f926ad2fb404cb Mon Sep 17 00:00:00 2001 From: Andre Miranda Date: Mon, 17 Jun 2024 19:45:09 +0200 Subject: [PATCH 2/2] Apply fix to the dark theme --- dark/gtk-3.0/_xfce.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dark/gtk-3.0/_xfce.scss b/dark/gtk-3.0/_xfce.scss index f27361f..b120ba1 100644 --- a/dark/gtk-3.0/_xfce.scss +++ b/dark/gtk-3.0/_xfce.scss @@ -146,7 +146,6 @@ wnck-pager { &:hover { background-color: $selected_bg_color; } } -/* Thunar's sidebar top border */ .thunar { :backdrop { color: $insensitive_fg_color; } toolbar { @@ -156,7 +155,10 @@ wnck-pager { entry { min-height: 24px; } } - .sidebar.frame { border-top: 1px solid $borders_color; } + .sidebar { + &.frame { border-top: 1px solid $borders_color; } + .view:selected:backdrop { color: $insensitive_fg_color; } + } } XfdesktopIconView.view {