diff --git a/gtk-3.0/apps/_gnome.scss b/gtk-3.0/apps/_gnome.scss index 4eafb55..2805d0c 100755 --- a/gtk-3.0/apps/_gnome.scss +++ b/gtk-3.0/apps/_gnome.scss @@ -2,7 +2,15 @@ * Nautilus * ************/ .nautilus-window { - + .frame{ + *:selected, *:selected:backdrop{ + background: transparent; + color: $selected_bg_color; + label { + color: $selected_bg_color; + } + } + } paned { > separator { background-image: none; } } diff --git a/gtk-3.0/gtk-dark.css b/gtk-3.0/gtk-dark.css index 130a728..ecb25ca 100755 --- a/gtk-3.0/gtk-dark.css +++ b/gtk-3.0/gtk-dark.css @@ -3030,10 +3030,6 @@ assistant { /************* * Notebooks * *************/ -notebook .frame *:selected, notebook .frame *:selected:backdrop { - background: transparent; - color: #00D3A7; } - notebook > header { padding: 1px; border-color: rgba(238, 238, 238, 0.1); @@ -4085,6 +4081,10 @@ placessidebar.sidebar { background-color: rgba(0, 0, 0, 0.24); } placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon { color: #ffffff; } + placessidebar.sidebar row.sidebar-row:selected:backdrop { + color: rgba(0, 0, 0, 0.54); + background-color: transparent; + background-image: linear-gradient(to right, #00e8b7 40px, rgba(65, 67, 75, 0) 36px, rgba(65, 67, 75, 0) 97%); } placessidebar.sidebar row.sidebar-row:selected .sidebar-icon { -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.8); color: inherit; } @@ -5477,6 +5477,12 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled /************ * Nautilus * ************/ +.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop { + background: transparent; + color: #00D3A7; } + .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label { + color: #00D3A7; } + .nautilus-window paned > separator { background-image: none; } diff --git a/gtk-3.0/gtk.css b/gtk-3.0/gtk.css index 3d0f182..6ccc72e 100755 --- a/gtk-3.0/gtk.css +++ b/gtk-3.0/gtk.css @@ -3037,10 +3037,6 @@ assistant { /************* * Notebooks * *************/ -notebook .frame *:selected, notebook .frame *:selected:backdrop { - background: transparent; - color: #00D3A7; } - notebook > header { padding: 1px; border-color: rgba(0, 0, 0, 0.13); @@ -4092,6 +4088,10 @@ placessidebar.sidebar { background-color: rgba(0, 0, 0, 0.24); } placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon { color: #ffffff; } + placessidebar.sidebar row.sidebar-row:selected:backdrop { + color: rgba(0, 0, 0, 0.54); + background-color: transparent; + background-image: linear-gradient(to right, #00e8b7 40px, rgba(65, 67, 75, 0) 36px, rgba(65, 67, 75, 0) 97%); } placessidebar.sidebar row.sidebar-row:selected .sidebar-icon { -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.8); color: inherit; } @@ -5502,6 +5502,12 @@ window.background.budgie-settings-window.csd > box.horizontal > stack > scrolled /************ * Nautilus * ************/ +.nautilus-window .frame *:selected, .nautilus-window .frame *:selected:backdrop { + background: transparent; + color: #00D3A7; } + .nautilus-window .frame *:selected label, .nautilus-window .frame *:selected:backdrop label { + color: #00D3A7; } + .nautilus-window paned > separator { background-image: none; } diff --git a/gtk-3.0/widgets/_notebooks.scss b/gtk-3.0/widgets/_notebooks.scss index ee792cf..84304dc 100644 --- a/gtk-3.0/widgets/_notebooks.scss +++ b/gtk-3.0/widgets/_notebooks.scss @@ -2,12 +2,6 @@ * Notebooks * *************/ notebook { - .frame{ - *:selected, *:selected:backdrop{ - background: transparent; - color: $selected_bg_color; - } - } > header { padding: 1px; border-color: $borders_color; diff --git a/gtk-3.0/widgets/_sidebar.scss b/gtk-3.0/widgets/_sidebar.scss index fee8e3c..fe8ef82 100644 --- a/gtk-3.0/widgets/_sidebar.scss +++ b/gtk-3.0/widgets/_sidebar.scss @@ -165,10 +165,15 @@ placessidebar{ color: #ffffff; background-color: rgba(0,0,0,0.24); .sidebar-icon { - color: #ffffff; } - } + } + &:backdrop{ + color: rgba(0,0,0,0.54);; + background-color: transparent; + background-image:linear-gradient(to right, #00e8b7 40px, + rgba(65,67,75,0) 36px, rgba(65,67,75,0)97%); + } .sidebar-icon { -gtk-icon-shadow: 0 1px transparentize(#fff, 0.2);