From 481d902d6493d9e45ddd3afb18595c6ac3bfce4a Mon Sep 17 00:00:00 2001 From: vinceliuice Date: Wed, 28 Aug 2024 21:41:33 +0800 Subject: [PATCH] update --- src/sass/gtk/_common-3.0.scss | 6 ++++++ src/sass/gtk/apps/_misc.scss | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/src/sass/gtk/_common-3.0.scss b/src/sass/gtk/_common-3.0.scss index bb898955..5dcec1f6 100644 --- a/src/sass/gtk/_common-3.0.scss +++ b/src/sass/gtk/_common-3.0.scss @@ -2038,6 +2038,12 @@ $pathbar_button_checked_bg: if($variant == 'light', #808080, #b8b8b8); } } + entry { + &, &:focus { + background-color: $base_color; + } + } + &.separator { min-height: 2px; color: $borders_color; diff --git a/src/sass/gtk/apps/_misc.scss b/src/sass/gtk/apps/_misc.scss index f82aa443..8bb0cbe3 100644 --- a/src/sass/gtk/apps/_misc.scss +++ b/src/sass/gtk/apps/_misc.scss @@ -788,3 +788,15 @@ frame.view list > row { > image { border-radius: 3px; } } } + +// +// FileZilla +// + +window.background:not(.csd) { + > box > widget > widget > widget > widget > widget > widget > widget > scrolledwindow { + entry:focus { + background-color: if($variant == 'light', mix(black, $bg_color, 5%), mix(white, $bg_color, 5%)); + } + } +} \ No newline at end of file