diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 7ff5fd0e..947391be 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5214,6 +5214,21 @@ paned headerbar:first-child, hdyleaflet headerbar:first-child, headerbar.titleba paned headerbar:first-child:backdrop, hdyleaflet headerbar:first-child:backdrop, headerbar.titlebar headerbar:first-child:backdrop { background: #292c37; } +/************** + * Tree Views * + **************/ +treeview.view { + border-top-color: #0d0e11; } + treeview.view:backdrop { + border-top-color: #16171d; } + treeview.view header button { + color: #eeeeec; + outline-color: rgba(238, 238, 236, 0.3); + border-color: #0d0e11; + border-bottom-color: black; + background-image: linear-gradient(to top, #292c37 2px, #2e313d); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + /*************** * Popovers * ***************/ diff --git a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css index 7ff5fd0e..947391be 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5214,6 +5214,21 @@ paned headerbar:first-child, hdyleaflet headerbar:first-child, headerbar.titleba paned headerbar:first-child:backdrop, hdyleaflet headerbar:first-child:backdrop, headerbar.titlebar headerbar:first-child:backdrop { background: #292c37; } +/************** + * Tree Views * + **************/ +treeview.view { + border-top-color: #0d0e11; } + treeview.view:backdrop { + border-top-color: #16171d; } + treeview.view header button { + color: #eeeeec; + outline-color: rgba(238, 238, 236, 0.3); + border-color: #0d0e11; + border-bottom-color: black; + background-image: linear-gradient(to top, #292c37 2px, #2e313d); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + /*************** * Popovers * ***************/ diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 4cf37bea..7d7ee06e 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5235,6 +5235,21 @@ paned headerbar:first-child, hdyleaflet headerbar:first-child, headerbar.titleba paned headerbar:first-child:backdrop, hdyleaflet headerbar:first-child:backdrop, headerbar.titlebar headerbar:first-child:backdrop { background: #f7f7f7; } +/************** + * Tree Views * + **************/ +treeview.view { + border-top-color: #d9d9d9; } + treeview.view:backdrop { + border-top-color: #e0e0e0; } + treeview.view header button { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #d9d9d9; + border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, white 2px, white); + box-shadow: inset 0 1px white, inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } + /*************** * Popovers * ***************/ diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index e03e3190..e419d8b0 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -212,6 +212,17 @@ paned, hdyleaflet, headerbar.titlebar { } } +/************** + * Tree Views * + **************/ +treeview.view { + border-top-color: $borders-color; + + &:backdrop { border-top-color: $backdrop_borders_color; } + + header button { @include button(normal); } +} + /*************** * Popovers * ***************/