From e60138231f4b8d64529f86fae49ab2fc85b2b63e Mon Sep 17 00:00:00 2001 From: EliverLara Date: Wed, 3 Jul 2024 15:41:59 -0600 Subject: [PATCH] Gnome 46: Nautilus - Fix file operations indicator appearance --- gtk-4.0/gtk-dark.css | 12 ++++++++++++ gtk-4.0/gtk.css | 12 ++++++++++++ gtk-4.0/widgets/_sidebar.scss | 9 +++++++++ 3 files changed, 33 insertions(+) diff --git a/gtk-4.0/gtk-dark.css b/gtk-4.0/gtk-dark.css index abf7c77..9e62a55 100755 --- a/gtk-4.0/gtk-dark.css +++ b/gtk-4.0/gtk-dark.css @@ -4184,6 +4184,18 @@ placessidebar.sidebar, .nautilus-window .navigation-sidebar { placessidebar.sidebar list:backdrop, .nautilus-window .navigation-sidebar list:backdrop { background-color: transparent; } +.bottom-bar { + background-color: #2e3440; } + .bottom-bar button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .bottom-bar button .view, .bottom-bar button iconview { + background-color: transparent; } + /***************** * GtkSpinButton * *****************/ diff --git a/gtk-4.0/gtk.css b/gtk-4.0/gtk.css index 931b216..8ab9eaf 100755 --- a/gtk-4.0/gtk.css +++ b/gtk-4.0/gtk.css @@ -4184,6 +4184,18 @@ placessidebar.sidebar, .nautilus-window .navigation-sidebar { placessidebar.sidebar list:backdrop, .nautilus-window .navigation-sidebar list:backdrop { background-color: transparent; } +.bottom-bar { + background-color: #2e3440; } + .bottom-bar button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .bottom-bar button .view, .bottom-bar button iconview { + background-color: transparent; } + /***************** * GtkSpinButton * *****************/ diff --git a/gtk-4.0/widgets/_sidebar.scss b/gtk-4.0/widgets/_sidebar.scss index 4105504..ba6f7f0 100644 --- a/gtk-4.0/widgets/_sidebar.scss +++ b/gtk-4.0/widgets/_sidebar.scss @@ -203,3 +203,12 @@ placessidebar.sidebar, .nautilus-window .navigation-sidebar{ } + +// Gnome 46: File operations status bar at the bottom of sidebar +.bottom-bar { + background-color: $_sidebar_color; + button { + @include button(undecorated); + .view { background-color: transparent; } + } +} \ No newline at end of file