This commit is contained in:
vinceliuice 2024-08-28 21:41:33 +08:00
parent 7250790b8b
commit 481d902d64
2 changed files with 18 additions and 0 deletions

View File

@ -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;

View File

@ -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%));
}
}
}