From 977656cf8695d427da32b575dd917377cc90f6b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 16 Dec 2020 17:51:33 +0100 Subject: [PATCH 01/22] GTK3: theme notebook tabs --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 70 +++++++++++++++++++ share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 70 +++++++++++++++++++ share/themes/Kali-Light/gtk-3.0/gtk.css | 70 +++++++++++++++++++ .../Kali/sass/gtk-sass/_common-tweaks.scss | 68 ++++++++++++++++++ 4 files changed, 278 insertions(+) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index af170494..ba5d1cef 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5245,6 +5245,76 @@ popover.background { .csd popover.background, popover.background { border-color: rgba(13, 14, 17, 0.75); } +/************* + * Notebooks * + *************/ +notebook > header { + border: 0; + padding: 0; + background-color: #1b1d24; } + notebook > header.top > tabs, notebook > header.bottom > tabs, notebook > header.left > tabs, notebook > header.right > tabs { + margin: 0; } + notebook > header.top > tabs > tab, + notebook > header.top > tabs > tab.reorderable-page, notebook > header.bottom > tabs > tab, + notebook > header.bottom > tabs > tab.reorderable-page, notebook > header.left > tabs > tab, + notebook > header.left > tabs > tab.reorderable-page, notebook > header.right > tabs > tab, + notebook > header.right > tabs > tab.reorderable-page { + border: 1px solid transparent; + margin: 3px; } + notebook > header.top > tabs > tab:hover, + notebook > header.top > tabs > tab.reorderable-page:hover, notebook > header.bottom > tabs > tab:hover, + notebook > header.bottom > tabs > tab.reorderable-page:hover, notebook > header.left > tabs > tab:hover, + notebook > header.left > tabs > tab.reorderable-page:hover, notebook > header.right > tabs > tab:hover, + notebook > header.right > tabs > tab.reorderable-page:hover { + color: #eeeeec; + outline-color: rgba(238, 238, 236, 0.3); + border-color: #0d0e11; + border-bottom-color: black; + text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + background-image: linear-gradient(to top, #20232b, #252831 1px); } + notebook > header.top > tabs > tab:checked, + notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, + notebook > header.bottom > tabs > tab.reorderable-page:checked, notebook > header.left > tabs > tab:checked, + notebook > header.left > tabs > tab.reorderable-page:checked, notebook > header.right > tabs > tab:checked, + notebook > header.right > tabs > tab.reorderable-page:checked { + color: #eeeeec; + outline-color: rgba(238, 238, 236, 0.3); + border-color: #0d0e11; + border-bottom-color: black; + background-image: linear-gradient(to top, #20232b 2px, #23252e); + text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + background: #272a34; } + notebook > header.top > tabs > tab:checked:backdrop, + notebook > header.top > tabs > tab.reorderable-page:checked:backdrop, notebook > header.bottom > tabs > tab:checked:backdrop, + notebook > header.bottom > tabs > tab.reorderable-page:checked:backdrop, notebook > header.left > tabs > tab:checked:backdrop, + notebook > header.left > tabs > tab.reorderable-page:checked:backdrop, notebook > header.right > tabs > tab:checked:backdrop, + notebook > header.right > tabs > tab.reorderable-page:checked:backdrop { + color: #888a8d; + border-color: #16171d; + background-image: image(#23252e); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + notebook > header.top { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.bottom { + background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.right { + background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.left { + background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header tab { + border-radius: 4px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + min-height: 24px; } + notebook > header tab button.flat { + margin-top: 1px; + margin-bottom: 1px; } + /************** * GtkInfoBar * **************/ 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 af170494..ba5d1cef 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5245,6 +5245,76 @@ popover.background { .csd popover.background, popover.background { border-color: rgba(13, 14, 17, 0.75); } +/************* + * Notebooks * + *************/ +notebook > header { + border: 0; + padding: 0; + background-color: #1b1d24; } + notebook > header.top > tabs, notebook > header.bottom > tabs, notebook > header.left > tabs, notebook > header.right > tabs { + margin: 0; } + notebook > header.top > tabs > tab, + notebook > header.top > tabs > tab.reorderable-page, notebook > header.bottom > tabs > tab, + notebook > header.bottom > tabs > tab.reorderable-page, notebook > header.left > tabs > tab, + notebook > header.left > tabs > tab.reorderable-page, notebook > header.right > tabs > tab, + notebook > header.right > tabs > tab.reorderable-page { + border: 1px solid transparent; + margin: 3px; } + notebook > header.top > tabs > tab:hover, + notebook > header.top > tabs > tab.reorderable-page:hover, notebook > header.bottom > tabs > tab:hover, + notebook > header.bottom > tabs > tab.reorderable-page:hover, notebook > header.left > tabs > tab:hover, + notebook > header.left > tabs > tab.reorderable-page:hover, notebook > header.right > tabs > tab:hover, + notebook > header.right > tabs > tab.reorderable-page:hover { + color: #eeeeec; + outline-color: rgba(238, 238, 236, 0.3); + border-color: #0d0e11; + border-bottom-color: black; + text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + background-image: linear-gradient(to top, #20232b, #252831 1px); } + notebook > header.top > tabs > tab:checked, + notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, + notebook > header.bottom > tabs > tab.reorderable-page:checked, notebook > header.left > tabs > tab:checked, + notebook > header.left > tabs > tab.reorderable-page:checked, notebook > header.right > tabs > tab:checked, + notebook > header.right > tabs > tab.reorderable-page:checked { + color: #eeeeec; + outline-color: rgba(238, 238, 236, 0.3); + border-color: #0d0e11; + border-bottom-color: black; + background-image: linear-gradient(to top, #20232b 2px, #23252e); + text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + background: #272a34; } + notebook > header.top > tabs > tab:checked:backdrop, + notebook > header.top > tabs > tab.reorderable-page:checked:backdrop, notebook > header.bottom > tabs > tab:checked:backdrop, + notebook > header.bottom > tabs > tab.reorderable-page:checked:backdrop, notebook > header.left > tabs > tab:checked:backdrop, + notebook > header.left > tabs > tab.reorderable-page:checked:backdrop, notebook > header.right > tabs > tab:checked:backdrop, + notebook > header.right > tabs > tab.reorderable-page:checked:backdrop { + color: #888a8d; + border-color: #16171d; + background-image: image(#23252e); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + notebook > header.top { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.bottom { + background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.right { + background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.left { + background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header tab { + border-radius: 4px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + min-height: 24px; } + notebook > header tab button.flat { + margin-top: 1px; + margin-bottom: 1px; } + /************** * GtkInfoBar * **************/ diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index b66b48ab..aa0e9931 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5266,6 +5266,76 @@ popover.background { .csd popover.background, popover.background { border-color: rgba(0, 0, 0, 0.1); } +/************* + * Notebooks * + *************/ +notebook > header { + border: 0; + padding: 0; + background-color: #f2f2f2; } + notebook > header.top > tabs, notebook > header.bottom > tabs, notebook > header.left > tabs, notebook > header.right > tabs { + margin: 0; } + notebook > header.top > tabs > tab, + notebook > header.top > tabs > tab.reorderable-page, notebook > header.bottom > tabs > tab, + notebook > header.bottom > tabs > tab.reorderable-page, notebook > header.left > tabs > tab, + notebook > header.left > tabs > tab.reorderable-page, notebook > header.right > tabs > tab, + notebook > header.right > tabs > tab.reorderable-page { + border: 1px solid transparent; + margin: 3px; } + notebook > header.top > tabs > tab:hover, + notebook > header.top > tabs > tab.reorderable-page:hover, notebook > header.bottom > tabs > tab:hover, + notebook > header.bottom > tabs > tab.reorderable-page:hover, notebook > header.left > tabs > tab:hover, + notebook > header.left > tabs > tab.reorderable-page:hover, notebook > header.right > tabs > tab:hover, + notebook > header.right > tabs > tab.reorderable-page:hover { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #d9d9d9; + border-bottom-color: #c2c2c2; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + 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); + background-image: linear-gradient(to top, #ffffff, white 1px); } + notebook > header.top > tabs > tab:checked, + notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, + notebook > header.bottom > tabs > tab.reorderable-page:checked, notebook > header.left > tabs > tab:checked, + notebook > header.left > tabs > tab.reorderable-page:checked, notebook > header.right > tabs > tab:checked, + notebook > header.right > tabs > tab.reorderable-page:checked { + color: #5c616c; + outline-color: rgba(92, 97, 108, 0.3); + border-color: #d9d9d9; + border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + 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); + background: #fafafa; } + notebook > header.top > tabs > tab:checked:backdrop, + notebook > header.top > tabs > tab.reorderable-page:checked:backdrop, notebook > header.bottom > tabs > tab:checked:backdrop, + notebook > header.bottom > tabs > tab.reorderable-page:checked:backdrop, notebook > header.left > tabs > tab:checked:backdrop, + notebook > header.left > tabs > tab.reorderable-page:checked:backdrop, notebook > header.right > tabs > tab:checked:backdrop, + notebook > header.right > tabs > tab.reorderable-page:checked:backdrop { + color: #aeb0b6; + border-color: #e0e0e0; + background-image: image(#ffffff); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + notebook > header.top { + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.bottom { + background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.right { + background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header.left { + background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) calc(100% - 2px), rgba(0, 0, 0, 0.05) calc(100% - 1px), rgba(0, 0, 0, 0.15)); } + notebook > header tab { + border-radius: 4px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + min-height: 24px; } + notebook > header tab button.flat { + margin-top: 1px; + margin-bottom: 1px; } + /************** * GtkInfoBar * **************/ diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 4f668c16..97e04fa0 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -214,6 +214,74 @@ popover.background { .csd &, & { border-color: if($variant=='light', transparentize(black, 0.9), transparentize($borders_color, 0.25)); } } +/************* + * Notebooks * + *************/ +notebook { + > header { + border: 0; + padding: 0; + background-color: $dark_fill; + + &.top, + &.bottom, + &.left, + &.right { + > tabs { + margin: 0; + + > tab, + > tab.reorderable-page { + border: 1px solid transparent; + margin: 3px; + + &:hover { @include button(hover); } + + &:checked { + @include button(normal); + background: $base_color; + + &:backdrop { @include button(backdrop); } + } + } + } + } + + $gradient: + rgba(black, 0), + rgba(black, 0) calc(100% - 2px), + rgba(black, 0.05) calc(100% - 1px), + rgba(black, 0.15); + + &.top { + background-image: linear-gradient(to bottom, $gradient); + } + + &.bottom { + background-image: linear-gradient(to top, $gradient); + } + + &.right { + background-image: linear-gradient(to left, $gradient); + } + + &.left { + background-image: linear-gradient(to right, $gradient); + } + + tab { + border-radius: $button_radius - 1px; + transition: $button_transition; + min-height: 24px; + + button.flat { + margin-top: 1px; + margin-bottom: 1px; + } + } + } +} + /************** * GtkInfoBar * **************/ From b2a3a8f92f7d20ca2bf4a60f047897af02977f08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 16 Dec 2020 18:35:35 +0100 Subject: [PATCH 02/22] GTK3: avoid hover animations on backdrop state --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 14 +++++++------- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 14 +++++++------- share/themes/Kali-Light/gtk-3.0/gtk.css | 14 +++++++------- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 4 ++-- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index ba5d1cef..a64aa008 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5088,14 +5088,14 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover, button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover { + button.flat:hover:not(:backdrop) { transition: none; } /********** @@ -5261,11 +5261,11 @@ notebook > header { notebook > header.right > tabs > tab.reorderable-page { border: 1px solid transparent; margin: 3px; } - notebook > header.top > tabs > tab:hover, - notebook > header.top > tabs > tab.reorderable-page:hover, notebook > header.bottom > tabs > tab:hover, - notebook > header.bottom > tabs > tab.reorderable-page:hover, notebook > header.left > tabs > tab:hover, - notebook > header.left > tabs > tab.reorderable-page:hover, notebook > header.right > tabs > tab:hover, - notebook > header.right > tabs > tab.reorderable-page:hover { + notebook > header.top > tabs > tab:hover:not(:backdrop), + notebook > header.top > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.bottom > tabs > tab:hover:not(:backdrop), + notebook > header.bottom > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.left > tabs > tab:hover:not(:backdrop), + notebook > header.left > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.right > tabs > tab:hover:not(:backdrop), + notebook > header.right > tabs > tab.reorderable-page:hover:not(:backdrop) { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; 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 ba5d1cef..a64aa008 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5088,14 +5088,14 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover, button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover { + button.flat:hover:not(:backdrop) { transition: none; } /********** @@ -5261,11 +5261,11 @@ notebook > header { notebook > header.right > tabs > tab.reorderable-page { border: 1px solid transparent; margin: 3px; } - notebook > header.top > tabs > tab:hover, - notebook > header.top > tabs > tab.reorderable-page:hover, notebook > header.bottom > tabs > tab:hover, - notebook > header.bottom > tabs > tab.reorderable-page:hover, notebook > header.left > tabs > tab:hover, - notebook > header.left > tabs > tab.reorderable-page:hover, notebook > header.right > tabs > tab:hover, - notebook > header.right > tabs > tab.reorderable-page:hover { + notebook > header.top > tabs > tab:hover:not(:backdrop), + notebook > header.top > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.bottom > tabs > tab:hover:not(:backdrop), + notebook > header.bottom > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.left > tabs > tab:hover:not(:backdrop), + notebook > header.left > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.right > tabs > tab:hover:not(:backdrop), + notebook > header.right > tabs > tab.reorderable-page:hover:not(:backdrop) { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index aa0e9931..e6dc53b1 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5110,14 +5110,14 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover, button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { background: #f2f2f2; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover { + button.flat:hover:not(:backdrop) { transition: none; } /********** @@ -5282,11 +5282,11 @@ notebook > header { notebook > header.right > tabs > tab.reorderable-page { border: 1px solid transparent; margin: 3px; } - notebook > header.top > tabs > tab:hover, - notebook > header.top > tabs > tab.reorderable-page:hover, notebook > header.bottom > tabs > tab:hover, - notebook > header.bottom > tabs > tab.reorderable-page:hover, notebook > header.left > tabs > tab:hover, - notebook > header.left > tabs > tab.reorderable-page:hover, notebook > header.right > tabs > tab:hover, - notebook > header.right > tabs > tab.reorderable-page:hover { + notebook > header.top > tabs > tab:hover:not(:backdrop), + notebook > header.top > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.bottom > tabs > tab:hover:not(:backdrop), + notebook > header.bottom > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.left > tabs > tab:hover:not(:backdrop), + notebook > header.left > tabs > tab.reorderable-page:hover:not(:backdrop), notebook > header.right > tabs > tab:hover:not(:backdrop), + notebook > header.right > tabs > tab.reorderable-page:hover:not(:backdrop) { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 97e04fa0..a47e46f4 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -31,7 +31,7 @@ button { border-color: transparent; transition: $button_transition; - &:hover { + &:hover:not(:backdrop) { @extend %button_active; transition: none; } @@ -235,7 +235,7 @@ notebook { border: 1px solid transparent; margin: 3px; - &:hover { @include button(hover); } + &:hover:not(:backdrop) { @include button(hover); } &:checked { @include button(normal); From 243df0df927e0590b1e229a0c4b159f900c75913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Fri, 18 Dec 2020 14:24:06 +0100 Subject: [PATCH 03/22] GTK3: reduce border-radius to button like widgets --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 96 +++++++++---------- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 96 +++++++++---------- share/themes/Kali-Light/gtk-3.0/gtk.css | 96 +++++++++---------- .../Kali/sass/gtk-sass/_common-tweaks.scss | 4 +- .../Kali/sass/gtk-sass/upstream/_common.scss | 2 +- .../sass/gtk-sass/upstream/_common.scss.patch | 5 + .../Kali/sass/gtk-sass/upstream/sync.sh | 6 +- 7 files changed, 155 insertions(+), 150 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index a64aa008..9c9453b0 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -15,7 +15,7 @@ outline-style: dashed; outline-offset: -3px; outline-width: 1px; - -gtk-outline-radius: 3px; + -gtk-outline-radius: 2px; -gtk-secondary-caret-color: #2777ff; } /*************** @@ -238,7 +238,7 @@ entry { padding-left: 8px; padding-right: 8px; border: 1px solid; - border-radius: 5px; + border-radius: 4px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: white; border-color: #0d0e11; @@ -486,7 +486,7 @@ button { min-width: 16px; padding: 2px 6px; border: 1px solid; - border-radius: 5px; + border-radius: 4px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1249,22 +1249,22 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti -gtk-outline-radius: 0; } .linked:not(.vertical) > combobox:first-child > box > button.combo, combobox.linked button:nth-child(2):dir(rtl), filechooser .path-bar.linked > button:dir(rtl):last-child, filechooser .path-bar.linked > button:dir(ltr):first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat { - border-top-left-radius: 5px; - border-bottom-left-radius: 5px; - -gtk-outline-top-left-radius: 5px; - -gtk-outline-bottom-left-radius: 5px; } + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; } .linked:not(.vertical) > combobox:last-child > box > button.combo, combobox.linked button:nth-child(2):dir(ltr), filechooser .path-bar.linked > button:dir(rtl):first-child, filechooser .path-bar.linked > button:dir(ltr):last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat { border-right-style: solid; - border-top-right-radius: 5px; - border-bottom-right-radius: 5px; - -gtk-outline-top-right-radius: 5px; - -gtk-outline-bottom-right-radius: 5px; } + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-top-right-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } .linked:not(.vertical) > combobox:only-child > box > button.combo, filechooser .path-bar.linked > button:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat { border-style: solid; - border-radius: 5px; - -gtk-outline-radius: 5px; } + border-radius: 4px; + -gtk-outline-radius: 4px; } .linked.vertical > combobox > box > button.combo, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button { border-style: solid solid none solid; @@ -1272,22 +1272,22 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti -gtk-outline-radius: 0; } .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child { - border-top-left-radius: 5px; - border-top-right-radius: 5px; - -gtk-outline-top-left-radius: 5px; - -gtk-outline-top-right-radius: 5px; } + border-top-left-radius: 4px; + border-top-right-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-top-right-radius: 4px; } .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child { border-bottom-style: solid; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; - -gtk-outline-bottom-left-radius: 5px; - -gtk-outline-bottom-right-radius: 5px; } + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child { border-style: solid; - border-radius: 5px; - -gtk-outline-radius: 5px; } + border-radius: 4px; + -gtk-outline-radius: 4px; } .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop, .scale-popup button:hover, calendar.button, button:link:hover, button:link:active, button:link:checked, button:visited:hover, @@ -1308,7 +1308,7 @@ modelbutton.flat, min-height: 26px; padding-left: 5px; padding-right: 5px; - border-radius: 5px; + border-radius: 4px; outline-offset: -2px; } modelbutton.flat:hover, .menuitem.button.flat:hover { @@ -1471,9 +1471,9 @@ spinbutton { spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { border-style: none solid none none; } spinbutton:not(.vertical) button:dir(ltr):last-child { - border-radius: 0 5px 5px 0; } + border-radius: 0 4px 4px 0; } spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 5px 0 0 5px; } + border-radius: 4px 0 0 4px; } .osd spinbutton:not(.vertical) button { border-color: transparent; background-color: transparent; @@ -1524,9 +1524,9 @@ spinbutton { -gtk-icon-shadow: none; box-shadow: none; } .osd spinbutton:not(.vertical) button:dir(ltr):last-child { - border-radius: 0 5px 5px 0; } + border-radius: 0 4px 4px 0; } .osd spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 5px 0 0 5px; } + border-radius: 4px 0 0 4px; } spinbutton.vertical:disabled { color: #888a8d; } spinbutton.vertical:backdrop:disabled { @@ -1544,10 +1544,10 @@ spinbutton { min-width: 32px; padding: 0; } spinbutton.vertical button.up { - border-radius: 5px 5px 0 0; + border-radius: 4px 4px 0 0; border-style: solid solid none solid; } spinbutton.vertical button.down { - border-radius: 0 0 5px 5px; + border-radius: 0 0 4px 4px; border-style: none solid solid solid; } .osd spinbutton.vertical button:first-child { color: white; @@ -1953,8 +1953,8 @@ headerbar.titlebar headerbar:not(.titlebar) { box-shadow: none; } .background .titlebar:backdrop, .background .titlebar { - border-top-left-radius: 8px; - border-top-right-radius: 8px; } + border-top-left-radius: 7px; + border-top-right-radius: 7px; } .background.tiled .titlebar:backdrop, .background.tiled .titlebar, .background.tiled-top .titlebar:backdrop, @@ -2322,7 +2322,7 @@ popover.background { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } .csd popover.background, popover.background { border: 1px solid #0d0e11; - border-radius: 9px; } + border-radius: 8px; } .csd popover.background { background-clip: padding-box; border-color: rgba(13, 14, 17, 0.9); } @@ -4074,8 +4074,8 @@ messagedialog .titlebar { border-top-right-radius: 7px; } messagedialog.csd.background { - border-bottom-left-radius: 9px; - border-bottom-right-radius: 9px; } + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; } messagedialog.csd .dialog-action-area button { padding: 10px 14px; @@ -4085,11 +4085,11 @@ messagedialog.csd .dialog-action-area button { -gtk-outline-radius: 0; } messagedialog.csd .dialog-action-area button:first-child { border-left-style: none; - border-bottom-left-radius: 7px; - -gtk-outline-bottom-left-radius: 7px; } + border-bottom-left-radius: 6px; + -gtk-outline-bottom-left-radius: 6px; } messagedialog.csd .dialog-action-area button:last-child { - border-bottom-right-radius: 7px; - -gtk-outline-bottom-right-radius: 7px; } + border-bottom-right-radius: 6px; + -gtk-outline-bottom-right-radius: 6px; } filechooser .dialog-action-box { border-top: 1px solid #0d0e11; } @@ -4495,7 +4495,7 @@ colorchooser .popover.osd { * Window Decorations * *********************/ decoration { - border-radius: 8px 8px 0 0; + border-radius: 7px 7px 0 0; border-width: 0px; box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(13, 14, 17, 0.9); margin: 10px; } @@ -4515,7 +4515,7 @@ decoration { border-radius: 5px; box-shadow: none; } messagedialog.csd decoration { - border-radius: 8px; + border-radius: 7px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(13, 14, 17, 0.8); } .solid-csd decoration { margin: 0; @@ -5501,7 +5501,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar .app-notification.frame { padding: 5px 10px; margin: 20px; - border-radius: 5px; + border-radius: 4px; border: 1px solid rgba(13, 14, 17, 0.65); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); background-image: none; } @@ -5531,7 +5531,7 @@ placessidebar row { * Window Decorations * *********************/ decoration { - border-radius: 9px 9px 5px 5px; + border-radius: 8px 8px 5px 5px; border: 1px solid #272a34; box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(13, 14, 17, 0.75); } decoration:backdrop { @@ -5580,7 +5580,7 @@ filechooser placessidebar.sidebar, .nautilus-window placessidebar.sidebar row.sidebar-row:selected { margin-left: 6px; margin-right: 6px; - border-radius: 5px; + border-radius: 4px; box-shadow: 0 1px 4px rgba(39, 119, 255, 0.5); transition: box-shadow 200ms ease-out; } filechooser placessidebar.sidebar row.sidebar-row:selected:backdrop, @@ -5616,7 +5616,7 @@ filechooser placessidebar.sidebar, box-shadow: none; border-color: #0d0e11; } .nautilus-window .floating-bar.bottom.left, .nautilus-window .floating-bar.bottom.right { - border-radius: 5px; + border-radius: 4px; border-style: solid; } .path-bar-box:backdrop { @@ -5678,7 +5678,7 @@ filechooser placessidebar.sidebar, margin: 0 5px; } #whiskermenu-window scrolledwindow.frame treeview { background: transparent; - border-radius: 5px; } + border-radius: 4px; } #whiskermenu-window scrolledwindow.frame treeview:hover, #whiskermenu-window scrolledwindow.frame treeview:active, #whiskermenu-window scrolledwindow.frame treeview:selected { background-color: rgba(0, 0, 0, 0.27); color: inherit; } @@ -5706,7 +5706,7 @@ wnck-pager { .lightdm-gtk-greeter #login_window { border: 0; background-color: rgba(35, 37, 46, 0.8); - border-radius: 5px; + border-radius: 4px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.15); } .lightdm-gtk-greeter #login_window entry { background: rgba(35, 37, 46, 0.4); @@ -5719,7 +5719,7 @@ wnck-pager { padding-top: 20px; background: #23252e; border-top: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0 0 5px 5px; + border-radius: 0 0 4px 4px; box-shadow: inset 0 -4px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.27); } .lightdm-gtk-greeter #login_window #buttonbox_frame button { border: 0; 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 a64aa008..9c9453b0 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -15,7 +15,7 @@ outline-style: dashed; outline-offset: -3px; outline-width: 1px; - -gtk-outline-radius: 3px; + -gtk-outline-radius: 2px; -gtk-secondary-caret-color: #2777ff; } /*************** @@ -238,7 +238,7 @@ entry { padding-left: 8px; padding-right: 8px; border: 1px solid; - border-radius: 5px; + border-radius: 4px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: white; border-color: #0d0e11; @@ -486,7 +486,7 @@ button { min-width: 16px; padding: 2px 6px; border: 1px solid; - border-radius: 5px; + border-radius: 4px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1249,22 +1249,22 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti -gtk-outline-radius: 0; } .linked:not(.vertical) > combobox:first-child > box > button.combo, combobox.linked button:nth-child(2):dir(rtl), filechooser .path-bar.linked > button:dir(rtl):last-child, filechooser .path-bar.linked > button:dir(ltr):first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat { - border-top-left-radius: 5px; - border-bottom-left-radius: 5px; - -gtk-outline-top-left-radius: 5px; - -gtk-outline-bottom-left-radius: 5px; } + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; } .linked:not(.vertical) > combobox:last-child > box > button.combo, combobox.linked button:nth-child(2):dir(ltr), filechooser .path-bar.linked > button:dir(rtl):first-child, filechooser .path-bar.linked > button:dir(ltr):last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat { border-right-style: solid; - border-top-right-radius: 5px; - border-bottom-right-radius: 5px; - -gtk-outline-top-right-radius: 5px; - -gtk-outline-bottom-right-radius: 5px; } + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-top-right-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } .linked:not(.vertical) > combobox:only-child > box > button.combo, filechooser .path-bar.linked > button:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat { border-style: solid; - border-radius: 5px; - -gtk-outline-radius: 5px; } + border-radius: 4px; + -gtk-outline-radius: 4px; } .linked.vertical > combobox > box > button.combo, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button { border-style: solid solid none solid; @@ -1272,22 +1272,22 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti -gtk-outline-radius: 0; } .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child { - border-top-left-radius: 5px; - border-top-right-radius: 5px; - -gtk-outline-top-left-radius: 5px; - -gtk-outline-top-right-radius: 5px; } + border-top-left-radius: 4px; + border-top-right-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-top-right-radius: 4px; } .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child { border-bottom-style: solid; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; - -gtk-outline-bottom-left-radius: 5px; - -gtk-outline-bottom-right-radius: 5px; } + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child { border-style: solid; - border-radius: 5px; - -gtk-outline-radius: 5px; } + border-radius: 4px; + -gtk-outline-radius: 4px; } .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop, .scale-popup button:hover, calendar.button, button:link:hover, button:link:active, button:link:checked, button:visited:hover, @@ -1308,7 +1308,7 @@ modelbutton.flat, min-height: 26px; padding-left: 5px; padding-right: 5px; - border-radius: 5px; + border-radius: 4px; outline-offset: -2px; } modelbutton.flat:hover, .menuitem.button.flat:hover { @@ -1471,9 +1471,9 @@ spinbutton { spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { border-style: none solid none none; } spinbutton:not(.vertical) button:dir(ltr):last-child { - border-radius: 0 5px 5px 0; } + border-radius: 0 4px 4px 0; } spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 5px 0 0 5px; } + border-radius: 4px 0 0 4px; } .osd spinbutton:not(.vertical) button { border-color: transparent; background-color: transparent; @@ -1524,9 +1524,9 @@ spinbutton { -gtk-icon-shadow: none; box-shadow: none; } .osd spinbutton:not(.vertical) button:dir(ltr):last-child { - border-radius: 0 5px 5px 0; } + border-radius: 0 4px 4px 0; } .osd spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 5px 0 0 5px; } + border-radius: 4px 0 0 4px; } spinbutton.vertical:disabled { color: #888a8d; } spinbutton.vertical:backdrop:disabled { @@ -1544,10 +1544,10 @@ spinbutton { min-width: 32px; padding: 0; } spinbutton.vertical button.up { - border-radius: 5px 5px 0 0; + border-radius: 4px 4px 0 0; border-style: solid solid none solid; } spinbutton.vertical button.down { - border-radius: 0 0 5px 5px; + border-radius: 0 0 4px 4px; border-style: none solid solid solid; } .osd spinbutton.vertical button:first-child { color: white; @@ -1953,8 +1953,8 @@ headerbar.titlebar headerbar:not(.titlebar) { box-shadow: none; } .background .titlebar:backdrop, .background .titlebar { - border-top-left-radius: 8px; - border-top-right-radius: 8px; } + border-top-left-radius: 7px; + border-top-right-radius: 7px; } .background.tiled .titlebar:backdrop, .background.tiled .titlebar, .background.tiled-top .titlebar:backdrop, @@ -2322,7 +2322,7 @@ popover.background { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } .csd popover.background, popover.background { border: 1px solid #0d0e11; - border-radius: 9px; } + border-radius: 8px; } .csd popover.background { background-clip: padding-box; border-color: rgba(13, 14, 17, 0.9); } @@ -4074,8 +4074,8 @@ messagedialog .titlebar { border-top-right-radius: 7px; } messagedialog.csd.background { - border-bottom-left-radius: 9px; - border-bottom-right-radius: 9px; } + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; } messagedialog.csd .dialog-action-area button { padding: 10px 14px; @@ -4085,11 +4085,11 @@ messagedialog.csd .dialog-action-area button { -gtk-outline-radius: 0; } messagedialog.csd .dialog-action-area button:first-child { border-left-style: none; - border-bottom-left-radius: 7px; - -gtk-outline-bottom-left-radius: 7px; } + border-bottom-left-radius: 6px; + -gtk-outline-bottom-left-radius: 6px; } messagedialog.csd .dialog-action-area button:last-child { - border-bottom-right-radius: 7px; - -gtk-outline-bottom-right-radius: 7px; } + border-bottom-right-radius: 6px; + -gtk-outline-bottom-right-radius: 6px; } filechooser .dialog-action-box { border-top: 1px solid #0d0e11; } @@ -4495,7 +4495,7 @@ colorchooser .popover.osd { * Window Decorations * *********************/ decoration { - border-radius: 8px 8px 0 0; + border-radius: 7px 7px 0 0; border-width: 0px; box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(13, 14, 17, 0.9); margin: 10px; } @@ -4515,7 +4515,7 @@ decoration { border-radius: 5px; box-shadow: none; } messagedialog.csd decoration { - border-radius: 8px; + border-radius: 7px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(13, 14, 17, 0.8); } .solid-csd decoration { margin: 0; @@ -5501,7 +5501,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar .app-notification.frame { padding: 5px 10px; margin: 20px; - border-radius: 5px; + border-radius: 4px; border: 1px solid rgba(13, 14, 17, 0.65); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); background-image: none; } @@ -5531,7 +5531,7 @@ placessidebar row { * Window Decorations * *********************/ decoration { - border-radius: 9px 9px 5px 5px; + border-radius: 8px 8px 5px 5px; border: 1px solid #272a34; box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(13, 14, 17, 0.75); } decoration:backdrop { @@ -5580,7 +5580,7 @@ filechooser placessidebar.sidebar, .nautilus-window placessidebar.sidebar row.sidebar-row:selected { margin-left: 6px; margin-right: 6px; - border-radius: 5px; + border-radius: 4px; box-shadow: 0 1px 4px rgba(39, 119, 255, 0.5); transition: box-shadow 200ms ease-out; } filechooser placessidebar.sidebar row.sidebar-row:selected:backdrop, @@ -5616,7 +5616,7 @@ filechooser placessidebar.sidebar, box-shadow: none; border-color: #0d0e11; } .nautilus-window .floating-bar.bottom.left, .nautilus-window .floating-bar.bottom.right { - border-radius: 5px; + border-radius: 4px; border-style: solid; } .path-bar-box:backdrop { @@ -5678,7 +5678,7 @@ filechooser placessidebar.sidebar, margin: 0 5px; } #whiskermenu-window scrolledwindow.frame treeview { background: transparent; - border-radius: 5px; } + border-radius: 4px; } #whiskermenu-window scrolledwindow.frame treeview:hover, #whiskermenu-window scrolledwindow.frame treeview:active, #whiskermenu-window scrolledwindow.frame treeview:selected { background-color: rgba(0, 0, 0, 0.27); color: inherit; } @@ -5706,7 +5706,7 @@ wnck-pager { .lightdm-gtk-greeter #login_window { border: 0; background-color: rgba(35, 37, 46, 0.8); - border-radius: 5px; + border-radius: 4px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.15); } .lightdm-gtk-greeter #login_window entry { background: rgba(35, 37, 46, 0.4); @@ -5719,7 +5719,7 @@ wnck-pager { padding-top: 20px; background: #23252e; border-top: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0 0 5px 5px; + border-radius: 0 0 4px 4px; box-shadow: inset 0 -4px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.27); } .lightdm-gtk-greeter #login_window #buttonbox_frame button { border: 0; diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index e6dc53b1..b021c4ec 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -15,7 +15,7 @@ outline-style: dashed; outline-offset: -3px; outline-width: 1px; - -gtk-outline-radius: 3px; + -gtk-outline-radius: 2px; -gtk-secondary-caret-color: #2777ff; } /*************** @@ -238,7 +238,7 @@ entry { padding-left: 8px; padding-right: 8px; border: 1px solid; - border-radius: 5px; + border-radius: 4px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: black; border-color: #d9d9d9; @@ -486,7 +486,7 @@ button { min-width: 16px; padding: 2px 6px; border: 1px solid; - border-radius: 5px; + border-radius: 4px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); @@ -1252,22 +1252,22 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti -gtk-outline-radius: 0; } .linked:not(.vertical) > combobox:first-child > box > button.combo, combobox.linked button:nth-child(2):dir(rtl), filechooser .path-bar.linked > button:dir(rtl):last-child, filechooser .path-bar.linked > button:dir(ltr):first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat { - border-top-left-radius: 5px; - border-bottom-left-radius: 5px; - -gtk-outline-top-left-radius: 5px; - -gtk-outline-bottom-left-radius: 5px; } + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; } .linked:not(.vertical) > combobox:last-child > box > button.combo, combobox.linked button:nth-child(2):dir(ltr), filechooser .path-bar.linked > button:dir(rtl):first-child, filechooser .path-bar.linked > button:dir(ltr):last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat { border-right-style: solid; - border-top-right-radius: 5px; - border-bottom-right-radius: 5px; - -gtk-outline-top-right-radius: 5px; - -gtk-outline-bottom-right-radius: 5px; } + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-top-right-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } .linked:not(.vertical) > combobox:only-child > box > button.combo, filechooser .path-bar.linked > button:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat { border-style: solid; - border-radius: 5px; - -gtk-outline-radius: 5px; } + border-radius: 4px; + -gtk-outline-radius: 4px; } .linked.vertical > combobox > box > button.combo, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button { border-style: solid solid none solid; @@ -1275,22 +1275,22 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti -gtk-outline-radius: 0; } .linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child { - border-top-left-radius: 5px; - border-top-right-radius: 5px; - -gtk-outline-top-left-radius: 5px; - -gtk-outline-top-right-radius: 5px; } + border-top-left-radius: 4px; + border-top-right-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-top-right-radius: 4px; } .linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child { border-bottom-style: solid; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; - -gtk-outline-bottom-left-radius: 5px; - -gtk-outline-bottom-right-radius: 5px; } + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } .linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child { border-style: solid; - border-radius: 5px; - -gtk-outline-radius: 5px; } + border-radius: 4px; + -gtk-outline-radius: 4px; } .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop, .scale-popup button:hover, calendar.button, button:link:hover, button:link:active, button:link:checked, button:visited:hover, @@ -1311,7 +1311,7 @@ modelbutton.flat, min-height: 26px; padding-left: 5px; padding-right: 5px; - border-radius: 5px; + border-radius: 4px; outline-offset: -2px; } modelbutton.flat:hover, .menuitem.button.flat:hover { @@ -1480,9 +1480,9 @@ spinbutton { spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { border-style: none solid none none; } spinbutton:not(.vertical) button:dir(ltr):last-child { - border-radius: 0 5px 5px 0; } + border-radius: 0 4px 4px 0; } spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 5px 0 0 5px; } + border-radius: 4px 0 0 4px; } .osd spinbutton:not(.vertical) button { border-color: transparent; background-color: transparent; @@ -1533,9 +1533,9 @@ spinbutton { -gtk-icon-shadow: none; box-shadow: none; } .osd spinbutton:not(.vertical) button:dir(ltr):last-child { - border-radius: 0 5px 5px 0; } + border-radius: 0 4px 4px 0; } .osd spinbutton:not(.vertical) button:dir(rtl):first-child { - border-radius: 5px 0 0 5px; } + border-radius: 4px 0 0 4px; } spinbutton.vertical:disabled { color: #aeb0b6; } spinbutton.vertical:backdrop:disabled { @@ -1553,10 +1553,10 @@ spinbutton { min-width: 32px; padding: 0; } spinbutton.vertical button.up { - border-radius: 5px 5px 0 0; + border-radius: 4px 4px 0 0; border-style: solid solid none solid; } spinbutton.vertical button.down { - border-radius: 0 0 5px 5px; + border-radius: 0 0 4px 4px; border-style: none solid solid solid; } .osd spinbutton.vertical button:first-child { color: white; @@ -1962,8 +1962,8 @@ headerbar.titlebar headerbar:not(.titlebar) { box-shadow: none; } .background .titlebar:backdrop, .background .titlebar { - border-top-left-radius: 8px; - border-top-right-radius: 8px; } + border-top-left-radius: 7px; + border-top-right-radius: 7px; } .background.tiled .titlebar:backdrop, .background.tiled .titlebar, .background.tiled-top .titlebar:backdrop, @@ -2333,7 +2333,7 @@ popover.background { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } .csd popover.background, popover.background { border: 1px solid #d9d9d9; - border-radius: 9px; } + border-radius: 8px; } .csd popover.background { background-clip: padding-box; border-color: rgba(0, 0, 0, 0.23); } @@ -4096,8 +4096,8 @@ messagedialog .titlebar { border-top-right-radius: 7px; } messagedialog.csd.background { - border-bottom-left-radius: 9px; - border-bottom-right-radius: 9px; } + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; } messagedialog.csd .dialog-action-area button { padding: 10px 14px; @@ -4107,11 +4107,11 @@ messagedialog.csd .dialog-action-area button { -gtk-outline-radius: 0; } messagedialog.csd .dialog-action-area button:first-child { border-left-style: none; - border-bottom-left-radius: 7px; - -gtk-outline-bottom-left-radius: 7px; } + border-bottom-left-radius: 6px; + -gtk-outline-bottom-left-radius: 6px; } messagedialog.csd .dialog-action-area button:last-child { - border-bottom-right-radius: 7px; - -gtk-outline-bottom-right-radius: 7px; } + border-bottom-right-radius: 6px; + -gtk-outline-bottom-right-radius: 6px; } filechooser .dialog-action-box { border-top: 1px solid #d9d9d9; } @@ -4517,7 +4517,7 @@ colorchooser .popover.osd { * Window Decorations * *********************/ decoration { - border-radius: 8px 8px 0 0; + border-radius: 7px 7px 0 0; border-width: 0px; box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.23); margin: 10px; } @@ -4537,7 +4537,7 @@ decoration { border-radius: 5px; box-shadow: none; } messagedialog.csd decoration { - border-radius: 8px; + border-radius: 7px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.13); } .solid-csd decoration { margin: 0; @@ -5522,7 +5522,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar .app-notification.frame { padding: 5px 10px; margin: 20px; - border-radius: 5px; + border-radius: 4px; border: 1px solid rgba(0, 0, 0, 0); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15); background-image: none; } @@ -5552,7 +5552,7 @@ placessidebar row { * Window Decorations * *********************/ decoration { - border-radius: 9px 9px 5px 5px; + border-radius: 8px 8px 5px 5px; border: 1px solid #fafafa; box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.1); } decoration:backdrop { @@ -5601,7 +5601,7 @@ filechooser placessidebar.sidebar, .nautilus-window placessidebar.sidebar row.sidebar-row:selected { margin-left: 6px; margin-right: 6px; - border-radius: 5px; + border-radius: 4px; box-shadow: 0 1px 4px rgba(39, 119, 255, 0.5); transition: box-shadow 200ms ease-out; } filechooser placessidebar.sidebar row.sidebar-row:selected:backdrop, @@ -5637,7 +5637,7 @@ filechooser placessidebar.sidebar, box-shadow: none; border-color: #d9d9d9; } .nautilus-window .floating-bar.bottom.left, .nautilus-window .floating-bar.bottom.right { - border-radius: 5px; + border-radius: 4px; border-style: solid; } .path-bar-box:backdrop { @@ -5687,7 +5687,7 @@ filechooser placessidebar.sidebar, margin: 0 5px; } #whiskermenu-window scrolledwindow.frame treeview { background: transparent; - border-radius: 5px; } + border-radius: 4px; } #whiskermenu-window scrolledwindow.frame treeview:hover, #whiskermenu-window scrolledwindow.frame treeview:active, #whiskermenu-window scrolledwindow.frame treeview:selected { background-color: rgba(0, 0, 0, 0.07); color: inherit; } @@ -5715,7 +5715,7 @@ wnck-pager { .lightdm-gtk-greeter #login_window { border: 0; background-color: rgba(255, 255, 255, 0.9); - border-radius: 5px; + border-radius: 4px; box-shadow: inset 0 1px rgba(255, 255, 255, 0.15); } .lightdm-gtk-greeter #login_window entry { background: rgba(255, 255, 255, 0.4); @@ -5728,7 +5728,7 @@ wnck-pager { padding-top: 20px; background: #ffffff; border-top: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 0 0 5px 5px; + border-radius: 0 0 4px 4px; box-shadow: inset 0 -4px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.07); } .lightdm-gtk-greeter #login_window #buttonbox_frame button { border: 0; diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index a47e46f4..df3713da 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -270,7 +270,7 @@ notebook { } tab { - border-radius: $button_radius - 1px; + border-radius: $button_radius; transition: $button_transition; min-height: 24px; @@ -401,7 +401,7 @@ placessidebar { *********************/ decoration { $_border_width: 1px; - border-radius: $window_radius+$_border_width $window_radius+$_border_width $button_radius $button_radius; + border-radius: $window_radius+$_border_width $window_radius+$_border_width $button_radius+$_border_width $button_radius+$_border_width; border: $_border_width solid $base_color; box-shadow: 0 2px 8px 0 transparentize(black, 0.6), diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_common.scss b/src/themes/Kali/sass/gtk-sass/upstream/_common.scss index 316c4aac..68fa54e5 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_common.scss +++ b/src/themes/Kali/sass/gtk-sass/upstream/_common.scss @@ -6,7 +6,7 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); $asset_suffix: if($variant=='dark', '-dark', ''); $backdrop_transition: 200ms ease-out; $button_transition: all 200ms $ease-out-quad; -$button_radius: 5px; +$button_radius: 4px; $menu_radius: 5px; $window_radius: $button_radius + 3; $popover_radius: $button_radius + 4; diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_common.scss.patch b/src/themes/Kali/sass/gtk-sass/upstream/_common.scss.patch index 30fe8b26..c0c35ebb 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_common.scss.patch +++ b/src/themes/Kali/sass/gtk-sass/upstream/_common.scss.patch @@ -1,3 +1,8 @@ +9c9 +< $button_radius: 5px; +--- +> $button_radius: 4px; + 15c15 < $_sizevariant: 'default'; //compact otherwise --- diff --git a/src/themes/Kali/sass/gtk-sass/upstream/sync.sh b/src/themes/Kali/sass/gtk-sass/upstream/sync.sh index ad01e5a8..f2f0293a 100755 --- a/src/themes/Kali/sass/gtk-sass/upstream/sync.sh +++ b/src/themes/Kali/sass/gtk-sass/upstream/sync.sh @@ -7,18 +7,18 @@ RESET='\033[0m' VERSION=3.24.23 echo -echo " $YELLOW[ i ]$RESET Upstream version $VERSION" +echo -e " $YELLOW[ i ]$RESET Upstream version $VERSION" echo while read file; do echo - echo " $GREEN[ * ]$RESET Downloading file $file" + echo -e " $GREEN[ * ]$RESET Downloading file $file" wget https://gitlab.gnome.org/GNOME/gtk/raw/$VERSION/gtk/theme/Adwaita/$file --timestamping --quiet if [ -f $file.patch ] then - echo " $YELLOW[ ~ ]$RESET Apply patch" + echo -e " $YELLOW[ ~ ]$RESET Apply patch" patch $file $file.patch --quiet fi done <<- EOF From 2f2d7de99deca0a0f481a688a9c06eadef6d5686 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Fri, 18 Dec 2020 15:54:34 +0100 Subject: [PATCH 04/22] GTK3: improve button visibility with lighter background colors --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 74 +++++++++---------- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 74 +++++++++---------- share/themes/Kali-Light/gtk-3.0/gtk.css | 28 +++---- .../Kali/sass/gtk-sass/upstream/_drawing.scss | 5 +- .../gtk-sass/upstream/_drawing.scss.patch | 9 +++ 5 files changed, 99 insertions(+), 91 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 9c9453b0..33234849 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -492,10 +492,10 @@ button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } button.titlebutton, button.sidebar-button, notebook > header > tabs > arrow, notebook > header > tabs > arrow.flat, button.flat { border-color: transparent; @@ -520,7 +520,7 @@ button { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, @@ -802,7 +802,7 @@ button.suggested-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #2274ff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -952,10 +952,10 @@ button.destructive-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #790e0e; border-bottom-color: #4b0909; - background-image: linear-gradient(to top, #a21313 2px, #a61414); + background-image: linear-gradient(to top, #a61414 2px, #bd1616); text-shadow: 0 -1px rgba(0, 0, 0, 0.708235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.708235); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action.flat { border-color: transparent; @@ -973,7 +973,7 @@ button.destructive-action { border-bottom-color: #4b0909; text-shadow: 0 -1px rgba(0, 0, 0, 0.660235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.660235); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to top, #a21313, #ab1414 1px); } button.destructive-action:active, @@ -1147,11 +1147,11 @@ button.circular { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #20232b 2px, #23252e), linear-gradient(to top, black 25%, #0d0e11 50%); + 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); + background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } button.circular:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { @@ -1161,7 +1161,7 @@ button.circular { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } @@ -1185,10 +1185,10 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } .inline-toolbar toolbutton > button:hover { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1196,7 +1196,7 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #eeeeec; @@ -1339,7 +1339,7 @@ list row button.image-button:not(.flat) { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #eeeeec; @@ -1739,7 +1739,7 @@ headerbar { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #2274ff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -1843,10 +1843,10 @@ headerbar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:hover, .selection-mode.titlebar:not(headerbar) button.suggested-action:hover, .selection-mode headerbar button.suggested-action:hover, headerbar.selection-mode button.suggested-action:hover { @@ -1856,7 +1856,7 @@ headerbar { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, @@ -2721,14 +2721,14 @@ switch { text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); background-image: linear-gradient(to bottom, #292c37 20%, #23252e 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } switch image { color: transparent; } switch:hover slider { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #040405; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to bottom, #303340 20%, #272a34 90%); } switch:checked > slider { border: 1px solid #00215a; } @@ -3179,7 +3179,7 @@ scale { text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; border-radius: 100%; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); @@ -3188,7 +3188,7 @@ scale { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to bottom, #23252e 20%, #1a1c23 90%); } scale slider:active { border-color: #00348d; } @@ -4286,10 +4286,10 @@ infobar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -4297,7 +4297,7 @@ infobar { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #eeeeec; @@ -4435,10 +4435,10 @@ colorswatch#add-color-button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } colorswatch#add-color-button overlay:hover { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -4446,7 +4446,7 @@ colorswatch#add-color-button { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } colorswatch#add-color-button overlay:backdrop { color: #888a8d; @@ -5136,7 +5136,7 @@ switch { text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; border-radius: 50%; transition-property: background, border, box-shadow; } @@ -5272,7 +5272,7 @@ notebook > header { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, @@ -5283,10 +5283,10 @@ notebook > header { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background: #272a34; } notebook > header.top > tabs > tab:checked:backdrop, notebook > header.top > tabs > tab.reorderable-page:checked:backdrop, notebook > header.bottom > tabs > tab:checked:backdrop, @@ -5338,7 +5338,7 @@ infobar.info button, infobar.info.action:hover button { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #2274ff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -5393,7 +5393,7 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; - background-image: linear-gradient(to top, #f87a00 2px, #fd7d00); + background-image: linear-gradient(to top, #fd7d00 2px, #ff8a18); text-shadow: 0 -1px rgba(0, 0, 0, 0.603137); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.603137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -5447,7 +5447,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; - background-image: linear-gradient(to top, #ba1616 2px, #bf1717); + background-image: linear-gradient(to top, #bf1717 2px, #d61a1a); text-shadow: 0 -1px rgba(0, 0, 0, 0.664314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.664314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -5458,7 +5458,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar border-bottom-color: #640c0c; text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to top, #ba1616, #c41818 1px); } infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { color: #ffffff; 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 9c9453b0..33234849 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -492,10 +492,10 @@ button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } button.titlebutton, button.sidebar-button, notebook > header > tabs > arrow, notebook > header > tabs > arrow.flat, button.flat { border-color: transparent; @@ -520,7 +520,7 @@ button { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, @@ -802,7 +802,7 @@ button.suggested-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #2274ff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -952,10 +952,10 @@ button.destructive-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #790e0e; border-bottom-color: #4b0909; - background-image: linear-gradient(to top, #a21313 2px, #a61414); + background-image: linear-gradient(to top, #a61414 2px, #bd1616); text-shadow: 0 -1px rgba(0, 0, 0, 0.708235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.708235); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action.flat { border-color: transparent; @@ -973,7 +973,7 @@ button.destructive-action { border-bottom-color: #4b0909; text-shadow: 0 -1px rgba(0, 0, 0, 0.660235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.660235); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to top, #a21313, #ab1414 1px); } button.destructive-action:active, @@ -1147,11 +1147,11 @@ button.circular { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #20232b 2px, #23252e), linear-gradient(to top, black 25%, #0d0e11 50%); + 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); + background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } button.circular:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { @@ -1161,7 +1161,7 @@ button.circular { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } @@ -1185,10 +1185,10 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } .inline-toolbar toolbutton > button:hover { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1196,7 +1196,7 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #eeeeec; @@ -1339,7 +1339,7 @@ list row button.image-button:not(.flat) { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #eeeeec; @@ -1739,7 +1739,7 @@ headerbar { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #2274ff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -1843,10 +1843,10 @@ headerbar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:hover, .selection-mode.titlebar:not(headerbar) button.suggested-action:hover, .selection-mode headerbar button.suggested-action:hover, headerbar.selection-mode button.suggested-action:hover { @@ -1856,7 +1856,7 @@ headerbar { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, @@ -2721,14 +2721,14 @@ switch { text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); background-image: linear-gradient(to bottom, #292c37 20%, #23252e 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } switch image { color: transparent; } switch:hover slider { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #040405; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to bottom, #303340 20%, #272a34 90%); } switch:checked > slider { border: 1px solid #00215a; } @@ -3179,7 +3179,7 @@ scale { text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; border-radius: 100%; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); @@ -3188,7 +3188,7 @@ scale { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to bottom, #23252e 20%, #1a1c23 90%); } scale slider:active { border-color: #00348d; } @@ -4286,10 +4286,10 @@ infobar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -4297,7 +4297,7 @@ infobar { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #eeeeec; @@ -4435,10 +4435,10 @@ colorswatch#add-color-button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } + 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); } colorswatch#add-color-button overlay:hover { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -4446,7 +4446,7 @@ colorswatch#add-color-button { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } colorswatch#add-color-button overlay:backdrop { color: #888a8d; @@ -5136,7 +5136,7 @@ switch { text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; border-radius: 50%; transition-property: background, border, box-shadow; } @@ -5272,7 +5272,7 @@ notebook > header { border-bottom-color: black; text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background-image: linear-gradient(to top, #20232b, #252831 1px); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, @@ -5283,10 +5283,10 @@ notebook > header { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #20232b 2px, #23252e); + background-image: linear-gradient(to top, #292c37 2px, #2e313d); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + 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); background: #272a34; } notebook > header.top > tabs > tab:checked:backdrop, notebook > header.top > tabs > tab.reorderable-page:checked:backdrop, notebook > header.bottom > tabs > tab:checked:backdrop, @@ -5338,7 +5338,7 @@ infobar.info button, infobar.info.action:hover button { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #2274ff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -5393,7 +5393,7 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; - background-image: linear-gradient(to top, #f87a00 2px, #fd7d00); + background-image: linear-gradient(to top, #fd7d00 2px, #ff8a18); text-shadow: 0 -1px rgba(0, 0, 0, 0.603137); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.603137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -5447,7 +5447,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; - background-image: linear-gradient(to top, #ba1616 2px, #bf1717); + background-image: linear-gradient(to top, #bf1717 2px, #d61a1a); text-shadow: 0 -1px rgba(0, 0, 0, 0.664314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.664314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } @@ -5458,7 +5458,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar border-bottom-color: #640c0c; text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); background-image: linear-gradient(to top, #ba1616, #c41818 1px); } infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { color: #ffffff; diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index b021c4ec..cc9c9e69 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -492,7 +492,7 @@ button { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + background-image: linear-gradient(to top, white 2px, white); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } @@ -805,7 +805,7 @@ button.suggested-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #136aff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } @@ -955,7 +955,7 @@ button.destructive-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #a61414; border-bottom-color: #790e0e; - background-image: linear-gradient(to top, #c21717 2px, #d41919); + background-image: linear-gradient(to top, #d41919 2px, #e52222); text-shadow: 0 -1px rgba(0, 0, 0, 0.628235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.628235); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(166, 20, 20, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } @@ -1150,11 +1150,11 @@ button.circular { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + background-image: linear-gradient(to top, white 2px, white); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); + background-image: linear-gradient(to top, white 2px, white), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); border-color: transparent; } button.circular:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { @@ -1188,7 +1188,7 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + background-image: linear-gradient(to top, white 2px, white); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } @@ -1748,7 +1748,7 @@ headerbar { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #136aff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } @@ -1852,7 +1852,7 @@ headerbar { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + background-image: linear-gradient(to top, white 2px, white); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); @@ -4308,7 +4308,7 @@ infobar { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + background-image: linear-gradient(to top, white 2px, white); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } @@ -4457,7 +4457,7 @@ colorswatch#add-color-button { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + background-image: linear-gradient(to top, white 2px, white); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } @@ -5304,7 +5304,7 @@ notebook > header { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, whitesmoke 2px, #ffffff); + background-image: linear-gradient(to top, white 2px, white); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); @@ -5359,7 +5359,7 @@ infobar.info button, infobar.info.action:hover button { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; - background-image: linear-gradient(to top, #136aff 2px, #2777ff); + background-image: linear-gradient(to top, #2777ff 2px, #4187ff); text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } @@ -5414,7 +5414,7 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; - background-image: linear-gradient(to top, #e97300 2px, #fd7d00); + background-image: linear-gradient(to top, #fd7d00 2px, #ff8a18); text-shadow: 0 -1px rgba(0, 0, 0, 0.603137); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.603137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } @@ -5468,7 +5468,7 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; - background-image: linear-gradient(to top, #ad1515 2px, #bf1717); + background-image: linear-gradient(to top, #bf1717 2px, #d61a1a); text-shadow: 0 -1px rgba(0, 0, 0, 0.664314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.664314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss index 688da61c..05e5bf4d 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss +++ b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss @@ -142,7 +142,7 @@ @else if lightness($c)>80% { @return transparentize(white, 0.5); } @else if lightness($c)>50% { @return transparentize(white, 0.8); } @else if lightness($c)>40% { @return transparentize(white, 0.9); } - @else { @return transparentize(white, 0.98); } + @else { @return transparentize(white, 0.95); } } @mixin _button_text_shadow ($tc:$fg_color, $bg:$bg_color) { @@ -196,8 +196,7 @@ outline-color: transparentize($tc, 0.7); border-color: if($c != $bg_color, _border_color($c), $borders_color); border-bottom-color: if($c != $bg_color, _border_color($c, true), $alt_borders_color); - $button_fill: if($variant == 'light', linear-gradient(to top, darken($c, 4%) 2px, $c), - linear-gradient(to top, darken($c,1%) 2px, $c)) !global; + $button_fill: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)) !global; background-image: $button_fill; @include _button_text_shadow($tc, $c); @include _shadows(inset 0 1px $_hilight_color, $_button_edge, $_button_shadow); diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch index 74536b59..75bda0b9 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch +++ b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch @@ -1,4 +1,13 @@ +145c145 +< @else { @return transparentize(white, 0.98); } +--- +> @else { @return transparentize(white, 0.95); } 189c189 < $_button_shadow: 0 1px 2px transparentize($shadow_color, 0.03); --- > $_button_shadow: inset 0 -1px 0 transparentize(if($c != $bg_color, _border_color($c), $borders_color), .25), 0 1px 2px transparentize($shadow_color, 0.03); +199,200c199 +< $button_fill: if($variant == 'light', linear-gradient(to top, darken($c, 4%) 2px, $c), +< linear-gradient(to top, darken($c,1%) 2px, $c)) !global; +--- +> $button_fill: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)) !global; From 67a1d5ae86d00ff823ff2bfccc5824bb5ac02efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Fri, 18 Dec 2020 17:36:35 +0100 Subject: [PATCH 05/22] GTK3: remove hover animation for link buttons --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk.css | 4 ++-- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 33234849..d0bf9866 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5088,14 +5088,14 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop) { + button.flat:hover:not(:backdrop):not(:link):not(:visited) { transition: none; } /********** 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 33234849..d0bf9866 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5088,14 +5088,14 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop) { + button.flat:hover:not(:backdrop):not(:link):not(:visited) { transition: none; } /********** diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index cc9c9e69..e7a79184 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5110,14 +5110,14 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { background: #f2f2f2; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop) { + button.flat:hover:not(:backdrop):not(:link):not(:visited) { transition: none; } /********** diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index df3713da..9c945f39 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -31,7 +31,7 @@ button { border-color: transparent; transition: $button_transition; - &:hover:not(:backdrop) { + &:hover:not(:backdrop):not(:link):not(:visited) { @extend %button_active; transition: none; } From c742577e73e6793906f466302d657303fcc8ac51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Fri, 18 Dec 2020 17:41:27 +0100 Subject: [PATCH 06/22] GTK3: add light bottom shadows to widgets simulating depth --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk.css | 4 ++-- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index d0bf9866..aa1aa432 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5090,7 +5090,7 @@ headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { background: #1b1d24; - box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; @@ -5103,7 +5103,7 @@ button.flat { **********/ spinbutton:not(.vertical), entry { - box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); background-color: #1b1d24; } headerbar spinbutton:not(.vertical), 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 d0bf9866..aa1aa432 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5090,7 +5090,7 @@ headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { background: #1b1d24; - box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; @@ -5103,7 +5103,7 @@ button.flat { **********/ spinbutton:not(.vertical), entry { - box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3); + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); background-color: #1b1d24; } headerbar spinbutton:not(.vertical), diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index e7a79184..b10a5b6f 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5112,7 +5112,7 @@ headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { background: #f2f2f2; - box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; @@ -5125,7 +5125,7 @@ button.flat { **********/ spinbutton:not(.vertical), entry { - box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.05); } headerbar spinbutton:not(.vertical), headerbar entry { diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 9c945f39..759fd7f2 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -1,5 +1,5 @@ $_menu_shadow: 0 1px 6px transparentize(black, if($variant == 'light', .85, .5)); -$_widget_inset_shadow: inset 0 3px 5px -4px $shadow_color; +$_widget_inset_shadow: inset 0 3px 5px -4px $shadow_color, 0 1px rgba(255, 255, 255, .05); $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize($borders_color, 0.25)); * { From cc2ea538f048533ed26533ca476410edf0a5bae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Fri, 18 Dec 2020 18:18:16 +0100 Subject: [PATCH 07/22] GTK3: update gtk 3.24.24 --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 84 +++++++++++-------- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 84 +++++++++++-------- share/themes/Kali-Light/gtk-3.0/gtk.css | 84 +++++++++++-------- .../gtk-sass/libhandy/_fallback-base.scss | 26 ++++++ .../Kali/sass/gtk-sass/libhandy/sync.sh | 2 +- .../Kali/sass/gtk-sass/upstream/_colors.scss | 1 - .../Kali/sass/gtk-sass/upstream/_common.scss | 11 +-- .../Kali/sass/gtk-sass/upstream/_drawing.scss | 61 ++++++-------- .../gtk-sass/upstream/_drawing.scss.patch | 7 +- .../Kali/sass/gtk-sass/upstream/sync.sh | 2 +- 10 files changed, 215 insertions(+), 147 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index aa1aa432..5dbaeb43 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -518,10 +518,10 @@ button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, button:active, @@ -821,10 +821,10 @@ button.suggested-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.suggested-action:active, button.suggested-action:checked { @@ -971,10 +971,10 @@ button.destructive-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #790e0e; border-bottom-color: #4b0909; + background-image: linear-gradient(to top, #a21313, #ab1414 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.660235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.660235); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #a21313, #ab1414 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action:active, button.destructive-action:checked { @@ -1147,11 +1147,10 @@ button.circular { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #292c37 2px, #2e313d); + background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); - background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } button.circular:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { @@ -1159,11 +1158,10 @@ button.circular { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); - background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attention > label, @@ -1194,10 +1192,10 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1337,10 +1335,10 @@ list row button.image-button:not(.flat) { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1757,10 +1755,10 @@ headerbar { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } .selection-mode .titlebar:not(headerbar) button:active, .selection-mode .titlebar:not(headerbar) button:checked, .selection-mode.titlebar:not(headerbar) button:active, .selection-mode.titlebar:not(headerbar) button:checked, .selection-mode headerbar button:active, .selection-mode headerbar button:checked, .selection-mode headerbar button.toggle:checked, .selection-mode headerbar button.toggle:active, headerbar.selection-mode button:active, headerbar.selection-mode button:checked, @@ -1854,10 +1852,10 @@ headerbar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, headerbar.selection-mode button.suggested-action:active { @@ -2138,7 +2136,7 @@ treeview.view header button, treeview.view header button:hover, treeview.view he padding: 0 6px; background-image: none; border-style: none solid solid none; - border-color: #23252e; + border-color: #4f5159; border-radius: 0; text-shadow: none; } treeview.view header button:disabled { @@ -2728,8 +2726,8 @@ switch { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #040405; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to bottom, #303340 20%, #272a34 90%); } + background-image: linear-gradient(to bottom, #303340 20%, #272a34 90%); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } switch:checked > slider { border: 1px solid #00215a; } switch:disabled slider { @@ -3188,8 +3186,8 @@ scale { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to bottom, #23252e 20%, #1a1c23 90%); } + background-image: linear-gradient(to bottom, #23252e 20%, #1a1c23 90%); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } scale slider:active { border-color: #00348d; } scale slider:disabled { @@ -4295,10 +4293,10 @@ infobar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -4444,10 +4442,10 @@ colorswatch#add-color-button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } colorswatch#add-color-button overlay:backdrop { color: #888a8d; border-color: #16171d; @@ -4783,33 +4781,41 @@ row.expander { row.expander image.expander-row-arrow:disabled { color: #888a8d; } +flap > dimming, deck > dimming, leaflet > dimming { background: rgba(0, 0, 0, 0.24); } +flap > border, deck > border, leaflet > border { min-width: 1px; min-height: 1px; background: #0d0e11; } +flap > shadow, deck > shadow, leaflet > shadow { min-width: 56px; min-height: 56px; } + flap > shadow.left, deck > shadow.left, leaflet > shadow.left { background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to right, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.right, deck > shadow.right, leaflet > shadow.right { background-image: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to left, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.up, deck > shadow.up, leaflet > shadow.up { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.down, deck > shadow.down, leaflet > shadow.down { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to top, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } +flap > outline, deck > outline, leaflet > outline { min-width: 1px; @@ -4864,11 +4870,23 @@ avatar { color: #d8d7d3; } avatar.contrasted { color: #fff; } + avatar.image { + background: none; } viewswitchertitle viewswitcher { margin-left: 12px; margin-right: 12px; } +statuspage > scrolledwindow > viewport > box { + margin: 36px 12px; } + statuspage > scrolledwindow > viewport > box > clamp > box > .icon { + margin-bottom: 36px; + opacity: 0.5; } + statuspage > scrolledwindow > viewport > box > clamp > box > .title { + margin-bottom: 12px; } + statuspage > scrolledwindow > viewport > box > clamp > box > .description { + margin-bottom: 36px; } + /*************************** * Check and Radio buttons * ***************************/ @@ -5270,10 +5288,10 @@ notebook > header { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, notebook > header.bottom > tabs > tab.reorderable-page:checked, notebook > header.left > tabs > tab:checked, @@ -5347,10 +5365,10 @@ infobar.info button, infobar.info.action:hover button { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } infobar.info button:active, infobar.info button:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -5402,10 +5420,10 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; + background-image: linear-gradient(to top, #f87a00, #ff8003 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.555137); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.555137); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #f87a00, #ff8003 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -5456,10 +5474,10 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; + background-image: linear-gradient(to top, #ba1616, #c41818 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #ba1616, #c41818 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); 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 aa1aa432..5dbaeb43 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -518,10 +518,10 @@ button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, button:active, @@ -821,10 +821,10 @@ button.suggested-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.suggested-action:active, button.suggested-action:checked { @@ -971,10 +971,10 @@ button.destructive-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #790e0e; border-bottom-color: #4b0909; + background-image: linear-gradient(to top, #a21313, #ab1414 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.660235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.660235); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #a21313, #ab1414 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action:active, button.destructive-action:checked { @@ -1147,11 +1147,10 @@ button.circular { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; - background-image: linear-gradient(to top, #292c37 2px, #2e313d); + background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); - background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } button.circular:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { @@ -1159,11 +1158,10 @@ button.circular { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); - background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); border-color: transparent; } stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attention > label, @@ -1194,10 +1192,10 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1337,10 +1335,10 @@ list row button.image-button:not(.flat) { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -1757,10 +1755,10 @@ headerbar { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } .selection-mode .titlebar:not(headerbar) button:active, .selection-mode .titlebar:not(headerbar) button:checked, .selection-mode.titlebar:not(headerbar) button:active, .selection-mode.titlebar:not(headerbar) button:checked, .selection-mode headerbar button:active, .selection-mode headerbar button:checked, .selection-mode headerbar button.toggle:checked, .selection-mode headerbar button.toggle:active, headerbar.selection-mode button:active, headerbar.selection-mode button:checked, @@ -1854,10 +1852,10 @@ headerbar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, headerbar.selection-mode button.suggested-action:active { @@ -2138,7 +2136,7 @@ treeview.view header button, treeview.view header button:hover, treeview.view he padding: 0 6px; background-image: none; border-style: none solid solid none; - border-color: #23252e; + border-color: #4f5159; border-radius: 0; text-shadow: none; } treeview.view header button:disabled { @@ -2728,8 +2726,8 @@ switch { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #040405; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to bottom, #303340 20%, #272a34 90%); } + background-image: linear-gradient(to bottom, #303340 20%, #272a34 90%); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } switch:checked > slider { border: 1px solid #00215a; } switch:disabled slider { @@ -3188,8 +3186,8 @@ scale { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to bottom, #23252e 20%, #1a1c23 90%); } + background-image: linear-gradient(to bottom, #23252e 20%, #1a1c23 90%); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } scale slider:active { border-color: #00348d; } scale slider:disabled { @@ -4295,10 +4293,10 @@ infobar { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); @@ -4444,10 +4442,10 @@ colorswatch#add-color-button { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } colorswatch#add-color-button overlay:backdrop { color: #888a8d; border-color: #16171d; @@ -4783,33 +4781,41 @@ row.expander { row.expander image.expander-row-arrow:disabled { color: #888a8d; } +flap > dimming, deck > dimming, leaflet > dimming { background: rgba(0, 0, 0, 0.24); } +flap > border, deck > border, leaflet > border { min-width: 1px; min-height: 1px; background: #0d0e11; } +flap > shadow, deck > shadow, leaflet > shadow { min-width: 56px; min-height: 56px; } + flap > shadow.left, deck > shadow.left, leaflet > shadow.left { background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to right, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.right, deck > shadow.right, leaflet > shadow.right { background-image: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to left, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.up, deck > shadow.up, leaflet > shadow.up { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.down, deck > shadow.down, leaflet > shadow.down { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to top, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02) 7px, rgba(0, 0, 0, 0) 24px); } +flap > outline, deck > outline, leaflet > outline { min-width: 1px; @@ -4864,11 +4870,23 @@ avatar { color: #d8d7d3; } avatar.contrasted { color: #fff; } + avatar.image { + background: none; } viewswitchertitle viewswitcher { margin-left: 12px; margin-right: 12px; } +statuspage > scrolledwindow > viewport > box { + margin: 36px 12px; } + statuspage > scrolledwindow > viewport > box > clamp > box > .icon { + margin-bottom: 36px; + opacity: 0.5; } + statuspage > scrolledwindow > viewport > box > clamp > box > .title { + margin-bottom: 12px; } + statuspage > scrolledwindow > viewport > box > clamp > box > .description { + margin-bottom: 36px; } + /*************************** * Check and Radio buttons * ***************************/ @@ -5270,10 +5288,10 @@ notebook > header { outline-color: rgba(238, 238, 236, 0.3); border-color: #0d0e11; border-bottom-color: black; + background-image: linear-gradient(to top, #20232b, #252831 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - 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); - background-image: linear-gradient(to top, #20232b, #252831 1px); } + 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); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, notebook > header.bottom > tabs > tab.reorderable-page:checked, notebook > header.left > tabs > tab:checked, @@ -5347,10 +5365,10 @@ infobar.info button, infobar.info.action:hover button { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } infobar.info button:active, infobar.info button:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -5402,10 +5420,10 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; + background-image: linear-gradient(to top, #f87a00, #ff8003 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.555137); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.555137); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #f87a00, #ff8003 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -5456,10 +5474,10 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; + background-image: linear-gradient(to top, #ba1616, #c41818 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - background-image: linear-gradient(to top, #ba1616, #c41818 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index b10a5b6f..a45a4477 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -518,10 +518,10 @@ button { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); - background-image: linear-gradient(to top, #ffffff, white 1px); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, button:active, @@ -824,10 +824,10 @@ button.suggested-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } button.suggested-action:active, button.suggested-action:checked { @@ -974,10 +974,10 @@ button.destructive-action { outline-color: rgba(255, 255, 255, 0.3); border-color: #a61414; border-bottom-color: #790e0e; + background-image: linear-gradient(to top, #d41919, #d91a1a 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.580235); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.580235); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(166, 20, 20, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to top, #d41919, #d91a1a 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(166, 20, 20, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } button.destructive-action:active, button.destructive-action:checked { @@ -1150,11 +1150,10 @@ button.circular { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; - background-image: linear-gradient(to top, white 2px, white); + background-image: linear-gradient(to top, white 2px, white), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); - background-image: linear-gradient(to top, white 2px, white), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); border-color: transparent; } button.circular:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { @@ -1162,11 +1161,10 @@ button.circular { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); - background-image: linear-gradient(to top, #ffffff, white 1px); - background-image: linear-gradient(to top, #ffffff, white 1px), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); border-color: transparent; } stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attention > label, @@ -1197,10 +1195,10 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); - 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); - background-image: linear-gradient(to top, #ffffff, white 1px); } + 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); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); @@ -1346,10 +1344,10 @@ list row button.image-button:not(.flat) { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); - 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); - background-image: linear-gradient(to top, #ffffff, white 1px); } + 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); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); @@ -1766,10 +1764,10 @@ headerbar { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } .selection-mode .titlebar:not(headerbar) button:active, .selection-mode .titlebar:not(headerbar) button:checked, .selection-mode.titlebar:not(headerbar) button:active, .selection-mode.titlebar:not(headerbar) button:checked, .selection-mode headerbar button:active, .selection-mode headerbar button:checked, .selection-mode headerbar button.toggle:checked, .selection-mode headerbar button.toggle:active, headerbar.selection-mode button:active, headerbar.selection-mode button:checked, @@ -1863,10 +1861,10 @@ headerbar { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); - background-image: linear-gradient(to top, #ffffff, white 1px); border-color: #0051da; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, headerbar.selection-mode button.suggested-action:active { @@ -2149,7 +2147,7 @@ treeview.view header button, treeview.view header button:hover, treeview.view he padding: 0 6px; background-image: none; border-style: none solid solid none; - border-color: #ffffff; + border-color: #dfdfdf; border-radius: 0; text-shadow: none; } treeview.view header button:disabled { @@ -2740,8 +2738,8 @@ switch { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #c2c2c2; - box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to bottom, white 10%, white 90%); } + background-image: linear-gradient(to bottom, white 10%, white 90%); + box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } switch:checked > slider { border: 1px solid #0047c0; } switch:disabled slider { @@ -3210,8 +3208,8 @@ scale { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #c2c2c2; - box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to bottom, white 10%, white 90%); } + background-image: linear-gradient(to bottom, white 10%, white 90%); + box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } scale slider:active { border-color: #0051da; } scale slider:disabled { @@ -4317,10 +4315,10 @@ infobar { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); - 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); - background-image: linear-gradient(to top, #ffffff, white 1px); } + 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); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); @@ -4466,10 +4464,10 @@ colorswatch#add-color-button { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); - 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); - background-image: linear-gradient(to top, #ffffff, white 1px); } + 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); } colorswatch#add-color-button overlay:backdrop { color: #aeb0b6; border-color: #e0e0e0; @@ -4805,33 +4803,41 @@ row.expander { row.expander image.expander-row-arrow:disabled { color: #aeb0b6; } +flap > dimming, deck > dimming, leaflet > dimming { background: rgba(0, 0, 0, 0.12); } +flap > border, deck > border, leaflet > border { min-width: 1px; min-height: 1px; background: #d9d9d9; } +flap > shadow, deck > shadow, leaflet > shadow { min-width: 56px; min-height: 56px; } + flap > shadow.left, deck > shadow.left, leaflet > shadow.left { background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.01) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to right, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.right, deck > shadow.right, leaflet > shadow.right { background-image: linear-gradient(to left, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.01) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to left, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.up, deck > shadow.up, leaflet > shadow.up { background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.01) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01) 7px, rgba(0, 0, 0, 0) 24px); } + flap > shadow.down, deck > shadow.down, leaflet > shadow.down { background-image: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.01) 40px, rgba(0, 0, 0, 0) 56px), linear-gradient(to top, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01) 7px, rgba(0, 0, 0, 0) 24px); } +flap > outline, deck > outline, leaflet > outline { min-width: 1px; @@ -4886,11 +4892,23 @@ avatar { color: #d8d7d3; } avatar.contrasted { color: #fff; } + avatar.image { + background: none; } viewswitchertitle viewswitcher { margin-left: 12px; margin-right: 12px; } +statuspage > scrolledwindow > viewport > box { + margin: 36px 12px; } + statuspage > scrolledwindow > viewport > box > clamp > box > .icon { + margin-bottom: 36px; + opacity: 0.5; } + statuspage > scrolledwindow > viewport > box > clamp > box > .title { + margin-bottom: 12px; } + statuspage > scrolledwindow > viewport > box > clamp > box > .description { + margin-bottom: 36px; } + /*************************** * Check and Radio buttons * ***************************/ @@ -5291,10 +5309,10 @@ notebook > header { outline-color: rgba(92, 97, 108, 0.3); border-color: #d9d9d9; border-bottom-color: #c2c2c2; + background-image: linear-gradient(to top, #ffffff, white 1px); text-shadow: 0 1px rgba(255, 255, 255, 0.769231); -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); - 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); - background-image: linear-gradient(to top, #ffffff, white 1px); } + 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); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, notebook > header.bottom > tabs > tab.reorderable-page:checked, notebook > header.left > tabs > tab:checked, @@ -5368,10 +5386,10 @@ infobar.info button, infobar.info.action:hover button { outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; + background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } infobar.info button:active, infobar.info button:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -5423,10 +5441,10 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; + background-image: linear-gradient(to top, #fd7d00, #ff8003 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.555137); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.555137); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to top, #fd7d00, #ff8003 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); @@ -5477,10 +5495,10 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; + background-image: linear-gradient(to top, #bf1717, #c41818 1px); text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - background-image: linear-gradient(to top, #bf1717, #c41818 1px); } + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); diff --git a/src/themes/Kali/sass/gtk-sass/libhandy/_fallback-base.scss b/src/themes/Kali/sass/gtk-sass/libhandy/_fallback-base.scss index b821d956..0f5cb6cf 100644 --- a/src/themes/Kali/sass/gtk-sass/libhandy/_fallback-base.scss +++ b/src/themes/Kali/sass/gtk-sass/libhandy/_fallback-base.scss @@ -69,6 +69,7 @@ row.expander { // Shadows +flap, deck, leaflet { > dimming { @@ -136,6 +137,8 @@ avatar { } &.contrasted { color: #fff; } + + &.image { background: none; } } // HdyViewSwitcherTitle @@ -144,3 +147,26 @@ viewswitchertitle viewswitcher { margin-left: 12px; margin-right: 12px; } + +// HdyStatusPage + +statuspage > scrolledwindow > viewport > box { + margin: 36px 12px; + + > clamp > box { + > .icon { + margin-bottom: 36px; + opacity: 0.5; + } + + > .title { + margin-bottom: 12px; + } + + > .description { + margin-bottom: 36px; + } + } +} + + diff --git a/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh b/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh index 5f22bbc2..23db21f0 100755 --- a/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh +++ b/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh @@ -7,7 +7,7 @@ RESET='\033[0m' while read file; do echo - echo " $GREEN[ * ]$RESET Downloading file $file" + echo -e " $GREEN[ * ]$RESET Downloading file $file" wget https://gitlab.gnome.org/GNOME/libhandy/-/raw/master/src/themes/$file --timestamping --quiet done <<- EOF _definitions.scss diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_colors.scss b/src/themes/Kali/sass/gtk-sass/upstream/_colors.scss index 7a7c14bb..32dd7625 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_colors.scss +++ b/src/themes/Kali/sass/gtk-sass/upstream/_colors.scss @@ -1,7 +1,6 @@ // When color definition differs for dark and light variant // it gets @if ed depending on $variant - $base_color: if($variant == 'light', #ffffff, lighten(desaturate(#241f31, 100%), 2%)); $text_color: if($variant == 'light', black, white); $bg_color: if($variant == 'light', #f6f5f4, darken(desaturate(#3d3846, 100%), 4%)); diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_common.scss b/src/themes/Kali/sass/gtk-sass/upstream/_common.scss index 68fa54e5..7e5715a4 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_common.scss +++ b/src/themes/Kali/sass/gtk-sass/upstream/_common.scss @@ -916,16 +916,14 @@ button { $_border_bg: linear-gradient(to top, $alt-borders-color 25%, $borders-color 50%); &:not(.flat):not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { - @include button(normal); + @include button(normal, $backimage: $_border_bg); - background-image: $button_fill, $_border_bg; border-color: transparent; } &:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { - @include button(hover); + @include button(hover, $backimage: $_border_bg); - background-image: $button_fill, $_border_bg; border-color: transparent; } @@ -1947,6 +1945,9 @@ filechooser .path-bar.linked > button { /************** * Tree Views * **************/ + +$_treeview_borders_color: if($variant=='light',mix($borders_color, $base_color,80%),mix($fg_color, $base_color, 20%)); + treeview.view { @at-root * { -GtkTreeView-horizontal-separator: 4; @@ -2130,7 +2131,7 @@ treeview.view { padding: 0 6px; background-image: none; border-style: none solid solid none; - border-color: $bg_color; + border-color: $_treeview_borders_color; border-radius: 0; text-shadow: none; diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss index 05e5bf4d..f405f8c6 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss +++ b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss @@ -166,7 +166,7 @@ } } -@mixin button($t, $c:$bg_color, $tc:$fg_color, $edge: none) { +@mixin button($t, $c:$bg_color, $tc:$fg_color, $edge: none, $backimage: null) { // // Button drawing function // @@ -175,13 +175,13 @@ // $tc: optional text color for colored* types // $edge: set to none to not draw the bottom edge or specify a color to not // use the default one +// $backimage: additional background-image behind the default one +// (for the button.circular hack) // // possible $t values: // normal, hover, active, insensitive, insensitive-active, // backdrop, backdrop-active, backdrop-insensitive, backdrop-insensitive-active, // osd, osd-hover, osd-active, osd-insensitive, osd-backdrop, undecorated -// -// This mixin sets the $button_fill global variable which containts the button background-image // $_hilight_color: _button_hilight_color($c); $_button_edge: if($edge == none, none, _widget_edge($edge)); @@ -196,8 +196,8 @@ outline-color: transparentize($tc, 0.7); border-color: if($c != $bg_color, _border_color($c), $borders_color); border-bottom-color: if($c != $bg_color, _border_color($c, true), $alt_borders_color); - $button_fill: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)) !global; - background-image: $button_fill; + background-image: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)), + $backimage; @include _button_text_shadow($tc, $c); @include _shadows(inset 0 1px $_hilight_color, $_button_edge, $_button_shadow); } @@ -211,16 +211,17 @@ border-color: if($c != $bg_color, _border_color($c), $borders_color); border-bottom-color: if($c != $bg_color, _border_color($c, true), $alt_borders_color); @if $variant == 'light' { - $button_fill: linear-gradient(to top, $c, lighten($c, 1%) 1px) !global; + background-image: linear-gradient(to top, $c, lighten($c, 1%) 1px), + $backimage; @include _button_text_shadow($tc, lighten($c, 6%)); @include _shadows(inset 0 1px _button_hilight_color(lighten($c, 6%)), $_button_edge, $_button_shadow); } @else { - $button_fill: linear-gradient(to top, darken($c,1%), lighten($c, 1%) 1px) !global; + background-image: linear-gradient(to top, darken($c,1%), lighten($c, 1%) 1px), + $backimage; @include _button_text_shadow($tc,lighten($c, 6%)); @include _shadows(inset 0 1px _button_hilight_color(darken($c, 2%)), $_button_edge, $_button_shadow); } - background-image: $button_fill; } @if $t==normal-alt { @@ -251,16 +252,15 @@ outline-color: transparentize($tc, 0.7); border-color: if($c != $bg_color, _border_color($c, true), $alt_borders_color); @if $variant == 'light' { - $button_fill: linear-gradient(to bottom, lighten($c, 9%) 10%, lighten($c, 4%) 90%) !global; + background-image: linear-gradient(to bottom, lighten($c, 9%) 10%, lighten($c, 4%) 90%); @include _shadows(inset 0 1px _button_hilight_color(lighten($c, 6%)), $_button_edge, $_button_shadow); } @else { - $button_fill: linear-gradient(to bottom, $c 20%, darken($c, 4%) 90%) !global; + background-image: linear-gradient(to bottom, $c 20%, darken($c, 4%) 90%); @include _shadows(inset 0 1px $_hilight_color, $_button_edge, $_button_shadow); } - background-image: $button_fill; } @else if $t==active { @@ -270,8 +270,7 @@ color: $tc; outline-color: transparentize($tc, 0.7); border-color: if($c != $bg_color, _border_color($c), $borders_color); - $button_fill: if($variant == 'light', image(darken($c, 14%)), image(darken($c, 9%))) !global; - background-image: $button_fill; + background-image: if($variant == 'light', image(darken($c, 14%)), image(darken($c, 9%))); @include _shadows(inset 0 1px transparentize($_hilight_color, 1), $_button_edge); text-shadow: none; @@ -286,8 +285,7 @@ color: if($tc != $fg_color, mix($tc, $_bg, 50%), $insensitive_fg_color); border-color: if($c != $bg_color, _border_color($c), $insensitive_borders_color); - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); text-shadow: none; -gtk-icon-shadow: none; // white with 0 alpha to avoid an ugly transition, since no color means @@ -304,8 +302,7 @@ color: if($c != $bg_color, mix($tc, $_bg, 60%), $insensitive_fg_color); border-color: $_bc; - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); // white with 0 alpha to avoid an ugly transition, since no color means // black with 0 alpha @include _shadows(inset 0 1px transparentize(white, 1), $_button_edge); @@ -320,8 +317,7 @@ color: if($tc != $fg_color, mix($tc, $_bg, 80%), $backdrop_fg_color); border-color: if($c != $bg_color, $_bc, $backdrop_borders_color); - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); text-shadow: none; -gtk-icon-shadow: none; @include _shadows(inset 0 1px transparentize(white, 1), $_blank_edge); @@ -336,8 +332,7 @@ color: if($tc != $fg_color, mix($tc, $_bg, 80%), $backdrop_fg_color); border-color: if($c != $bg_color, $_bc, $backdrop_borders_color); - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); @include _shadows(inset 0 1px transparentize(white, 1), $_blank_edge); } @@ -351,8 +346,7 @@ color: if($c != $bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color); border-color: if($c != $bg_color, $_bc, $backdrop_borders_color); - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); text-shadow: none; -gtk-icon-shadow: none; // white with 0 alpha to avoid an ugly transition, since no color means @@ -370,8 +364,7 @@ color: if($c != $bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color); border-color: if($c != $bg_color, $_bc, $backdrop_borders_color); - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); @include _shadows(inset 0 1px transparentize(white, 1), $_blank_edge); } @@ -384,8 +377,7 @@ color: $osd_fg_color; border-color: $osd_borders_color; background-color: transparent; - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); background-clip: padding-box; box-shadow: inset 0 1px transparentize(white, 0.9); text-shadow: 0 1px black; @@ -402,8 +394,7 @@ color: white; border-color: $osd_borders_color; background-color: transparent; - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); background-clip: padding-box; box-shadow: inset 0 1px transparentize(white, 0.9); text-shadow: 0 1px black; @@ -420,8 +411,7 @@ color: white; border-color: $osd_borders_color; background-color: transparent; - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); background-clip: padding-box; box-shadow: none; text-shadow: none; @@ -436,8 +426,7 @@ color: $osd_insensitive_fg_color; border-color: $osd_borders_color; background-color: transparent; - $button_fill: image($osd_insensitive_bg_color) !global; - background-image: $button_fill; + background-image: image($osd_insensitive_bg_color); background-clip: padding-box; box-shadow: none; text-shadow: none; @@ -453,8 +442,7 @@ color: $osd_fg_color; border-color: $osd_borders_color; background-color: transparent; - $button_fill: image($_bg) !global; - background-image: $button_fill; + background-image: image($_bg); background-clip: padding-box; box-shadow: none; text-shadow: none; @@ -467,8 +455,7 @@ // border-color: transparent; background-color: transparent; - $button_fill: none !global; - background-image: $button_fill; + background-image: none; @include _shadows(inset 0 1px transparentize(white, 1), $_blank_edge); diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch index 75bda0b9..dbe0743d 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch +++ b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch @@ -7,7 +7,8 @@ --- > $_button_shadow: inset 0 -1px 0 transparentize(if($c != $bg_color, _border_color($c), $borders_color), .25), 0 1px 2px transparentize($shadow_color, 0.03); 199,200c199 -< $button_fill: if($variant == 'light', linear-gradient(to top, darken($c, 4%) 2px, $c), -< linear-gradient(to top, darken($c,1%) 2px, $c)) !global; +< background-image: if($variant == 'light', linear-gradient(to top, darken($c, 4%) 2px, $c), +< linear-gradient(to top, darken($c,1%) 2px, $c)), --- -> $button_fill: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)) !global; +> background-image: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)), + diff --git a/src/themes/Kali/sass/gtk-sass/upstream/sync.sh b/src/themes/Kali/sass/gtk-sass/upstream/sync.sh index f2f0293a..622a146a 100755 --- a/src/themes/Kali/sass/gtk-sass/upstream/sync.sh +++ b/src/themes/Kali/sass/gtk-sass/upstream/sync.sh @@ -4,7 +4,7 @@ GREEN='\033[0;32m' YELLOW='\033[0;33m' RESET='\033[0m' -VERSION=3.24.23 +VERSION=3.24.24 echo echo -e " $YELLOW[ i ]$RESET Upstream version $VERSION" From dfc7f7339228e5a960ebed86d73c9bd961035f21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Fri, 18 Dec 2020 18:46:04 +0100 Subject: [PATCH 08/22] GTK3: use the same shadows for the switch, check, radio, switch and entry widgets --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk.css | 4 ++-- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 5dbaeb43..8b967bb0 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5138,7 +5138,7 @@ scale slider:active, switch:hover slider { * Switch * **********/ switch { - box-shadow: inset 0 1px 2px -1px rgba(0, 0, 0, 0.6); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } switch:checked { border-color: rgba(0, 0, 0, 0.2); border-right-width: 0; @@ -5174,7 +5174,7 @@ check, menu menuitem check, menu menuitem:hover check, radio, menu menuitem radio, menu menuitem:hover radio { background-image: linear-gradient(to bottom, #1e2128 20%, #1a1c23 90%); border-color: black; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } check:disabled, check:disabled:checked, check:disabled:indeterminate, check:disabled:backdrop, check:disabled:backdrop:checked, check:disabled:backdrop:indeterminate, menu menuitem check:disabled, menu menuitem check:disabled:checked, menu menuitem check:disabled:indeterminate, menu menuitem check:disabled:backdrop, menu menuitem check:disabled:backdrop:checked, menu menuitem check:disabled:backdrop:indeterminate, menu menuitem:hover check:disabled, menu menuitem:hover check:disabled:checked, menu menuitem:hover check:disabled:indeterminate, menu menuitem:hover check:disabled:backdrop, menu menuitem:hover check:disabled:backdrop:checked, menu menuitem:hover check:disabled:backdrop:indeterminate, radio:disabled, radio:disabled:checked, 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 5dbaeb43..8b967bb0 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5138,7 +5138,7 @@ scale slider:active, switch:hover slider { * Switch * **********/ switch { - box-shadow: inset 0 1px 2px -1px rgba(0, 0, 0, 0.6); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } switch:checked { border-color: rgba(0, 0, 0, 0.2); border-right-width: 0; @@ -5174,7 +5174,7 @@ check, menu menuitem check, menu menuitem:hover check, radio, menu menuitem radio, menu menuitem:hover radio { background-image: linear-gradient(to bottom, #1e2128 20%, #1a1c23 90%); border-color: black; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } check:disabled, check:disabled:checked, check:disabled:indeterminate, check:disabled:backdrop, check:disabled:backdrop:checked, check:disabled:backdrop:indeterminate, menu menuitem check:disabled, menu menuitem check:disabled:checked, menu menuitem check:disabled:indeterminate, menu menuitem check:disabled:backdrop, menu menuitem check:disabled:backdrop:checked, menu menuitem check:disabled:backdrop:indeterminate, menu menuitem:hover check:disabled, menu menuitem:hover check:disabled:checked, menu menuitem:hover check:disabled:indeterminate, menu menuitem:hover check:disabled:backdrop, menu menuitem:hover check:disabled:backdrop:checked, menu menuitem:hover check:disabled:backdrop:indeterminate, radio:disabled, radio:disabled:checked, diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index a45a4477..28aaf00f 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5159,7 +5159,7 @@ scale slider:active, switch:hover slider { * Switch * **********/ switch { - box-shadow: inset 0 1px 2px -1px rgba(0, 0, 0, 0.2); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.05); } switch:checked { border-color: rgba(0, 0, 0, 0.2); border-right-width: 0; @@ -5195,7 +5195,7 @@ check, menu menuitem check, menu menuitem:hover check, radio, menu menuitem radio, menu menuitem:hover radio { background-image: linear-gradient(to bottom, #ffffff 20%, #fafafa 90%); border-color: #c2c2c2; - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07); } + box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.05); } check:disabled, check:disabled:checked, check:disabled:indeterminate, check:disabled:backdrop, check:disabled:backdrop:checked, check:disabled:backdrop:indeterminate, menu menuitem check:disabled, menu menuitem check:disabled:checked, menu menuitem check:disabled:indeterminate, menu menuitem check:disabled:backdrop, menu menuitem check:disabled:backdrop:checked, menu menuitem check:disabled:backdrop:indeterminate, menu menuitem:hover check:disabled, menu menuitem:hover check:disabled:checked, menu menuitem:hover check:disabled:indeterminate, menu menuitem:hover check:disabled:backdrop, menu menuitem:hover check:disabled:backdrop:checked, menu menuitem:hover check:disabled:backdrop:indeterminate, radio:disabled, radio:disabled:checked, diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 759fd7f2..a262c4c5 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -67,7 +67,7 @@ headerbar entry { switch { $_slider_border_color: darken($alt_borders_color, 3%); - box-shadow: inset 0 1px 2px -1px transparentize(black, if($variant=='light', .8, .4)); + box-shadow: $_widget_inset_shadow; &:checked { border-color: transparentize(black, .8); @@ -117,7 +117,7 @@ radio { &, menu menuitem &, menu menuitem:hover & { background-image: linear-gradient(to bottom, $_c 20%, darken($_c, 2%) 90%); border-color: $alt_borders_color; - box-shadow: $_shadow; + box-shadow: $_widget_inset_shadow; &:disabled, &:disabled:backdrop { &, &:checked, &:indeterminate { From f97169506548b5acb94ec5bddb98a3d9b98a51d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Mon, 21 Dec 2020 11:44:23 +0100 Subject: [PATCH 09/22] GTK3: remove text-shadow from buttons --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 212 +++++++++++------- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 212 +++++++++++------- share/themes/Kali-Light/gtk-3.0/gtk.css | 212 +++++++++++------- .../Kali/sass/gtk-sass/_common-tweaks.scss | 3 +- .../Kali/sass/gtk-sass/upstream/_drawing.scss | 8 +- .../gtk-sass/upstream/_drawing.scss.patch | 16 ++ .../Kali/sass/gtk-sass/upstream/sync.sh | 6 +- 7 files changed, 418 insertions(+), 251 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 8b967bb0..d3ffb0a8 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -493,8 +493,6 @@ button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } button.titlebutton, button.sidebar-button, notebook > header > tabs > arrow, notebook > header > tabs > arrow.flat, button.flat { @@ -519,8 +517,6 @@ button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, @@ -803,8 +799,6 @@ button.suggested-action { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.suggested-action.flat { @@ -822,8 +816,6 @@ button.suggested-action { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.suggested-action:active, @@ -953,8 +945,6 @@ button.destructive-action { border-color: #790e0e; border-bottom-color: #4b0909; background-image: linear-gradient(to top, #a61414 2px, #bd1616); - text-shadow: 0 -1px rgba(0, 0, 0, 0.708235); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.708235); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action.flat { @@ -972,8 +962,6 @@ button.destructive-action { border-color: #790e0e; border-bottom-color: #4b0909; background-image: linear-gradient(to top, #a21313, #ab1414 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.660235); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.660235); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action:active, @@ -1148,8 +1136,6 @@ button.circular { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); border-color: transparent; } @@ -1159,8 +1145,6 @@ button.circular { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); border-color: transparent; } @@ -1184,8 +1168,6 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } .inline-toolbar toolbutton > button:hover { color: #eeeeec; @@ -1193,8 +1175,6 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #eeeeec; @@ -1336,8 +1316,6 @@ list row button.image-button:not(.flat) { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #eeeeec; @@ -1738,8 +1716,6 @@ headerbar { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } .selection-mode button.titlebutton, .selection-mode .titlebar:not(headerbar) button.flat, .selection-mode.titlebar:not(headerbar) button.flat, .selection-mode headerbar button.flat, headerbar.selection-mode button.flat { @@ -1756,8 +1732,6 @@ headerbar { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } .selection-mode .titlebar:not(headerbar) button:active, .selection-mode .titlebar:not(headerbar) button:checked, .selection-mode.titlebar:not(headerbar) button:active, .selection-mode.titlebar:not(headerbar) button:checked, .selection-mode headerbar button:active, .selection-mode headerbar button:checked, .selection-mode headerbar button.toggle:checked, .selection-mode headerbar button.toggle:active, headerbar.selection-mode button:active, @@ -1842,8 +1816,6 @@ headerbar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:hover, .selection-mode.titlebar:not(headerbar) button.suggested-action:hover, .selection-mode headerbar button.suggested-action:hover, @@ -1853,8 +1825,6 @@ headerbar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, @@ -2716,8 +2686,6 @@ switch { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #040405; - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); background-image: linear-gradient(to bottom, #292c37 20%, #23252e 90%); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } switch image { @@ -3174,8 +3142,6 @@ scale { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; @@ -4285,8 +4251,6 @@ infobar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover { color: #eeeeec; @@ -4294,8 +4258,6 @@ infobar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #eeeeec; @@ -4434,8 +4396,6 @@ colorswatch#add-color-button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } colorswatch#add-color-button overlay:hover { color: #eeeeec; @@ -4443,8 +4403,6 @@ colorswatch#add-color-button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } colorswatch#add-color-button overlay:backdrop { color: #888a8d; @@ -5151,8 +5109,6 @@ switch { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; @@ -5289,8 +5245,6 @@ notebook > header { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, @@ -5302,8 +5256,6 @@ notebook > header { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); background: #272a34; } notebook > header.top > tabs > tab:checked:backdrop, @@ -5351,25 +5303,29 @@ infobar, infobar.info, infobar.question, infobar.warning, infobar.error { infobar.info:backdrop > revealer > box, infobar.info > revealer > box, infobar.info.action:hover:backdrop > revealer > box, infobar.info.action:hover > revealer > box { background-color: #2777ff; } -infobar.info button, infobar.info.action:hover button { +infobar.info button, +infobar.info button.flat, infobar.info.action:hover button, +infobar.info.action:hover button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.info button:hover, infobar.info.action:hover button:hover { + infobar.info button:hover, + infobar.info button.flat:hover, infobar.info.action:hover button:hover, + infobar.info.action:hover button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.info button:active, infobar.info button:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked { + infobar.info button:active, infobar.info button:checked, + infobar.info button.flat:active, + infobar.info button.flat:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked, + infobar.info.action:hover button.flat:active, + infobar.info.action:hover button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; @@ -5377,14 +5333,18 @@ infobar.info button, infobar.info.action:hover button { box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.info button:disabled, infobar.info.action:hover button:disabled { + infobar.info button:disabled, + infobar.info button.flat:disabled, infobar.info.action:hover button:disabled, + infobar.info.action:hover button.flat:disabled { color: #93b6f0; border-color: #005af3; background-image: image(#276ce1); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.info button:backdrop, infobar.info.action:hover button:backdrop { + infobar.info button:backdrop, + infobar.info button.flat:backdrop, infobar.info.action:hover button:backdrop, + infobar.info.action:hover button.flat:backdrop { color: #d4e4ff; border-color: #005af3; background-image: image(#2777ff); @@ -5392,7 +5352,9 @@ infobar.info button, infobar.info.action:hover button { -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #005af3; } - infobar.info button:backdrop:disabled, infobar.info.action:hover button:backdrop:disabled { + infobar.info button:backdrop:disabled, + infobar.info button.flat:backdrop:disabled, infobar.info.action:hover button:backdrop:disabled, + infobar.info.action:hover button.flat:backdrop:disabled { color: #739fec; border-color: #005af3; background-image: image(#276ce1); @@ -5400,31 +5362,51 @@ infobar.info button, infobar.info.action:hover button { -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #005af3; } - infobar.info button:backdrop label, infobar.info button:backdrop, infobar.info button label, infobar.info button, infobar.info.action:hover button:backdrop label, infobar.info.action:hover button:backdrop, infobar.info.action:hover button label, infobar.info.action:hover button { + infobar.info button:backdrop label, infobar.info button:backdrop, infobar.info button label, infobar.info button, + infobar.info button.flat:backdrop label, + infobar.info button.flat:backdrop, + infobar.info button.flat label, + infobar.info button.flat, infobar.info.action:hover button:backdrop label, infobar.info.action:hover button:backdrop, infobar.info.action:hover button label, infobar.info.action:hover button, + infobar.info.action:hover button.flat:backdrop label, + infobar.info.action:hover button.flat:backdrop, + infobar.info.action:hover button.flat label, + infobar.info.action:hover button.flat { color: #ffffff; } infobar.question:backdrop > revealer > box, infobar.question > revealer > box, infobar.warning:backdrop > revealer > box, infobar.warning > revealer > box, infobar.question.action:hover:backdrop > revealer > box, infobar.question.action:hover > revealer > box, infobar.warning.action:hover:backdrop > revealer > box, infobar.warning.action:hover > revealer > box { background-color: #fd7d00; } -infobar.question button, infobar.warning button, infobar.question.action:hover button, infobar.warning.action:hover button { +infobar.question button, +infobar.question button.flat, infobar.warning button, +infobar.warning button.flat, infobar.question.action:hover button, +infobar.question.action:hover button.flat, infobar.warning.action:hover button, +infobar.warning.action:hover button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; background-image: linear-gradient(to top, #fd7d00 2px, #ff8a18); - text-shadow: 0 -1px rgba(0, 0, 0, 0.603137); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.603137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.question button:hover, infobar.warning button:hover, infobar.question.action:hover button:hover, infobar.warning.action:hover button:hover { + infobar.question button:hover, + infobar.question button.flat:hover, infobar.warning button:hover, + infobar.warning button.flat:hover, infobar.question.action:hover button:hover, + infobar.question.action:hover button.flat:hover, infobar.warning.action:hover button:hover, + infobar.warning.action:hover button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; background-image: linear-gradient(to top, #f87a00, #ff8003 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.555137); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.555137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked { + infobar.question button:active, infobar.question button:checked, + infobar.question button.flat:active, + infobar.question button.flat:checked, infobar.warning button:active, infobar.warning button:checked, + infobar.warning button.flat:active, + infobar.warning button.flat:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, + infobar.question.action:hover button.flat:active, + infobar.question.action:hover button.flat:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked, + infobar.warning.action:hover button.flat:active, + infobar.warning.action:hover button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; @@ -5432,14 +5414,22 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.question button:disabled, infobar.warning button:disabled, infobar.question.action:hover button:disabled, infobar.warning.action:hover button:disabled { + infobar.question button:disabled, + infobar.question button.flat:disabled, infobar.warning button:disabled, + infobar.warning button.flat:disabled, infobar.question.action:hover button:disabled, + infobar.question.action:hover button.flat:disabled, infobar.warning.action:hover button:disabled, + infobar.warning.action:hover button.flat:disabled { color: #eeb884; border-color: #ca6400; background-image: image(#dd7108); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.question button:backdrop, infobar.warning button:backdrop, infobar.question.action:hover button:backdrop, infobar.warning.action:hover button:backdrop { + infobar.question button:backdrop, + infobar.question button.flat:backdrop, infobar.warning button:backdrop, + infobar.warning button.flat:backdrop, infobar.question.action:hover button:backdrop, + infobar.question.action:hover button.flat:backdrop, infobar.warning.action:hover button:backdrop, + infobar.warning.action:hover button.flat:backdrop { color: #ffe5cc; border-color: #ca6400; background-image: image(#fd7d00); @@ -5447,7 +5437,11 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #ca6400; } - infobar.question button:backdrop:disabled, infobar.warning button:backdrop:disabled, infobar.question.action:hover button:backdrop:disabled, infobar.warning.action:hover button:backdrop:disabled { + infobar.question button:backdrop:disabled, + infobar.question button.flat:backdrop:disabled, infobar.warning button:backdrop:disabled, + infobar.warning button.flat:backdrop:disabled, infobar.question.action:hover button:backdrop:disabled, + infobar.question.action:hover button.flat:backdrop:disabled, infobar.warning.action:hover button:backdrop:disabled, + infobar.warning.action:hover button.flat:backdrop:disabled { color: #e9a35e; border-color: #ca6400; background-image: image(#dd7108); @@ -5455,30 +5449,58 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #ca6400; } - infobar.question button:backdrop label, infobar.question button:backdrop, infobar.question button label, infobar.question button, infobar.warning button:backdrop label, infobar.warning button:backdrop, infobar.warning button label, infobar.warning button, infobar.question.action:hover button:backdrop label, infobar.question.action:hover button:backdrop, infobar.question.action:hover button label, infobar.question.action:hover button, infobar.warning.action:hover button:backdrop label, infobar.warning.action:hover button:backdrop, infobar.warning.action:hover button label, infobar.warning.action:hover button { + infobar.question button:backdrop label, infobar.question button:backdrop, infobar.question button label, infobar.question button, + infobar.question button.flat:backdrop label, + infobar.question button.flat:backdrop, + infobar.question button.flat label, + infobar.question button.flat, infobar.warning button:backdrop label, infobar.warning button:backdrop, infobar.warning button label, infobar.warning button, + infobar.warning button.flat:backdrop label, + infobar.warning button.flat:backdrop, + infobar.warning button.flat label, + infobar.warning button.flat, infobar.question.action:hover button:backdrop label, infobar.question.action:hover button:backdrop, infobar.question.action:hover button label, infobar.question.action:hover button, + infobar.question.action:hover button.flat:backdrop label, + infobar.question.action:hover button.flat:backdrop, + infobar.question.action:hover button.flat label, + infobar.question.action:hover button.flat, infobar.warning.action:hover button:backdrop label, infobar.warning.action:hover button:backdrop, infobar.warning.action:hover button label, infobar.warning.action:hover button, + infobar.warning.action:hover button.flat:backdrop label, + infobar.warning.action:hover button.flat:backdrop, + infobar.warning.action:hover button.flat label, + infobar.warning.action:hover button.flat { color: #ffffff; } infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar.error.action:hover:backdrop > revealer > box, infobar.error.action:hover > revealer > box { background-color: #bf1717; } - infobar.error:backdrop > revealer > box button, infobar.error > revealer > box button, infobar.error.action:hover:backdrop > revealer > box button, infobar.error.action:hover > revealer > box button { + infobar.error:backdrop > revealer > box button, + infobar.error:backdrop > revealer > box button.flat, infobar.error > revealer > box button, + infobar.error > revealer > box button.flat, infobar.error.action:hover:backdrop > revealer > box button, + infobar.error.action:hover:backdrop > revealer > box button.flat, infobar.error.action:hover > revealer > box button, + infobar.error.action:hover > revealer > box button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; background-image: linear-gradient(to top, #bf1717 2px, #d61a1a); - text-shadow: 0 -1px rgba(0, 0, 0, 0.664314); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.664314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.error:backdrop > revealer > box button:hover, infobar.error > revealer > box button:hover, infobar.error.action:hover:backdrop > revealer > box button:hover, infobar.error.action:hover > revealer > box button:hover { + infobar.error:backdrop > revealer > box button:hover, + infobar.error:backdrop > revealer > box button.flat:hover, infobar.error > revealer > box button:hover, + infobar.error > revealer > box button.flat:hover, infobar.error.action:hover:backdrop > revealer > box button:hover, + infobar.error.action:hover:backdrop > revealer > box button.flat:hover, infobar.error.action:hover > revealer > box button:hover, + infobar.error.action:hover > revealer > box button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; background-image: linear-gradient(to top, #ba1616, #c41818 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { + infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, + infobar.error:backdrop > revealer > box button.flat:active, + infobar.error:backdrop > revealer > box button.flat:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, + infobar.error > revealer > box button.flat:active, + infobar.error > revealer > box button.flat:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, + infobar.error.action:hover:backdrop > revealer > box button.flat:active, + infobar.error.action:hover:backdrop > revealer > box button.flat:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked, + infobar.error.action:hover > revealer > box button.flat:active, + infobar.error.action:hover > revealer > box button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; @@ -5486,14 +5508,22 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.error:backdrop > revealer > box button:disabled, infobar.error > revealer > box button:disabled, infobar.error.action:hover:backdrop > revealer > box button:disabled, infobar.error.action:hover > revealer > box button:disabled { + infobar.error:backdrop > revealer > box button:disabled, + infobar.error:backdrop > revealer > box button.flat:disabled, infobar.error > revealer > box button:disabled, + infobar.error > revealer > box button.flat:disabled, infobar.error.action:hover:backdrop > revealer > box button:disabled, + infobar.error.action:hover:backdrop > revealer > box button.flat:disabled, infobar.error.action:hover > revealer > box button:disabled, + infobar.error.action:hover > revealer > box button.flat:disabled { color: #d48d8d; border-color: #911212; background-image: image(#a81a1b); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.error:backdrop > revealer > box button:backdrop, infobar.error > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button:backdrop { + infobar.error:backdrop > revealer > box button:backdrop, + infobar.error:backdrop > revealer > box button.flat:backdrop, infobar.error > revealer > box button:backdrop, + infobar.error > revealer > box button.flat:backdrop, infobar.error.action:hover:backdrop > revealer > box button:backdrop, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop, infobar.error.action:hover > revealer > box button:backdrop, + infobar.error.action:hover > revealer > box button.flat:backdrop { color: #f2d1d1; border-color: #911212; background-image: image(#bf1717); @@ -5501,7 +5531,11 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #911212; } - infobar.error:backdrop > revealer > box button:backdrop:disabled, infobar.error > revealer > box button:backdrop:disabled, infobar.error.action:hover:backdrop > revealer > box button:backdrop:disabled, infobar.error.action:hover > revealer > box button:backdrop:disabled { + infobar.error:backdrop > revealer > box button:backdrop:disabled, + infobar.error:backdrop > revealer > box button.flat:backdrop:disabled, infobar.error > revealer > box button:backdrop:disabled, + infobar.error > revealer > box button.flat:backdrop:disabled, infobar.error.action:hover:backdrop > revealer > box button:backdrop:disabled, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop:disabled, infobar.error.action:hover > revealer > box button:backdrop:disabled, + infobar.error.action:hover > revealer > box button.flat:backdrop:disabled { color: #c66a6b; border-color: #911212; background-image: image(#a81a1b); @@ -5509,7 +5543,23 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #911212; } - infobar.error:backdrop > revealer > box button:backdrop label, infobar.error:backdrop > revealer > box button:backdrop, infobar.error:backdrop > revealer > box button label, infobar.error:backdrop > revealer > box button, infobar.error > revealer > box button:backdrop label, infobar.error > revealer > box button:backdrop, infobar.error > revealer > box button label, infobar.error > revealer > box button, infobar.error.action:hover:backdrop > revealer > box button:backdrop label, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button label, infobar.error.action:hover:backdrop > revealer > box button, infobar.error.action:hover > revealer > box button:backdrop label, infobar.error.action:hover > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button label, infobar.error.action:hover > revealer > box button { + infobar.error:backdrop > revealer > box button:backdrop label, infobar.error:backdrop > revealer > box button:backdrop, infobar.error:backdrop > revealer > box button label, infobar.error:backdrop > revealer > box button, + infobar.error:backdrop > revealer > box button.flat:backdrop label, + infobar.error:backdrop > revealer > box button.flat:backdrop, + infobar.error:backdrop > revealer > box button.flat label, + infobar.error:backdrop > revealer > box button.flat, infobar.error > revealer > box button:backdrop label, infobar.error > revealer > box button:backdrop, infobar.error > revealer > box button label, infobar.error > revealer > box button, + infobar.error > revealer > box button.flat:backdrop label, + infobar.error > revealer > box button.flat:backdrop, + infobar.error > revealer > box button.flat label, + infobar.error > revealer > box button.flat, infobar.error.action:hover:backdrop > revealer > box button:backdrop label, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button label, infobar.error.action:hover:backdrop > revealer > box button, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop label, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop, + infobar.error.action:hover:backdrop > revealer > box button.flat label, + infobar.error.action:hover:backdrop > revealer > box button.flat, infobar.error.action:hover > revealer > box button:backdrop label, infobar.error.action:hover > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button label, infobar.error.action:hover > revealer > box button, + infobar.error.action:hover > revealer > box button.flat:backdrop label, + infobar.error.action:hover > revealer > box button.flat:backdrop, + infobar.error.action:hover > revealer > box button.flat label, + infobar.error.action:hover > revealer > box button.flat { color: #ffffff; } /********************* 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 8b967bb0..d3ffb0a8 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -493,8 +493,6 @@ button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } button.titlebutton, button.sidebar-button, notebook > header > tabs > arrow, notebook > header > tabs > arrow.flat, button.flat { @@ -519,8 +517,6 @@ button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, @@ -803,8 +799,6 @@ button.suggested-action { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.suggested-action.flat { @@ -822,8 +816,6 @@ button.suggested-action { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.suggested-action:active, @@ -953,8 +945,6 @@ button.destructive-action { border-color: #790e0e; border-bottom-color: #4b0909; background-image: linear-gradient(to top, #a61414 2px, #bd1616); - text-shadow: 0 -1px rgba(0, 0, 0, 0.708235); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.708235); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action.flat { @@ -972,8 +962,6 @@ button.destructive-action { border-color: #790e0e; border-bottom-color: #4b0909; background-image: linear-gradient(to top, #a21313, #ab1414 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.660235); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.660235); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(121, 14, 14, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } button.destructive-action:active, @@ -1148,8 +1136,6 @@ button.circular { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d), linear-gradient(to top, black 25%, #0d0e11 50%); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); border-color: transparent; } @@ -1159,8 +1145,6 @@ button.circular { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px), linear-gradient(to top, black 25%, #0d0e11 50%); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); border-color: transparent; } @@ -1184,8 +1168,6 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } .inline-toolbar toolbutton > button:hover { color: #eeeeec; @@ -1193,8 +1175,6 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #eeeeec; @@ -1336,8 +1316,6 @@ list row button.image-button:not(.flat) { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #eeeeec; @@ -1738,8 +1716,6 @@ headerbar { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } .selection-mode button.titlebutton, .selection-mode .titlebar:not(headerbar) button.flat, .selection-mode.titlebar:not(headerbar) button.flat, .selection-mode headerbar button.flat, headerbar.selection-mode button.flat { @@ -1756,8 +1732,6 @@ headerbar { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } .selection-mode .titlebar:not(headerbar) button:active, .selection-mode .titlebar:not(headerbar) button:checked, .selection-mode.titlebar:not(headerbar) button:active, .selection-mode.titlebar:not(headerbar) button:checked, .selection-mode headerbar button:active, .selection-mode headerbar button:checked, .selection-mode headerbar button.toggle:checked, .selection-mode headerbar button.toggle:active, headerbar.selection-mode button:active, @@ -1842,8 +1816,6 @@ headerbar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:hover, .selection-mode.titlebar:not(headerbar) button.suggested-action:hover, .selection-mode headerbar button.suggested-action:hover, @@ -1853,8 +1825,6 @@ headerbar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); border-color: #00348d; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, @@ -2716,8 +2686,6 @@ switch { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: #040405; - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); background-image: linear-gradient(to bottom, #292c37 20%, #23252e 90%); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(26, 28, 35, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } switch image { @@ -3174,8 +3142,6 @@ scale { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; @@ -4285,8 +4251,6 @@ infobar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover { color: #eeeeec; @@ -4294,8 +4258,6 @@ infobar { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #eeeeec; @@ -4434,8 +4396,6 @@ colorswatch#add-color-button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); } colorswatch#add-color-button overlay:hover { color: #eeeeec; @@ -4443,8 +4403,6 @@ colorswatch#add-color-button { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } colorswatch#add-color-button overlay:backdrop { color: #888a8d; @@ -5151,8 +5109,6 @@ switch { color: #eeeeec; outline-color: rgba(238, 238, 236, 0.3); border-color: black; - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); border: 1px solid black; @@ -5289,8 +5245,6 @@ notebook > header { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #20232b, #252831 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.825255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.825255); 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); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, @@ -5302,8 +5256,6 @@ notebook > header { border-color: #0d0e11; border-bottom-color: black; background-image: linear-gradient(to top, #292c37 2px, #2e313d); - text-shadow: 0 -1px rgba(0, 0, 0, 0.873255); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.873255); 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); background: #272a34; } notebook > header.top > tabs > tab:checked:backdrop, @@ -5351,25 +5303,29 @@ infobar, infobar.info, infobar.question, infobar.warning, infobar.error { infobar.info:backdrop > revealer > box, infobar.info > revealer > box, infobar.info.action:hover:backdrop > revealer > box, infobar.info.action:hover > revealer > box { background-color: #2777ff; } -infobar.info button, infobar.info.action:hover button { +infobar.info button, +infobar.info button.flat, infobar.info.action:hover button, +infobar.info.action:hover button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.info button:hover, infobar.info.action:hover button:hover { + infobar.info button:hover, + infobar.info button.flat:hover, infobar.info.action:hover button:hover, + infobar.info.action:hover button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2274ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.info button:active, infobar.info button:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked { + infobar.info button:active, infobar.info button:checked, + infobar.info button.flat:active, + infobar.info button.flat:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked, + infobar.info.action:hover button.flat:active, + infobar.info.action:hover button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; @@ -5377,14 +5333,18 @@ infobar.info button, infobar.info.action:hover button { box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.info button:disabled, infobar.info.action:hover button:disabled { + infobar.info button:disabled, + infobar.info button.flat:disabled, infobar.info.action:hover button:disabled, + infobar.info.action:hover button.flat:disabled { color: #93b6f0; border-color: #005af3; background-image: image(#276ce1); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.info button:backdrop, infobar.info.action:hover button:backdrop { + infobar.info button:backdrop, + infobar.info button.flat:backdrop, infobar.info.action:hover button:backdrop, + infobar.info.action:hover button.flat:backdrop { color: #d4e4ff; border-color: #005af3; background-image: image(#2777ff); @@ -5392,7 +5352,9 @@ infobar.info button, infobar.info.action:hover button { -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #005af3; } - infobar.info button:backdrop:disabled, infobar.info.action:hover button:backdrop:disabled { + infobar.info button:backdrop:disabled, + infobar.info button.flat:backdrop:disabled, infobar.info.action:hover button:backdrop:disabled, + infobar.info.action:hover button.flat:backdrop:disabled { color: #739fec; border-color: #005af3; background-image: image(#276ce1); @@ -5400,31 +5362,51 @@ infobar.info button, infobar.info.action:hover button { -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #005af3; } - infobar.info button:backdrop label, infobar.info button:backdrop, infobar.info button label, infobar.info button, infobar.info.action:hover button:backdrop label, infobar.info.action:hover button:backdrop, infobar.info.action:hover button label, infobar.info.action:hover button { + infobar.info button:backdrop label, infobar.info button:backdrop, infobar.info button label, infobar.info button, + infobar.info button.flat:backdrop label, + infobar.info button.flat:backdrop, + infobar.info button.flat label, + infobar.info button.flat, infobar.info.action:hover button:backdrop label, infobar.info.action:hover button:backdrop, infobar.info.action:hover button label, infobar.info.action:hover button, + infobar.info.action:hover button.flat:backdrop label, + infobar.info.action:hover button.flat:backdrop, + infobar.info.action:hover button.flat label, + infobar.info.action:hover button.flat { color: #ffffff; } infobar.question:backdrop > revealer > box, infobar.question > revealer > box, infobar.warning:backdrop > revealer > box, infobar.warning > revealer > box, infobar.question.action:hover:backdrop > revealer > box, infobar.question.action:hover > revealer > box, infobar.warning.action:hover:backdrop > revealer > box, infobar.warning.action:hover > revealer > box { background-color: #fd7d00; } -infobar.question button, infobar.warning button, infobar.question.action:hover button, infobar.warning.action:hover button { +infobar.question button, +infobar.question button.flat, infobar.warning button, +infobar.warning button.flat, infobar.question.action:hover button, +infobar.question.action:hover button.flat, infobar.warning.action:hover button, +infobar.warning.action:hover button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; background-image: linear-gradient(to top, #fd7d00 2px, #ff8a18); - text-shadow: 0 -1px rgba(0, 0, 0, 0.603137); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.603137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.question button:hover, infobar.warning button:hover, infobar.question.action:hover button:hover, infobar.warning.action:hover button:hover { + infobar.question button:hover, + infobar.question button.flat:hover, infobar.warning button:hover, + infobar.warning button.flat:hover, infobar.question.action:hover button:hover, + infobar.question.action:hover button.flat:hover, infobar.warning.action:hover button:hover, + infobar.warning.action:hover button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; background-image: linear-gradient(to top, #f87a00, #ff8003 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.555137); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.555137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked { + infobar.question button:active, infobar.question button:checked, + infobar.question button.flat:active, + infobar.question button.flat:checked, infobar.warning button:active, infobar.warning button:checked, + infobar.warning button.flat:active, + infobar.warning button.flat:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, + infobar.question.action:hover button.flat:active, + infobar.question.action:hover button.flat:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked, + infobar.warning.action:hover button.flat:active, + infobar.warning.action:hover button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; @@ -5432,14 +5414,22 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.question button:disabled, infobar.warning button:disabled, infobar.question.action:hover button:disabled, infobar.warning.action:hover button:disabled { + infobar.question button:disabled, + infobar.question button.flat:disabled, infobar.warning button:disabled, + infobar.warning button.flat:disabled, infobar.question.action:hover button:disabled, + infobar.question.action:hover button.flat:disabled, infobar.warning.action:hover button:disabled, + infobar.warning.action:hover button.flat:disabled { color: #eeb884; border-color: #ca6400; background-image: image(#dd7108); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.question button:backdrop, infobar.warning button:backdrop, infobar.question.action:hover button:backdrop, infobar.warning.action:hover button:backdrop { + infobar.question button:backdrop, + infobar.question button.flat:backdrop, infobar.warning button:backdrop, + infobar.warning button.flat:backdrop, infobar.question.action:hover button:backdrop, + infobar.question.action:hover button.flat:backdrop, infobar.warning.action:hover button:backdrop, + infobar.warning.action:hover button.flat:backdrop { color: #ffe5cc; border-color: #ca6400; background-image: image(#fd7d00); @@ -5447,7 +5437,11 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #ca6400; } - infobar.question button:backdrop:disabled, infobar.warning button:backdrop:disabled, infobar.question.action:hover button:backdrop:disabled, infobar.warning.action:hover button:backdrop:disabled { + infobar.question button:backdrop:disabled, + infobar.question button.flat:backdrop:disabled, infobar.warning button:backdrop:disabled, + infobar.warning button.flat:backdrop:disabled, infobar.question.action:hover button:backdrop:disabled, + infobar.question.action:hover button.flat:backdrop:disabled, infobar.warning.action:hover button:backdrop:disabled, + infobar.warning.action:hover button.flat:backdrop:disabled { color: #e9a35e; border-color: #ca6400; background-image: image(#dd7108); @@ -5455,30 +5449,58 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #ca6400; } - infobar.question button:backdrop label, infobar.question button:backdrop, infobar.question button label, infobar.question button, infobar.warning button:backdrop label, infobar.warning button:backdrop, infobar.warning button label, infobar.warning button, infobar.question.action:hover button:backdrop label, infobar.question.action:hover button:backdrop, infobar.question.action:hover button label, infobar.question.action:hover button, infobar.warning.action:hover button:backdrop label, infobar.warning.action:hover button:backdrop, infobar.warning.action:hover button label, infobar.warning.action:hover button { + infobar.question button:backdrop label, infobar.question button:backdrop, infobar.question button label, infobar.question button, + infobar.question button.flat:backdrop label, + infobar.question button.flat:backdrop, + infobar.question button.flat label, + infobar.question button.flat, infobar.warning button:backdrop label, infobar.warning button:backdrop, infobar.warning button label, infobar.warning button, + infobar.warning button.flat:backdrop label, + infobar.warning button.flat:backdrop, + infobar.warning button.flat label, + infobar.warning button.flat, infobar.question.action:hover button:backdrop label, infobar.question.action:hover button:backdrop, infobar.question.action:hover button label, infobar.question.action:hover button, + infobar.question.action:hover button.flat:backdrop label, + infobar.question.action:hover button.flat:backdrop, + infobar.question.action:hover button.flat label, + infobar.question.action:hover button.flat, infobar.warning.action:hover button:backdrop label, infobar.warning.action:hover button:backdrop, infobar.warning.action:hover button label, infobar.warning.action:hover button, + infobar.warning.action:hover button.flat:backdrop label, + infobar.warning.action:hover button.flat:backdrop, + infobar.warning.action:hover button.flat label, + infobar.warning.action:hover button.flat { color: #ffffff; } infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar.error.action:hover:backdrop > revealer > box, infobar.error.action:hover > revealer > box { background-color: #bf1717; } - infobar.error:backdrop > revealer > box button, infobar.error > revealer > box button, infobar.error.action:hover:backdrop > revealer > box button, infobar.error.action:hover > revealer > box button { + infobar.error:backdrop > revealer > box button, + infobar.error:backdrop > revealer > box button.flat, infobar.error > revealer > box button, + infobar.error > revealer > box button.flat, infobar.error.action:hover:backdrop > revealer > box button, + infobar.error.action:hover:backdrop > revealer > box button.flat, infobar.error.action:hover > revealer > box button, + infobar.error.action:hover > revealer > box button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; background-image: linear-gradient(to top, #bf1717 2px, #d61a1a); - text-shadow: 0 -1px rgba(0, 0, 0, 0.664314); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.664314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.error:backdrop > revealer > box button:hover, infobar.error > revealer > box button:hover, infobar.error.action:hover:backdrop > revealer > box button:hover, infobar.error.action:hover > revealer > box button:hover { + infobar.error:backdrop > revealer > box button:hover, + infobar.error:backdrop > revealer > box button.flat:hover, infobar.error > revealer > box button:hover, + infobar.error > revealer > box button.flat:hover, infobar.error.action:hover:backdrop > revealer > box button:hover, + infobar.error.action:hover:backdrop > revealer > box button.flat:hover, infobar.error.action:hover > revealer > box button:hover, + infobar.error.action:hover > revealer > box button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; background-image: linear-gradient(to top, #ba1616, #c41818 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); } - infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { + infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, + infobar.error:backdrop > revealer > box button.flat:active, + infobar.error:backdrop > revealer > box button.flat:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, + infobar.error > revealer > box button.flat:active, + infobar.error > revealer > box button.flat:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, + infobar.error.action:hover:backdrop > revealer > box button.flat:active, + infobar.error.action:hover:backdrop > revealer > box button.flat:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked, + infobar.error.action:hover > revealer > box button.flat:active, + infobar.error.action:hover > revealer > box button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; @@ -5486,14 +5508,22 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.error:backdrop > revealer > box button:disabled, infobar.error > revealer > box button:disabled, infobar.error.action:hover:backdrop > revealer > box button:disabled, infobar.error.action:hover > revealer > box button:disabled { + infobar.error:backdrop > revealer > box button:disabled, + infobar.error:backdrop > revealer > box button.flat:disabled, infobar.error > revealer > box button:disabled, + infobar.error > revealer > box button.flat:disabled, infobar.error.action:hover:backdrop > revealer > box button:disabled, + infobar.error.action:hover:backdrop > revealer > box button.flat:disabled, infobar.error.action:hover > revealer > box button:disabled, + infobar.error.action:hover > revealer > box button.flat:disabled { color: #d48d8d; border-color: #911212; background-image: image(#a81a1b); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.error:backdrop > revealer > box button:backdrop, infobar.error > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button:backdrop { + infobar.error:backdrop > revealer > box button:backdrop, + infobar.error:backdrop > revealer > box button.flat:backdrop, infobar.error > revealer > box button:backdrop, + infobar.error > revealer > box button.flat:backdrop, infobar.error.action:hover:backdrop > revealer > box button:backdrop, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop, infobar.error.action:hover > revealer > box button:backdrop, + infobar.error.action:hover > revealer > box button.flat:backdrop { color: #f2d1d1; border-color: #911212; background-image: image(#bf1717); @@ -5501,7 +5531,11 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #911212; } - infobar.error:backdrop > revealer > box button:backdrop:disabled, infobar.error > revealer > box button:backdrop:disabled, infobar.error.action:hover:backdrop > revealer > box button:backdrop:disabled, infobar.error.action:hover > revealer > box button:backdrop:disabled { + infobar.error:backdrop > revealer > box button:backdrop:disabled, + infobar.error:backdrop > revealer > box button.flat:backdrop:disabled, infobar.error > revealer > box button:backdrop:disabled, + infobar.error > revealer > box button.flat:backdrop:disabled, infobar.error.action:hover:backdrop > revealer > box button:backdrop:disabled, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop:disabled, infobar.error.action:hover > revealer > box button:backdrop:disabled, + infobar.error.action:hover > revealer > box button.flat:backdrop:disabled { color: #c66a6b; border-color: #911212; background-image: image(#a81a1b); @@ -5509,7 +5543,23 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #911212; } - infobar.error:backdrop > revealer > box button:backdrop label, infobar.error:backdrop > revealer > box button:backdrop, infobar.error:backdrop > revealer > box button label, infobar.error:backdrop > revealer > box button, infobar.error > revealer > box button:backdrop label, infobar.error > revealer > box button:backdrop, infobar.error > revealer > box button label, infobar.error > revealer > box button, infobar.error.action:hover:backdrop > revealer > box button:backdrop label, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button label, infobar.error.action:hover:backdrop > revealer > box button, infobar.error.action:hover > revealer > box button:backdrop label, infobar.error.action:hover > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button label, infobar.error.action:hover > revealer > box button { + infobar.error:backdrop > revealer > box button:backdrop label, infobar.error:backdrop > revealer > box button:backdrop, infobar.error:backdrop > revealer > box button label, infobar.error:backdrop > revealer > box button, + infobar.error:backdrop > revealer > box button.flat:backdrop label, + infobar.error:backdrop > revealer > box button.flat:backdrop, + infobar.error:backdrop > revealer > box button.flat label, + infobar.error:backdrop > revealer > box button.flat, infobar.error > revealer > box button:backdrop label, infobar.error > revealer > box button:backdrop, infobar.error > revealer > box button label, infobar.error > revealer > box button, + infobar.error > revealer > box button.flat:backdrop label, + infobar.error > revealer > box button.flat:backdrop, + infobar.error > revealer > box button.flat label, + infobar.error > revealer > box button.flat, infobar.error.action:hover:backdrop > revealer > box button:backdrop label, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button label, infobar.error.action:hover:backdrop > revealer > box button, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop label, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop, + infobar.error.action:hover:backdrop > revealer > box button.flat label, + infobar.error.action:hover:backdrop > revealer > box button.flat, infobar.error.action:hover > revealer > box button:backdrop label, infobar.error.action:hover > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button label, infobar.error.action:hover > revealer > box button, + infobar.error.action:hover > revealer > box button.flat:backdrop label, + infobar.error.action:hover > revealer > box button.flat:backdrop, + infobar.error.action:hover > revealer > box button.flat label, + infobar.error.action:hover > revealer > box button.flat { color: #ffffff; } /********************* diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 28aaf00f..06c5b012 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -493,8 +493,6 @@ button { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, white 2px, white); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } button.titlebutton, button.sidebar-button, notebook > header > tabs > arrow, notebook > header > tabs > arrow.flat, button.flat { @@ -519,8 +517,6 @@ button { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); -gtk-icon-effect: highlight; } notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, @@ -806,8 +802,6 @@ button.suggested-action { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } button.suggested-action.flat { @@ -825,8 +819,6 @@ button.suggested-action { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } button.suggested-action:active, @@ -956,8 +948,6 @@ button.destructive-action { border-color: #a61414; border-bottom-color: #790e0e; background-image: linear-gradient(to top, #d41919 2px, #e52222); - text-shadow: 0 -1px rgba(0, 0, 0, 0.628235); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.628235); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(166, 20, 20, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } button.destructive-action.flat { @@ -975,8 +965,6 @@ button.destructive-action { border-color: #a61414; border-bottom-color: #790e0e; background-image: linear-gradient(to top, #d41919, #d91a1a 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.580235); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.580235); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(166, 20, 20, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } button.destructive-action:active, @@ -1151,8 +1139,6 @@ button.circular { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, white 2px, white), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); border-color: transparent; } @@ -1162,8 +1148,6 @@ button.circular { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px), linear-gradient(to top, #c2c2c2 25%, #d9d9d9 50%); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); border-color: transparent; } @@ -1187,8 +1171,6 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, white 2px, white); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } .inline-toolbar toolbutton > button:hover { color: #5c616c; @@ -1196,8 +1178,6 @@ stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attenti border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { color: #5c616c; @@ -1345,8 +1325,6 @@ list row button.image-button:not(.flat) { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { color: #5c616c; @@ -1747,8 +1725,6 @@ headerbar { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } .selection-mode button.titlebutton, .selection-mode .titlebar:not(headerbar) button.flat, .selection-mode.titlebar:not(headerbar) button.flat, .selection-mode headerbar button.flat, headerbar.selection-mode button.flat { @@ -1765,8 +1741,6 @@ headerbar { border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } .selection-mode .titlebar:not(headerbar) button:active, .selection-mode .titlebar:not(headerbar) button:checked, .selection-mode.titlebar:not(headerbar) button:active, .selection-mode.titlebar:not(headerbar) button:checked, .selection-mode headerbar button:active, .selection-mode headerbar button:checked, .selection-mode headerbar button.toggle:checked, .selection-mode headerbar button.toggle:active, headerbar.selection-mode button:active, @@ -1851,8 +1825,6 @@ headerbar { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, white 2px, white); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); border-color: #0051da; } .selection-mode .titlebar:not(headerbar) button.suggested-action:hover, .selection-mode.titlebar:not(headerbar) button.suggested-action:hover, .selection-mode headerbar button.suggested-action:hover, @@ -1862,8 +1834,6 @@ headerbar { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); border-color: #0051da; } .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, @@ -2728,8 +2698,6 @@ switch { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #c2c2c2; - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); background-image: linear-gradient(to bottom, white 20%, #ffffff 90%); box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } switch image { @@ -3196,8 +3164,6 @@ scale { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #c2c2c2; - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); background-image: linear-gradient(to bottom, white 20%, #ffffff 90%); box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); border: 1px solid #bababa; @@ -4307,8 +4273,6 @@ infobar { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, white 2px, white); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover { color: #5c616c; @@ -4316,8 +4280,6 @@ infobar { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { color: #5c616c; @@ -4456,8 +4418,6 @@ colorswatch#add-color-button { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, white 2px, white); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } colorswatch#add-color-button overlay:hover { color: #5c616c; @@ -4465,8 +4425,6 @@ colorswatch#add-color-button { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } colorswatch#add-color-button overlay:backdrop { color: #aeb0b6; @@ -5172,8 +5130,6 @@ switch { color: #5c616c; outline-color: rgba(92, 97, 108, 0.3); border-color: #c2c2c2; - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); background-image: linear-gradient(to bottom, white 20%, #ffffff 90%); box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); border: 1px solid #bababa; @@ -5310,8 +5266,6 @@ notebook > header { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, #ffffff, white 1px); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); } notebook > header.top > tabs > tab:checked, notebook > header.top > tabs > tab.reorderable-page:checked, notebook > header.bottom > tabs > tab:checked, @@ -5323,8 +5277,6 @@ notebook > header { border-color: #d9d9d9; border-bottom-color: #c2c2c2; background-image: linear-gradient(to top, white 2px, white); - text-shadow: 0 1px rgba(255, 255, 255, 0.769231); - -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); 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); background: #fafafa; } notebook > header.top > tabs > tab:checked:backdrop, @@ -5372,25 +5324,29 @@ infobar, infobar.info, infobar.question, infobar.warning, infobar.error { infobar.info:backdrop > revealer > box, infobar.info > revealer > box, infobar.info.action:hover:backdrop > revealer > box, infobar.info.action:hover > revealer > box { background-color: #2777ff; } -infobar.info button, infobar.info.action:hover button { +infobar.info button, +infobar.info button.flat, infobar.info.action:hover button, +infobar.info.action:hover button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff 2px, #4187ff); - text-shadow: 0 -1px rgba(0, 0, 0, 0.538824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.538824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } - infobar.info button:hover, infobar.info.action:hover button:hover { + infobar.info button:hover, + infobar.info button.flat:hover, infobar.info.action:hover button:hover, + infobar.info.action:hover button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; border-bottom-color: #0047c0; background-image: linear-gradient(to top, #2777ff, #2c7aff 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.490824); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.490824); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 90, 243, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } - infobar.info button:active, infobar.info button:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked { + infobar.info button:active, infobar.info button:checked, + infobar.info button.flat:active, + infobar.info button.flat:checked, infobar.info.action:hover button:active, infobar.info.action:hover button:checked, + infobar.info.action:hover button.flat:active, + infobar.info.action:hover button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #005af3; @@ -5398,14 +5354,18 @@ infobar.info button, infobar.info.action:hover button { box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.info button:disabled, infobar.info.action:hover button:disabled { + infobar.info button:disabled, + infobar.info button.flat:disabled, infobar.info.action:hover button:disabled, + infobar.info.action:hover button.flat:disabled { color: #a3c5ff; border-color: #005af3; background-image: image(#478bfe); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.info button:backdrop, infobar.info.action:hover button:backdrop { + infobar.info button:backdrop, + infobar.info button.flat:backdrop, infobar.info.action:hover button:backdrop, + infobar.info.action:hover button.flat:backdrop { color: #d4e4ff; border-color: #2777ff; background-image: image(#2777ff); @@ -5413,7 +5373,9 @@ infobar.info button, infobar.info.action:hover button { -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #005af3; } - infobar.info button:backdrop:disabled, infobar.info.action:hover button:backdrop:disabled { + infobar.info button:backdrop:disabled, + infobar.info button.flat:backdrop:disabled, infobar.info.action:hover button:backdrop:disabled, + infobar.info.action:hover button.flat:backdrop:disabled { color: #87b4fe; border-color: #478bfe; background-image: image(#478bfe); @@ -5421,31 +5383,51 @@ infobar.info button, infobar.info.action:hover button { -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #005af3; } - infobar.info button:backdrop label, infobar.info button:backdrop, infobar.info button label, infobar.info button, infobar.info.action:hover button:backdrop label, infobar.info.action:hover button:backdrop, infobar.info.action:hover button label, infobar.info.action:hover button { + infobar.info button:backdrop label, infobar.info button:backdrop, infobar.info button label, infobar.info button, + infobar.info button.flat:backdrop label, + infobar.info button.flat:backdrop, + infobar.info button.flat label, + infobar.info button.flat, infobar.info.action:hover button:backdrop label, infobar.info.action:hover button:backdrop, infobar.info.action:hover button label, infobar.info.action:hover button, + infobar.info.action:hover button.flat:backdrop label, + infobar.info.action:hover button.flat:backdrop, + infobar.info.action:hover button.flat label, + infobar.info.action:hover button.flat { color: #ffffff; } infobar.question:backdrop > revealer > box, infobar.question > revealer > box, infobar.warning:backdrop > revealer > box, infobar.warning > revealer > box, infobar.question.action:hover:backdrop > revealer > box, infobar.question.action:hover > revealer > box, infobar.warning.action:hover:backdrop > revealer > box, infobar.warning.action:hover > revealer > box { background-color: #fd7d00; } -infobar.question button, infobar.warning button, infobar.question.action:hover button, infobar.warning.action:hover button { +infobar.question button, +infobar.question button.flat, infobar.warning button, +infobar.warning button.flat, infobar.question.action:hover button, +infobar.question.action:hover button.flat, infobar.warning.action:hover button, +infobar.warning.action:hover button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; background-image: linear-gradient(to top, #fd7d00 2px, #ff8a18); - text-shadow: 0 -1px rgba(0, 0, 0, 0.603137); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.603137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } - infobar.question button:hover, infobar.warning button:hover, infobar.question.action:hover button:hover, infobar.warning.action:hover button:hover { + infobar.question button:hover, + infobar.question button.flat:hover, infobar.warning button:hover, + infobar.warning button.flat:hover, infobar.question.action:hover button:hover, + infobar.question.action:hover button.flat:hover, infobar.warning.action:hover button:hover, + infobar.warning.action:hover button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; border-bottom-color: #974b00; background-image: linear-gradient(to top, #fd7d00, #ff8003 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.555137); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.555137); box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(202, 100, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } - infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked { + infobar.question button:active, infobar.question button:checked, + infobar.question button.flat:active, + infobar.question button.flat:checked, infobar.warning button:active, infobar.warning button:checked, + infobar.warning button.flat:active, + infobar.warning button.flat:checked, infobar.question.action:hover button:active, infobar.question.action:hover button:checked, + infobar.question.action:hover button.flat:active, + infobar.question.action:hover button.flat:checked, infobar.warning.action:hover button:active, infobar.warning.action:hover button:checked, + infobar.warning.action:hover button.flat:active, + infobar.warning.action:hover button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #ca6400; @@ -5453,14 +5435,22 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.question button:disabled, infobar.warning button:disabled, infobar.question.action:hover button:disabled, infobar.warning.action:hover button:disabled { + infobar.question button:disabled, + infobar.question button.flat:disabled, infobar.warning button:disabled, + infobar.warning button.flat:disabled, infobar.question.action:hover button:disabled, + infobar.question.action:hover button.flat:disabled, infobar.warning.action:hover button:disabled, + infobar.warning.action:hover button.flat:disabled { color: #fec892; border-color: #ca6400; background-image: image(#fd9025); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.question button:backdrop, infobar.warning button:backdrop, infobar.question.action:hover button:backdrop, infobar.warning.action:hover button:backdrop { + infobar.question button:backdrop, + infobar.question button.flat:backdrop, infobar.warning button:backdrop, + infobar.warning button.flat:backdrop, infobar.question.action:hover button:backdrop, + infobar.question.action:hover button.flat:backdrop, infobar.warning.action:hover button:backdrop, + infobar.warning.action:hover button.flat:backdrop { color: #ffe5cc; border-color: #fd7d00; background-image: image(#fd7d00); @@ -5468,7 +5458,11 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #ca6400; } - infobar.question button:backdrop:disabled, infobar.warning button:backdrop:disabled, infobar.question.action:hover button:backdrop:disabled, infobar.warning.action:hover button:backdrop:disabled { + infobar.question button:backdrop:disabled, + infobar.question button.flat:backdrop:disabled, infobar.warning button:backdrop:disabled, + infobar.warning button.flat:backdrop:disabled, infobar.question.action:hover button:backdrop:disabled, + infobar.question.action:hover button.flat:backdrop:disabled, infobar.warning.action:hover button:backdrop:disabled, + infobar.warning.action:hover button.flat:backdrop:disabled { color: #feb771; border-color: #fd9025; background-image: image(#fd9025); @@ -5476,30 +5470,58 @@ infobar.question button, infobar.warning button, infobar.question.action:hover b -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #ca6400; } - infobar.question button:backdrop label, infobar.question button:backdrop, infobar.question button label, infobar.question button, infobar.warning button:backdrop label, infobar.warning button:backdrop, infobar.warning button label, infobar.warning button, infobar.question.action:hover button:backdrop label, infobar.question.action:hover button:backdrop, infobar.question.action:hover button label, infobar.question.action:hover button, infobar.warning.action:hover button:backdrop label, infobar.warning.action:hover button:backdrop, infobar.warning.action:hover button label, infobar.warning.action:hover button { + infobar.question button:backdrop label, infobar.question button:backdrop, infobar.question button label, infobar.question button, + infobar.question button.flat:backdrop label, + infobar.question button.flat:backdrop, + infobar.question button.flat label, + infobar.question button.flat, infobar.warning button:backdrop label, infobar.warning button:backdrop, infobar.warning button label, infobar.warning button, + infobar.warning button.flat:backdrop label, + infobar.warning button.flat:backdrop, + infobar.warning button.flat label, + infobar.warning button.flat, infobar.question.action:hover button:backdrop label, infobar.question.action:hover button:backdrop, infobar.question.action:hover button label, infobar.question.action:hover button, + infobar.question.action:hover button.flat:backdrop label, + infobar.question.action:hover button.flat:backdrop, + infobar.question.action:hover button.flat label, + infobar.question.action:hover button.flat, infobar.warning.action:hover button:backdrop label, infobar.warning.action:hover button:backdrop, infobar.warning.action:hover button label, infobar.warning.action:hover button, + infobar.warning.action:hover button.flat:backdrop label, + infobar.warning.action:hover button.flat:backdrop, + infobar.warning.action:hover button.flat label, + infobar.warning.action:hover button.flat { color: #ffffff; } infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar.error.action:hover:backdrop > revealer > box, infobar.error.action:hover > revealer > box { background-color: #bf1717; } - infobar.error:backdrop > revealer > box button, infobar.error > revealer > box button, infobar.error.action:hover:backdrop > revealer > box button, infobar.error.action:hover > revealer > box button { + infobar.error:backdrop > revealer > box button, + infobar.error:backdrop > revealer > box button.flat, infobar.error > revealer > box button, + infobar.error > revealer > box button.flat, infobar.error.action:hover:backdrop > revealer > box button, + infobar.error.action:hover:backdrop > revealer > box button.flat, infobar.error.action:hover > revealer > box button, + infobar.error.action:hover > revealer > box button.flat { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; background-image: linear-gradient(to top, #bf1717 2px, #d61a1a); - text-shadow: 0 -1px rgba(0, 0, 0, 0.664314); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.664314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } - infobar.error:backdrop > revealer > box button:hover, infobar.error > revealer > box button:hover, infobar.error.action:hover:backdrop > revealer > box button:hover, infobar.error.action:hover > revealer > box button:hover { + infobar.error:backdrop > revealer > box button:hover, + infobar.error:backdrop > revealer > box button.flat:hover, infobar.error > revealer > box button:hover, + infobar.error > revealer > box button.flat:hover, infobar.error.action:hover:backdrop > revealer > box button:hover, + infobar.error.action:hover:backdrop > revealer > box button.flat:hover, infobar.error.action:hover > revealer > box button:hover, + infobar.error.action:hover > revealer > box button.flat:hover { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; border-bottom-color: #640c0c; background-image: linear-gradient(to top, #bf1717, #c41818 1px); - text-shadow: 0 -1px rgba(0, 0, 0, 0.616314); - -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.616314); box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(145, 18, 18, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); } - infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked { + infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, + infobar.error:backdrop > revealer > box button.flat:active, + infobar.error:backdrop > revealer > box button.flat:checked, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, + infobar.error > revealer > box button.flat:active, + infobar.error > revealer > box button.flat:checked, infobar.error.action:hover:backdrop > revealer > box button:active, infobar.error.action:hover:backdrop > revealer > box button:checked, + infobar.error.action:hover:backdrop > revealer > box button.flat:active, + infobar.error.action:hover:backdrop > revealer > box button.flat:checked, infobar.error.action:hover > revealer > box button:active, infobar.error.action:hover > revealer > box button:checked, + infobar.error.action:hover > revealer > box button.flat:active, + infobar.error.action:hover > revealer > box button.flat:checked { color: #ffffff; outline-color: rgba(255, 255, 255, 0.3); border-color: #911212; @@ -5507,14 +5529,22 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; } - infobar.error:backdrop > revealer > box button:disabled, infobar.error > revealer > box button:disabled, infobar.error.action:hover:backdrop > revealer > box button:disabled, infobar.error.action:hover > revealer > box button:disabled { + infobar.error:backdrop > revealer > box button:disabled, + infobar.error:backdrop > revealer > box button.flat:disabled, infobar.error > revealer > box button:disabled, + infobar.error > revealer > box button.flat:disabled, infobar.error.action:hover:backdrop > revealer > box button:disabled, + infobar.error.action:hover:backdrop > revealer > box button.flat:disabled, infobar.error.action:hover > revealer > box button:disabled, + infobar.error.action:hover > revealer > box button.flat:disabled { color: #e49c9c; border-color: #911212; background-image: image(#c83939); text-shadow: none; -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); } - infobar.error:backdrop > revealer > box button:backdrop, infobar.error > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button:backdrop { + infobar.error:backdrop > revealer > box button:backdrop, + infobar.error:backdrop > revealer > box button.flat:backdrop, infobar.error > revealer > box button:backdrop, + infobar.error > revealer > box button.flat:backdrop, infobar.error.action:hover:backdrop > revealer > box button:backdrop, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop, infobar.error.action:hover > revealer > box button:backdrop, + infobar.error.action:hover > revealer > box button.flat:backdrop { color: #f2d1d1; border-color: #bf1717; background-image: image(#bf1717); @@ -5522,7 +5552,11 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #911212; } - infobar.error:backdrop > revealer > box button:backdrop:disabled, infobar.error > revealer > box button:backdrop:disabled, infobar.error.action:hover:backdrop > revealer > box button:backdrop:disabled, infobar.error.action:hover > revealer > box button:backdrop:disabled { + infobar.error:backdrop > revealer > box button:backdrop:disabled, + infobar.error:backdrop > revealer > box button.flat:backdrop:disabled, infobar.error > revealer > box button:backdrop:disabled, + infobar.error > revealer > box button.flat:backdrop:disabled, infobar.error.action:hover:backdrop > revealer > box button:backdrop:disabled, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop:disabled, infobar.error.action:hover > revealer > box button:backdrop:disabled, + infobar.error.action:hover > revealer > box button.flat:backdrop:disabled { color: #db7e7e; border-color: #c83939; background-image: image(#c83939); @@ -5530,7 +5564,23 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar -gtk-icon-shadow: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); border-color: #911212; } - infobar.error:backdrop > revealer > box button:backdrop label, infobar.error:backdrop > revealer > box button:backdrop, infobar.error:backdrop > revealer > box button label, infobar.error:backdrop > revealer > box button, infobar.error > revealer > box button:backdrop label, infobar.error > revealer > box button:backdrop, infobar.error > revealer > box button label, infobar.error > revealer > box button, infobar.error.action:hover:backdrop > revealer > box button:backdrop label, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button label, infobar.error.action:hover:backdrop > revealer > box button, infobar.error.action:hover > revealer > box button:backdrop label, infobar.error.action:hover > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button label, infobar.error.action:hover > revealer > box button { + infobar.error:backdrop > revealer > box button:backdrop label, infobar.error:backdrop > revealer > box button:backdrop, infobar.error:backdrop > revealer > box button label, infobar.error:backdrop > revealer > box button, + infobar.error:backdrop > revealer > box button.flat:backdrop label, + infobar.error:backdrop > revealer > box button.flat:backdrop, + infobar.error:backdrop > revealer > box button.flat label, + infobar.error:backdrop > revealer > box button.flat, infobar.error > revealer > box button:backdrop label, infobar.error > revealer > box button:backdrop, infobar.error > revealer > box button label, infobar.error > revealer > box button, + infobar.error > revealer > box button.flat:backdrop label, + infobar.error > revealer > box button.flat:backdrop, + infobar.error > revealer > box button.flat label, + infobar.error > revealer > box button.flat, infobar.error.action:hover:backdrop > revealer > box button:backdrop label, infobar.error.action:hover:backdrop > revealer > box button:backdrop, infobar.error.action:hover:backdrop > revealer > box button label, infobar.error.action:hover:backdrop > revealer > box button, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop label, + infobar.error.action:hover:backdrop > revealer > box button.flat:backdrop, + infobar.error.action:hover:backdrop > revealer > box button.flat label, + infobar.error.action:hover:backdrop > revealer > box button.flat, infobar.error.action:hover > revealer > box button:backdrop label, infobar.error.action:hover > revealer > box button:backdrop, infobar.error.action:hover > revealer > box button label, infobar.error.action:hover > revealer > box button, + infobar.error.action:hover > revealer > box button.flat:backdrop label, + infobar.error.action:hover > revealer > box button.flat:backdrop, + infobar.error.action:hover > revealer > box button.flat label, + infobar.error.action:hover > revealer > box button.flat { color: #ffffff; } /********************* diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index a262c4c5..3d4bb963 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -287,7 +287,8 @@ notebook { **************/ infobar { @mixin _infobar_button($bg) { - button { + button, + button.flat { // FIXME: extend selection mode buttons @include button(normal, $bg, $selected_fg_color, none); diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss index f405f8c6..8c22df30 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss +++ b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss @@ -198,7 +198,7 @@ border-bottom-color: if($c != $bg_color, _border_color($c, true), $alt_borders_color); background-image: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)), $backimage; - @include _button_text_shadow($tc, $c); + //@include _button_text_shadow($tc, $c); @include _shadows(inset 0 1px $_hilight_color, $_button_edge, $_button_shadow); } @@ -213,13 +213,13 @@ @if $variant == 'light' { background-image: linear-gradient(to top, $c, lighten($c, 1%) 1px), $backimage; - @include _button_text_shadow($tc, lighten($c, 6%)); + //@include _button_text_shadow($tc, lighten($c, 6%)); @include _shadows(inset 0 1px _button_hilight_color(lighten($c, 6%)), $_button_edge, $_button_shadow); } @else { background-image: linear-gradient(to top, darken($c,1%), lighten($c, 1%) 1px), $backimage; - @include _button_text_shadow($tc,lighten($c, 6%)); + //@include _button_text_shadow($tc,lighten($c, 6%)); @include _shadows(inset 0 1px _button_hilight_color(darken($c, 2%)), $_button_edge, $_button_shadow); } } @@ -231,7 +231,7 @@ color: $tc; outline-color: transparentize($tc, 0.7); border-color: if($c != $bg_color, _border_color($c, true), $alt_borders_color); - @include _button_text_shadow($tc, $c); + //@include _button_text_shadow($tc, $c); @if $variant == 'light' { background-image: linear-gradient(to bottom, lighten($c, 5%) 20%, $c 90%); @include _shadows(inset 0 1px _button_hilight_color(lighten($c, 6%)), diff --git a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch index dbe0743d..e55b5f6a 100644 --- a/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch +++ b/src/themes/Kali/sass/gtk-sass/upstream/_drawing.scss.patch @@ -11,4 +11,20 @@ < linear-gradient(to top, darken($c,1%) 2px, $c)), --- > background-image: linear-gradient(to top, if($c != $bg_color, $c, lighten($c, 3%)) 2px, lighten($c, 5%)), +201c201 +< @include _button_text_shadow($tc, $c); +--- +> //@include _button_text_shadow($tc, $c); +216c216 +< @include _button_text_shadow($tc, lighten($c, 6%)); +--- +> //@include _button_text_shadow($tc, lighten($c, 6%)); +222c222 +< @include _button_text_shadow($tc,lighten($c, 6%)); +--- +> //@include _button_text_shadow($tc,lighten($c, 6%)); +234c234 +< @include _button_text_shadow($tc, $c); +--- +> //@include _button_text_shadow($tc, $c); diff --git a/src/themes/Kali/sass/gtk-sass/upstream/sync.sh b/src/themes/Kali/sass/gtk-sass/upstream/sync.sh index 622a146a..e40144a3 100755 --- a/src/themes/Kali/sass/gtk-sass/upstream/sync.sh +++ b/src/themes/Kali/sass/gtk-sass/upstream/sync.sh @@ -7,18 +7,18 @@ RESET='\033[0m' VERSION=3.24.24 echo -echo -e " $YELLOW[ i ]$RESET Upstream version $VERSION" +printf " $YELLOW[ i ]$RESET Upstream version $VERSION\n" echo while read file; do echo - echo -e " $GREEN[ * ]$RESET Downloading file $file" + printf " $GREEN[ * ]$RESET Downloading file $file\n" wget https://gitlab.gnome.org/GNOME/gtk/raw/$VERSION/gtk/theme/Adwaita/$file --timestamping --quiet if [ -f $file.patch ] then - echo -e " $YELLOW[ ~ ]$RESET Apply patch" + printf " $YELLOW[ ~ ]$RESET Apply patch\n" patch $file $file.patch --quiet fi done <<- EOF From 4f796cce4f5f8a59d0db3104cc6a5e186c0fd329 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Mon, 21 Dec 2020 13:48:45 +0100 Subject: [PATCH 10/22] GTK3: theme calendar --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 10 ++++++++++ share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 10 ++++++++++ share/themes/Kali-Light/gtk-3.0/gtk.css | 10 ++++++++++ src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 11 +++++++++++ 4 files changed, 41 insertions(+) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index d3ffb0a8..5fa836ef 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5577,6 +5577,16 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar .app-notification.frame:backdrop { box-shadow: none; } +/************ + * Calendar * + ***********/ +calendar { + border-radius: 6px; + border: 0; + padding: 1px; } + calendar:selected { + border-radius: 999px; } + /*********** * Dialogs * ***********/ 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 d3ffb0a8..5fa836ef 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5577,6 +5577,16 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar .app-notification.frame:backdrop { box-shadow: none; } +/************ + * Calendar * + ***********/ +calendar { + border-radius: 6px; + border: 0; + padding: 1px; } + calendar:selected { + border-radius: 999px; } + /*********** * Dialogs * ***********/ diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 06c5b012..cd51e132 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5598,6 +5598,16 @@ infobar.error:backdrop > revealer > box, infobar.error > revealer > box, infobar .app-notification.frame:backdrop { box-shadow: none; } +/************ + * Calendar * + ***********/ +calendar { + border-radius: 6px; + border: 0; + padding: 1px; } + calendar:selected { + border-radius: 999px; } + /*********** * Dialogs * ***********/ diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 3d4bb963..857167a2 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -375,6 +375,17 @@ infobar { &:backdrop { box-shadow: none; } } +/************ + * Calendar * + ***********/ +calendar { + border-radius: 6px; + border:0; + padding: 1px; + + &:selected { border-radius: 999px; } +} + /*********** * Dialogs * ***********/ From 33d24a462d549fb33d8f2e77b1e331915cbda6f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Tue, 22 Dec 2020 10:51:27 +0100 Subject: [PATCH 11/22] GTK3: make dialog headerbar blend with the window content --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 3 +++ share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 3 +++ share/themes/Kali-Light/gtk-3.0/gtk.css | 3 +++ src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 6 ++++++ 4 files changed, 15 insertions(+) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 5fa836ef..22a441c3 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5204,6 +5204,9 @@ headerbar { min-width: 20px; margin: 0 4px; padding: 0; } + dialog .titlebar, dialog .titlebar:backdrop, dialog headerbar, dialog headerbar:backdrop { + background: #23252e; + border: 0; } paned headerbar:first-child, hdyleaflet headerbar:first-child, headerbar.titlebar headerbar:first-child { border-color: transparent; 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 5fa836ef..22a441c3 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5204,6 +5204,9 @@ headerbar { min-width: 20px; margin: 0 4px; padding: 0; } + dialog .titlebar, dialog .titlebar:backdrop, dialog headerbar, dialog headerbar:backdrop { + background: #23252e; + border: 0; } paned headerbar:first-child, hdyleaflet headerbar:first-child, headerbar.titlebar headerbar:first-child { border-color: transparent; diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index cd51e132..2b83485a 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5225,6 +5225,9 @@ headerbar { min-width: 20px; margin: 0 4px; padding: 0; } + dialog .titlebar, dialog .titlebar:backdrop, dialog headerbar, dialog headerbar:backdrop { + background: #ffffff; + border: 0; } paned headerbar:first-child, hdyleaflet headerbar:first-child, headerbar.titlebar headerbar:first-child { border-color: transparent; diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 857167a2..f7210827 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -195,6 +195,12 @@ headerbar { padding: 0; } } + + dialog &, + dialog &:backdrop { + background: $bg_color; + border: 0; + } } paned, hdyleaflet, headerbar.titlebar { From 0ebeb087f7f14ab855f742ad0623b0793c25b657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Tue, 22 Dec 2020 11:15:30 +0100 Subject: [PATCH 12/22] GTK3: remove blue border from headerbar --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 2 +- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 2 +- share/themes/Kali-Light/gtk-3.0/gtk.css | 2 +- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 22a441c3..7ff5fd0e 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5169,7 +5169,7 @@ scale slider:active { ***************/ .titlebar, headerbar { - border-color: #2777ff; + border-color: #0d0e11; background: #0d0e11 -gtk-scaled(url("assets/kali-headerbar-logo-dark.png"), url("assets/kali-headerbar-logo-dark@2.png")), linear-gradient(to top, #16171d, #1a1c23); box-shadow: inset 0 1px rgba(238, 238, 236, 0.07); background-repeat: no-repeat; 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 22a441c3..7ff5fd0e 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5169,7 +5169,7 @@ scale slider:active { ***************/ .titlebar, headerbar { - border-color: #2777ff; + border-color: #0d0e11; background: #0d0e11 -gtk-scaled(url("assets/kali-headerbar-logo-dark.png"), url("assets/kali-headerbar-logo-dark@2.png")), linear-gradient(to top, #16171d, #1a1c23); box-shadow: inset 0 1px rgba(238, 238, 236, 0.07); background-repeat: no-repeat; diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 2b83485a..4cf37bea 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5190,7 +5190,7 @@ scale slider:active { ***************/ .titlebar, headerbar { - border-color: #2777ff; + border-color: #d9d9d9; background: #fafafa -gtk-scaled(url("assets/kali-headerbar-logo.png"), url("assets/kali-headerbar-logo@2.png")), linear-gradient(to top, whitesmoke, #fcfcfc); box-shadow: inset 0 1px rgba(255, 255, 255, 0.8); background-repeat: no-repeat; diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index f7210827..e03e3190 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -155,7 +155,7 @@ scale slider:active { ***************/ .titlebar, headerbar { - border-color: $selected_bg_color; + border-color: $borders_color; $_scale_asset: 'assets/kali-headerbar-logo#{$asset_suffix}'; @include headerbar_fill(darken($bg_color, if($variant == 'light', 2%, 10%)), From 0eebf78a6e81433c84453449867c2902a200d666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Tue, 22 Dec 2020 12:22:08 +0100 Subject: [PATCH 13/22] GTK3: theme treeview --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 15 +++++++++++++++ share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 15 +++++++++++++++ share/themes/Kali-Light/gtk-3.0/gtk.css | 15 +++++++++++++++ src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 11 +++++++++++ 4 files changed, 56 insertions(+) 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 * ***************/ From b3b6218c72e9b8187d36b558a5af37518352f037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Tue, 22 Dec 2020 13:02:47 +0100 Subject: [PATCH 14/22] GTK3: remove background-size from headerbar --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 3 +-- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 3 +-- share/themes/Kali-Light/gtk-3.0/gtk.css | 3 +-- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 2 +- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 947391be..1c215f3b 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5173,8 +5173,7 @@ headerbar { background: #0d0e11 -gtk-scaled(url("assets/kali-headerbar-logo-dark.png"), url("assets/kali-headerbar-logo-dark@2.png")), linear-gradient(to top, #16171d, #1a1c23); box-shadow: inset 0 1px rgba(238, 238, 236, 0.07); background-repeat: no-repeat; - background-position: left; - background-size: auto 150%; } + background-position: left; } .titlebar:backdrop, headerbar:backdrop { background-image: -gtk-scaled(url("assets/kali-headerbar-logo-dark.png"), url("assets/kali-headerbar-logo-dark@2.png")); 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 947391be..1c215f3b 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5173,8 +5173,7 @@ headerbar { background: #0d0e11 -gtk-scaled(url("assets/kali-headerbar-logo-dark.png"), url("assets/kali-headerbar-logo-dark@2.png")), linear-gradient(to top, #16171d, #1a1c23); box-shadow: inset 0 1px rgba(238, 238, 236, 0.07); background-repeat: no-repeat; - background-position: left; - background-size: auto 150%; } + background-position: left; } .titlebar:backdrop, headerbar:backdrop { background-image: -gtk-scaled(url("assets/kali-headerbar-logo-dark.png"), url("assets/kali-headerbar-logo-dark@2.png")); diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 7d7ee06e..67afc533 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5194,8 +5194,7 @@ headerbar { background: #fafafa -gtk-scaled(url("assets/kali-headerbar-logo.png"), url("assets/kali-headerbar-logo@2.png")), linear-gradient(to top, whitesmoke, #fcfcfc); box-shadow: inset 0 1px rgba(255, 255, 255, 0.8); background-repeat: no-repeat; - background-position: left; - background-size: auto 150%; } + background-position: left; } .titlebar:backdrop, headerbar:backdrop { background-image: -gtk-scaled(url("assets/kali-headerbar-logo.png"), url("assets/kali-headerbar-logo@2.png")); diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index e419d8b0..0884ce77 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -153,6 +153,7 @@ scale slider:active { /*************** * Header bars * ***************/ + .titlebar, headerbar { border-color: $borders_color; @@ -162,7 +163,6 @@ headerbar { $ov: -gtk-scaled(url('#{$_scale_asset}.png'), url('#{$_scale_asset}@2.png'))); background-repeat: no-repeat; background-position: left; - background-size: auto 150%; &:backdrop { background-image: -gtk-scaled(url('#{$_scale_asset}.png'), url('#{$_scale_asset}@2.png')); From a767ab0bae893f4f0c2906202e693cc14742aed7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Tue, 22 Dec 2020 13:23:13 +0100 Subject: [PATCH 15/22] GTK3: change border-color to treeview buttons --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 2 ++ share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 2 ++ share/themes/Kali-Light/gtk-3.0/gtk.css | 2 ++ src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 7 ++++++- 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 1c215f3b..3fe41328 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5227,6 +5227,8 @@ treeview.view { 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); } + treeview.view header button:hover, treeview.view header button:active { + border-color: #0d0e11; } /*************** * 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 1c215f3b..3fe41328 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5227,6 +5227,8 @@ treeview.view { 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); } + treeview.view header button:hover, treeview.view header button:active { + border-color: #0d0e11; } /*************** * Popovers * diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 67afc533..2be40341 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5248,6 +5248,8 @@ treeview.view { 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); } + treeview.view header button:hover, treeview.view header button:active { + border-color: #d9d9d9; } /*************** * Popovers * diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 0884ce77..5d533e3f 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -220,7 +220,12 @@ treeview.view { &:backdrop { border-top-color: $backdrop_borders_color; } - header button { @include button(normal); } + header button { + @include button(normal); + + &:hover, + &:active { border-color: $borders_color; } + } } /*************** From 12e901495c0c8ce74c00f665750007f24411bf89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 23 Dec 2020 11:16:44 +0100 Subject: [PATCH 16/22] Fix libhandy upstream sync script --- src/themes/Kali/sass/gtk-sass/libhandy/sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh b/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh index 23db21f0..0613d8c8 100755 --- a/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh +++ b/src/themes/Kali/sass/gtk-sass/libhandy/sync.sh @@ -7,7 +7,7 @@ RESET='\033[0m' while read file; do echo - echo -e " $GREEN[ * ]$RESET Downloading file $file" + printf " $GREEN[ * ]$RESET Downloading file $file\n" wget https://gitlab.gnome.org/GNOME/libhandy/-/raw/master/src/themes/$file --timestamping --quiet done <<- EOF _definitions.scss From 5c06f612003afb60987528124e500d31262ec9ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Mon, 28 Dec 2020 12:04:03 +0100 Subject: [PATCH 17/22] GTK3: fix the background of hovered buttons inside infobars --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 7 +++++-- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 7 +++++-- share/themes/Kali-Light/gtk-3.0/gtk.css | 7 +++++-- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 10 +++++++--- 4 files changed, 22 insertions(+), 9 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 3fe41328..875540bb 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5064,15 +5064,18 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop):not(:link):not(:visited) { + button.flat:hover:not(:backdrop) { transition: none; } + button.flat:hover:not(:backdrop):link { + background: transparent; + box-shadow: none; } /********** * Entry * 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 3fe41328..875540bb 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5064,15 +5064,18 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop):not(:link):not(:visited) { + button.flat:hover:not(:backdrop) { transition: none; } + button.flat:hover:not(:backdrop):link { + background: transparent; + box-shadow: none; } /********** * Entry * diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 2be40341..0516f49c 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5086,15 +5086,18 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop):not(:link):not(:visited), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { background: #f2f2f2; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop):not(:link):not(:visited) { + button.flat:hover:not(:backdrop) { transition: none; } + button.flat:hover:not(:backdrop):link { + background: transparent; + box-shadow: none; } /********** * Entry * diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 5d533e3f..18a95a4e 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -31,9 +31,14 @@ button { border-color: transparent; transition: $button_transition; - &:hover:not(:backdrop):not(:link):not(:visited) { + &:hover:not(:backdrop) { @extend %button_active; transition: none; + + &:link { + background: transparent; + box-shadow: none; + } } } } @@ -311,7 +316,6 @@ infobar { @mixin _infobar_button($bg) { button, button.flat { - // FIXME: extend selection mode buttons @include button(normal, $bg, $selected_fg_color, none); &:hover { @include button(hover, $bg, $selected_fg_color, none); } @@ -319,7 +323,7 @@ infobar { &:active, &:checked { @include button(active, $bg, $selected_fg_color, none); } - &:disabled { @include button(insensitive,$bg,$selected_fg_color,none); } + &:disabled { @include button(insensitive, $bg, $selected_fg_color, none); } &:backdrop { @include button(backdrop, $bg, $selected_fg_color, none); From 4359106bd985b83b0d4681acd570e97ca47cc204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 30 Dec 2020 10:05:45 +0100 Subject: [PATCH 18/22] GTK3: use button styling for switch and scale sliders --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 48 ++++++++---------- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 48 ++++++++---------- share/themes/Kali-Light/gtk-3.0/gtk.css | 50 ++++++++----------- .../Kali/sass/gtk-sass/_common-tweaks.scss | 39 ++++++--------- 4 files changed, 78 insertions(+), 107 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 875540bb..fd7c8bf3 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5089,12 +5089,6 @@ headerbar spinbutton:not(.vertical), headerbar entry { background: #272a34; } -/********** - * Slider * - **********/ -scale slider:active, switch:hover slider { - background-image: image(#0f1014); } - /********** * Switch * **********/ @@ -5108,23 +5102,12 @@ switch { switch:backdrop, switch:disabled { box-shadow: none; border-color: #16171d; } - switch slider { - color: #eeeeec; - outline-color: rgba(238, 238, 236, 0.3); - border-color: black; - background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - border: 1px solid black; - border-radius: 50%; - transition-property: background, border, box-shadow; } - switch slider:checked { - border-color: black; } - switch slider:checked:backdrop:not(:disabled) { - border-color: #16171d; } - switch slider:disabled { + switch slider:checked { + border-color: #0d0e11; } + switch slider:checked:backdrop:not(:disabled) { border-color: #16171d; } - switch:hover slider { - border-color: #2777ff; } + switch slider:disabled { + border-color: #16171d; } /************************* * Check and Radio items * @@ -5161,11 +5144,22 @@ radio:indeterminate, menu menuitem radio:checked, menu menuitem radio:indetermin radio:indeterminate:backdrop, menu menuitem radio:checked:backdrop, menu menuitem radio:indeterminate:backdrop { background-image: image(#2777ff); } -/************ - * GtkScale * - ************/ -scale slider:active { - border-color: #2777ff; } +switch slider, +scale slider { + 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), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + border-color: black; } + switch:hover slider, switch slider:active, + scale slider:active { + background-image: image(#0f1014); + border-color: #2777ff; } + switch slider:disabled, + scale slider:disabled { + border-color: #16171d; } /*************** * Header bars * 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 875540bb..fd7c8bf3 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5089,12 +5089,6 @@ headerbar spinbutton:not(.vertical), headerbar entry { background: #272a34; } -/********** - * Slider * - **********/ -scale slider:active, switch:hover slider { - background-image: image(#0f1014); } - /********** * Switch * **********/ @@ -5108,23 +5102,12 @@ switch { switch:backdrop, switch:disabled { box-shadow: none; border-color: #16171d; } - switch slider { - color: #eeeeec; - outline-color: rgba(238, 238, 236, 0.3); - border-color: black; - background-image: linear-gradient(to bottom, #1c1e25 20%, #16171d 90%); - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); - border: 1px solid black; - border-radius: 50%; - transition-property: background, border, box-shadow; } - switch slider:checked { - border-color: black; } - switch slider:checked:backdrop:not(:disabled) { - border-color: #16171d; } - switch slider:disabled { + switch slider:checked { + border-color: #0d0e11; } + switch slider:checked:backdrop:not(:disabled) { border-color: #16171d; } - switch:hover slider { - border-color: #2777ff; } + switch slider:disabled { + border-color: #16171d; } /************************* * Check and Radio items * @@ -5161,11 +5144,22 @@ radio:indeterminate, menu menuitem radio:checked, menu menuitem radio:indetermin radio:indeterminate:backdrop, menu menuitem radio:checked:backdrop, menu menuitem radio:indeterminate:backdrop { background-image: image(#2777ff); } -/************ - * GtkScale * - ************/ -scale slider:active { - border-color: #2777ff; } +switch slider, +scale slider { + 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), 0 1px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(13, 14, 17, 0.75), 0 1px 2px rgba(0, 0, 0, 0.27); + border-color: black; } + switch:hover slider, switch slider:active, + scale slider:active { + background-image: image(#0f1014); + border-color: #2777ff; } + switch slider:disabled, + scale slider:disabled { + border-color: #16171d; } /*************** * Header bars * diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 0516f49c..9b91aa5d 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5110,12 +5110,6 @@ headerbar spinbutton:not(.vertical), headerbar entry { background: #fafafa; } -/********** - * Slider * - **********/ -scale slider:active, switch:hover slider { - background-image: image(white); } - /********** * Switch * **********/ @@ -5129,23 +5123,12 @@ switch { switch:backdrop, switch:disabled { box-shadow: none; border-color: #e0e0e0; } - switch slider { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #c2c2c2; - background-image: linear-gradient(to bottom, white 20%, #ffffff 90%); - box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); - border: 1px solid #bababa; - border-radius: 50%; - transition-property: background, border, box-shadow; } - switch slider:checked { - border-color: #0051da; } - switch slider:checked:backdrop:not(:disabled) { - border-color: #2777ff; } - switch slider:disabled { - border-color: #e0e0e0; } - switch:hover slider { - border-color: #2777ff; } + switch slider:checked { + border-color: #0051da; } + switch slider:checked:backdrop:not(:disabled) { + border-color: #2777ff; } + switch slider:disabled { + border-color: #e0e0e0; } /************************* * Check and Radio items * @@ -5182,11 +5165,22 @@ radio:indeterminate, menu menuitem radio:checked, menu menuitem radio:indetermin radio:indeterminate:backdrop, menu menuitem radio:checked:backdrop, menu menuitem radio:indeterminate:backdrop { background-image: image(#2777ff); } -/************ - * GtkScale * - ************/ -scale slider:active { - border-color: #2777ff; } +switch slider, +scale slider { + 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, 0 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(217, 217, 217, 0.75), 0 1px 2px rgba(0, 0, 0, 0.07); + border-color: #bababa; } + switch:hover slider, switch slider:active, + scale slider:active { + background-image: image(white); + border-color: #2777ff; } + switch slider:disabled, + scale slider:disabled { + border-color: #e0e0e0; } /*************** * Header bars * diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 18a95a4e..2a3214bc 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -59,19 +59,10 @@ headerbar entry { background: $base_color; } -/********** - * Slider * - **********/ -%slider_active { - background-image: if($variant == 'light', image(lighten($bg_color, 14%)), image(darken($bg_color, 9%))); -} - /********** * Switch * **********/ switch { - $_slider_border_color: darken($alt_borders_color, 3%); - box-shadow: $_widget_inset_shadow; &:checked { @@ -87,14 +78,10 @@ switch { } slider { - @include button(normal-alt, $edge: $shadow_color); - - border: 1px solid $_slider_border_color; - border-radius: 50%; - transition-property: background, border, box-shadow; + @extend %slider; &:checked { - border-color: if($variant=='light', $suggested_border_color, $_slider_border_color); + border-color: if($variant=='light', $suggested_border_color, $borders_color); &:backdrop:not(:disabled) { border-color: if($variant=='light', $suggested_bg_color, $backdrop_borders_color); } @@ -105,10 +92,7 @@ switch { } } - &:hover slider { - @extend %slider_active; - border-color: $suggested_bg_color; - } + &:hover slider { @extend %slider_active; } } /************************* @@ -146,13 +130,18 @@ radio { } } -/************ - * GtkScale * - ************/ -scale slider:active { - @extend %slider_active; +%slider, +scale slider { + @include button(normal, $edge: $shadow_color); - border-color: $suggested_bg_color; + border-color: darken($alt_borders_color, 3%); + @at-root %slider_active, + &:active { + background-image: if($variant == 'light', image(lighten($bg_color, 14%)), image(darken($bg_color, 9%))); + border-color: $suggested_bg_color; + } + + &:disabled { border-color: $backdrop_borders_color; } } /*************** From c2c555603c042918eb3a2e4abdda3e44dd825fde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 30 Dec 2020 13:30:31 +0100 Subject: [PATCH 19/22] GTK3: match titlebutton placement with xfwm4 theme --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 42 +++++++++++------- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 42 +++++++++++------- share/themes/Kali-Light/gtk-3.0/gtk.css | 42 +++++++++++------- .../Kali/sass/gtk-sass/_common-tweaks.scss | 44 ++++++++++++++----- 4 files changed, 115 insertions(+), 55 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index fd7c8bf3..d8bf8aef 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5189,17 +5189,12 @@ headerbar { .titlebar.default-decoration, headerbar.default-decoration { min-height: 0; - padding: 3px; - border-color: #0d0e11; } - .titlebar.default-decoration:backdrop, - headerbar.default-decoration:backdrop { - background-color: #272a34; } + padding: 6px; } .titlebar.default-decoration button.titlebutton, headerbar.default-decoration button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0 4px; - padding: 0; } + min-height: 0; + min-width: 0; + margin: 0; } dialog .titlebar, dialog .titlebar:backdrop, dialog headerbar, dialog headerbar:backdrop { background: #23252e; border: 0; } @@ -5647,12 +5642,29 @@ decoration { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); } button.titlebutton:not(.appmenu) { - margin: 0; } - -button.titlebutton:backdrop { - background: transparent; } - button.titlebutton:backdrop:not(:hover) { - border-color: transparent; } + margin: 0; + margin-left: 6px; + padding: 0; + min-width: 0; + min-height: 0; + border: 0; + -gtk-icon-shadow: none; } + button.titlebutton:not(.appmenu) + button.titlebutton:not(.appmenu) { + margin-left: 0; } + button.titlebutton:not(.appmenu):last-child { + margin-right: 6px; } + button.titlebutton:not(.appmenu):hover { + transition: 0; + background: rgba(255, 255, 255, 0.2); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px #0d0e11; } + .maximized button.titlebutton:not(.appmenu):last-child, .fullscreen button.titlebutton:not(.appmenu):last-child, .tiled button.titlebutton:not(.appmenu):last-child, .tiled-top button.titlebutton:not(.appmenu):last-child, .tiled-right button.titlebutton:not(.appmenu):last-child, .tiled-bottom button.titlebutton:not(.appmenu):last-child, .tiled-left button.titlebutton:not(.appmenu):last-child { + margin-right: 0; } + .maximized button.titlebutton:not(.appmenu):first-child, .fullscreen button.titlebutton:not(.appmenu):first-child, .tiled button.titlebutton:not(.appmenu):first-child, .tiled-top button.titlebutton:not(.appmenu):first-child, .tiled-right button.titlebutton:not(.appmenu):first-child, .tiled-bottom button.titlebutton:not(.appmenu):first-child, .tiled-left button.titlebutton:not(.appmenu):first-child { + margin-left: 0; } + button.titlebutton:not(.appmenu):backdrop { + background: transparent; } + button.titlebutton:not(.appmenu):backdrop:not(:hover) { + border-color: transparent; } /* Nautilus */ @define-color disk_space_unknown #383c4a; 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 fd7c8bf3..d8bf8aef 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5189,17 +5189,12 @@ headerbar { .titlebar.default-decoration, headerbar.default-decoration { min-height: 0; - padding: 3px; - border-color: #0d0e11; } - .titlebar.default-decoration:backdrop, - headerbar.default-decoration:backdrop { - background-color: #272a34; } + padding: 6px; } .titlebar.default-decoration button.titlebutton, headerbar.default-decoration button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0 4px; - padding: 0; } + min-height: 0; + min-width: 0; + margin: 0; } dialog .titlebar, dialog .titlebar:backdrop, dialog headerbar, dialog headerbar:backdrop { background: #23252e; border: 0; } @@ -5647,12 +5642,29 @@ decoration { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); } button.titlebutton:not(.appmenu) { - margin: 0; } - -button.titlebutton:backdrop { - background: transparent; } - button.titlebutton:backdrop:not(:hover) { - border-color: transparent; } + margin: 0; + margin-left: 6px; + padding: 0; + min-width: 0; + min-height: 0; + border: 0; + -gtk-icon-shadow: none; } + button.titlebutton:not(.appmenu) + button.titlebutton:not(.appmenu) { + margin-left: 0; } + button.titlebutton:not(.appmenu):last-child { + margin-right: 6px; } + button.titlebutton:not(.appmenu):hover { + transition: 0; + background: rgba(255, 255, 255, 0.2); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px #0d0e11; } + .maximized button.titlebutton:not(.appmenu):last-child, .fullscreen button.titlebutton:not(.appmenu):last-child, .tiled button.titlebutton:not(.appmenu):last-child, .tiled-top button.titlebutton:not(.appmenu):last-child, .tiled-right button.titlebutton:not(.appmenu):last-child, .tiled-bottom button.titlebutton:not(.appmenu):last-child, .tiled-left button.titlebutton:not(.appmenu):last-child { + margin-right: 0; } + .maximized button.titlebutton:not(.appmenu):first-child, .fullscreen button.titlebutton:not(.appmenu):first-child, .tiled button.titlebutton:not(.appmenu):first-child, .tiled-top button.titlebutton:not(.appmenu):first-child, .tiled-right button.titlebutton:not(.appmenu):first-child, .tiled-bottom button.titlebutton:not(.appmenu):first-child, .tiled-left button.titlebutton:not(.appmenu):first-child { + margin-left: 0; } + button.titlebutton:not(.appmenu):backdrop { + background: transparent; } + button.titlebutton:not(.appmenu):backdrop:not(:hover) { + border-color: transparent; } /* Nautilus */ @define-color disk_space_unknown #383c4a; diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 9b91aa5d..4b20ace6 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5210,17 +5210,12 @@ headerbar { .titlebar.default-decoration, headerbar.default-decoration { min-height: 0; - padding: 3px; - border-color: #d9d9d9; } - .titlebar.default-decoration:backdrop, - headerbar.default-decoration:backdrop { - background-color: #fafafa; } + padding: 6px; } .titlebar.default-decoration button.titlebutton, headerbar.default-decoration button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0 4px; - padding: 0; } + min-height: 0; + min-width: 0; + margin: 0; } dialog .titlebar, dialog .titlebar:backdrop, dialog headerbar, dialog headerbar:backdrop { background: #ffffff; border: 0; } @@ -5668,12 +5663,29 @@ decoration { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); } button.titlebutton:not(.appmenu) { - margin: 0; } - -button.titlebutton:backdrop { - background: transparent; } - button.titlebutton:backdrop:not(:hover) { - border-color: transparent; } + margin: 0; + margin-left: 6px; + padding: 0; + min-width: 0; + min-height: 0; + border: 0; + -gtk-icon-shadow: none; } + button.titlebutton:not(.appmenu) + button.titlebutton:not(.appmenu) { + margin-left: 0; } + button.titlebutton:not(.appmenu):last-child { + margin-right: 6px; } + button.titlebutton:not(.appmenu):hover { + transition: 0; + background: rgba(255, 255, 255, 0.2); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 0 1px #d9d9d9; } + .maximized button.titlebutton:not(.appmenu):last-child, .fullscreen button.titlebutton:not(.appmenu):last-child, .tiled button.titlebutton:not(.appmenu):last-child, .tiled-top button.titlebutton:not(.appmenu):last-child, .tiled-right button.titlebutton:not(.appmenu):last-child, .tiled-bottom button.titlebutton:not(.appmenu):last-child, .tiled-left button.titlebutton:not(.appmenu):last-child { + margin-right: 0; } + .maximized button.titlebutton:not(.appmenu):first-child, .fullscreen button.titlebutton:not(.appmenu):first-child, .tiled button.titlebutton:not(.appmenu):first-child, .tiled-top button.titlebutton:not(.appmenu):first-child, .tiled-right button.titlebutton:not(.appmenu):first-child, .tiled-bottom button.titlebutton:not(.appmenu):first-child, .tiled-left button.titlebutton:not(.appmenu):first-child { + margin-left: 0; } + button.titlebutton:not(.appmenu):backdrop { + background: transparent; } + button.titlebutton:not(.appmenu):backdrop:not(:hover) { + border-color: transparent; } /* Nautilus */ @define-color disk_space_unknown #383c4a; diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 2a3214bc..e50625d3 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -177,16 +177,12 @@ headerbar { &.default-decoration { min-height: 0; - padding: 3px; - border-color: $borders_color; - - &:backdrop { background-color: $base_color; } + padding: 6px; button.titlebutton { - min-height: 20px; - min-width: 20px; - margin: 0 4px; - padding: 0; + min-height: 0; + min-width: 0; + margin: 0; } } @@ -469,8 +465,36 @@ decoration { } // Window Close button -button.titlebutton { - &:not(.appmenu) { margin: 0; } +button.titlebutton:not(.appmenu) { + margin: 0; + margin-left: 6px; + padding: 0; + min-width: 0; + min-height: 0; + border: 0; + -gtk-icon-shadow: none; + + & + & { margin-left: 0; } + &:last-child { margin-right: 6px; } + + &:hover { + transition: 0; + background: transparentize(white, .8); + box-shadow: 0 1px 1px $shadow_color, inset 0 0 0 1px $borders_color; + } + + @at-root + .maximized &, + .fullscreen &, + .tiled &, + .tiled-top &, + .tiled-right &, + .tiled-bottom &, + .tiled-left & { + &:last-child { margin-right: 0; } + &:first-child { margin-left: 0; } + } + &:backdrop { background: transparent; &:not(:hover) { border-color: transparent; } From 7b93fef9a43fdcfa56fc72b50d979de1c530e848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 30 Dec 2020 13:50:35 +0100 Subject: [PATCH 20/22] GTK3: remove titlebutton transitions on backdrop state --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 4 ++-- share/themes/Kali-Light/gtk-3.0/gtk.css | 4 ++-- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index d8bf8aef..37bd3f35 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5653,10 +5653,10 @@ button.titlebutton:not(.appmenu) { margin-left: 0; } button.titlebutton:not(.appmenu):last-child { margin-right: 6px; } - button.titlebutton:not(.appmenu):hover { + button.titlebutton:not(.appmenu):hover:not(:backdrop) { transition: 0; background: rgba(255, 255, 255, 0.2); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px #0d0e11; } + box-shadow: inset 0 0 0 1px #0d0e11; } .maximized button.titlebutton:not(.appmenu):last-child, .fullscreen button.titlebutton:not(.appmenu):last-child, .tiled button.titlebutton:not(.appmenu):last-child, .tiled-top button.titlebutton:not(.appmenu):last-child, .tiled-right button.titlebutton:not(.appmenu):last-child, .tiled-bottom button.titlebutton:not(.appmenu):last-child, .tiled-left button.titlebutton:not(.appmenu):last-child { margin-right: 0; } .maximized button.titlebutton:not(.appmenu):first-child, .fullscreen button.titlebutton:not(.appmenu):first-child, .tiled button.titlebutton:not(.appmenu):first-child, .tiled-top button.titlebutton:not(.appmenu):first-child, .tiled-right button.titlebutton:not(.appmenu):first-child, .tiled-bottom button.titlebutton:not(.appmenu):first-child, .tiled-left button.titlebutton:not(.appmenu):first-child { 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 d8bf8aef..37bd3f35 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5653,10 +5653,10 @@ button.titlebutton:not(.appmenu) { margin-left: 0; } button.titlebutton:not(.appmenu):last-child { margin-right: 6px; } - button.titlebutton:not(.appmenu):hover { + button.titlebutton:not(.appmenu):hover:not(:backdrop) { transition: 0; background: rgba(255, 255, 255, 0.2); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px #0d0e11; } + box-shadow: inset 0 0 0 1px #0d0e11; } .maximized button.titlebutton:not(.appmenu):last-child, .fullscreen button.titlebutton:not(.appmenu):last-child, .tiled button.titlebutton:not(.appmenu):last-child, .tiled-top button.titlebutton:not(.appmenu):last-child, .tiled-right button.titlebutton:not(.appmenu):last-child, .tiled-bottom button.titlebutton:not(.appmenu):last-child, .tiled-left button.titlebutton:not(.appmenu):last-child { margin-right: 0; } .maximized button.titlebutton:not(.appmenu):first-child, .fullscreen button.titlebutton:not(.appmenu):first-child, .tiled button.titlebutton:not(.appmenu):first-child, .tiled-top button.titlebutton:not(.appmenu):first-child, .tiled-right button.titlebutton:not(.appmenu):first-child, .tiled-bottom button.titlebutton:not(.appmenu):first-child, .tiled-left button.titlebutton:not(.appmenu):first-child { diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 4b20ace6..4613ecdf 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5674,10 +5674,10 @@ button.titlebutton:not(.appmenu) { margin-left: 0; } button.titlebutton:not(.appmenu):last-child { margin-right: 6px; } - button.titlebutton:not(.appmenu):hover { + button.titlebutton:not(.appmenu):hover:not(:backdrop) { transition: 0; background: rgba(255, 255, 255, 0.2); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 0 1px #d9d9d9; } + box-shadow: inset 0 0 0 1px #d9d9d9; } .maximized button.titlebutton:not(.appmenu):last-child, .fullscreen button.titlebutton:not(.appmenu):last-child, .tiled button.titlebutton:not(.appmenu):last-child, .tiled-top button.titlebutton:not(.appmenu):last-child, .tiled-right button.titlebutton:not(.appmenu):last-child, .tiled-bottom button.titlebutton:not(.appmenu):last-child, .tiled-left button.titlebutton:not(.appmenu):last-child { margin-right: 0; } .maximized button.titlebutton:not(.appmenu):first-child, .fullscreen button.titlebutton:not(.appmenu):first-child, .tiled button.titlebutton:not(.appmenu):first-child, .tiled-top button.titlebutton:not(.appmenu):first-child, .tiled-right button.titlebutton:not(.appmenu):first-child, .tiled-bottom button.titlebutton:not(.appmenu):first-child, .tiled-left button.titlebutton:not(.appmenu):first-child { diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index e50625d3..3a641749 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -477,10 +477,10 @@ button.titlebutton:not(.appmenu) { & + & { margin-left: 0; } &:last-child { margin-right: 6px; } - &:hover { + &:hover:not(:backdrop) { transition: 0; background: transparentize(white, .8); - box-shadow: 0 1px 1px $shadow_color, inset 0 0 0 1px $borders_color; + box-shadow: inset 0 0 0 1px $borders_color; } @at-root From 094aca645afb2587fcabbd446b5b7e243c068d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 30 Dec 2020 15:48:24 +0100 Subject: [PATCH 21/22] GTK3: fix flat button styles override the background of hovered notification buttons --- share/themes/Kali-Dark/gtk-3.0/gtk.css | 14 +++++++++----- share/themes/Kali-Light/gtk-3.0/gtk-dark.css | 14 +++++++++----- share/themes/Kali-Light/gtk-3.0/gtk.css | 14 +++++++++----- src/themes/Kali/sass/gtk-sass/_common-tweaks.scss | 10 ++++------ 4 files changed, 31 insertions(+), 21 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/gtk.css b/share/themes/Kali-Dark/gtk-3.0/gtk.css index 37bd3f35..9a8fed1e 100644 --- a/share/themes/Kali-Dark/gtk-3.0/gtk.css +++ b/share/themes/Kali-Dark/gtk-3.0/gtk.css @@ -5064,18 +5064,22 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover, button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop) { + button.flat:hover { transition: none; } - button.flat:hover:not(:backdrop):link { - background: transparent; - box-shadow: none; } + button.flat:link, button.flat:backdrop { + 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; } /********** * Entry * 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 37bd3f35..9a8fed1e 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk-dark.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk-dark.css @@ -5064,18 +5064,22 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover, button:active, button:checked { background: #1b1d24; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop) { + button.flat:hover { transition: none; } - button.flat:hover:not(:backdrop):link { - background: transparent; - box-shadow: none; } + button.flat:link, button.flat:backdrop { + 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; } /********** * Entry * diff --git a/share/themes/Kali-Light/gtk-3.0/gtk.css b/share/themes/Kali-Light/gtk-3.0/gtk.css index 4613ecdf..74d8ce0a 100644 --- a/share/themes/Kali-Light/gtk-3.0/gtk.css +++ b/share/themes/Kali-Light/gtk-3.0/gtk.css @@ -5086,18 +5086,22 @@ window.csd.unified:not(.solid-csd):not(.fullscreen):not(.tiled):not(.tiled-top): headerbar stackswitcher button:checked:active, headerbar stackswitcher button:checked:checked, headerbar button.toggle:active, -headerbar button.toggle:checked, button.flat:hover:not(:backdrop), button:active, button:checked { +headerbar button.toggle:checked, button.flat:hover, button:active, button:checked { background: #f2f2f2; box-shadow: inset 0 3px 5px -4px rgba(0, 0, 0, 0.1), 0 1px rgba(255, 255, 255, 0.05); } button.flat { border-color: transparent; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button.flat:hover:not(:backdrop) { + button.flat:hover { transition: none; } - button.flat:hover:not(:backdrop):link { - background: transparent; - box-shadow: none; } + button.flat:link, button.flat:backdrop { + 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; } /********** * Entry * diff --git a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss index 3a641749..176e642a 100644 --- a/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss +++ b/src/themes/Kali/sass/gtk-sass/_common-tweaks.scss @@ -31,15 +31,13 @@ button { border-color: transparent; transition: $button_transition; - &:hover:not(:backdrop) { + &:hover { @extend %button_active; transition: none; - - &:link { - background: transparent; - box-shadow: none; - } } + + &:link, + &:backdrop { @include button(undecorated); } } } From fa6591d5f103090cadfb9c7c1c96e3cb352f749c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ruiz=20de=20Alegr=C3=ADa?= Date: Wed, 30 Dec 2020 16:18:33 +0100 Subject: [PATCH 22/22] GTK3: update scale slider assets matching the new slider design --- .../assets/kali-headerbar-logo-dark.png | Bin 3378 -> 3314 bytes .../assets/kali-headerbar-logo-dark@2.png | Bin 6284 -> 6206 bytes .../gtk-3.0/assets/kali-headerbar-logo.png | Bin 1992 -> 1927 bytes .../gtk-3.0/assets/kali-headerbar-logo@2.png | Bin 3803 -> 3752 bytes ...horz-scale-has-marks-above-active-dark.png | Bin 705 -> 632 bytes ...rz-scale-has-marks-above-active-dark@2.png | Bin 1364 -> 1291 bytes ...ider-horz-scale-has-marks-above-active.png | Bin 761 -> 688 bytes ...er-horz-scale-has-marks-above-active@2.png | Bin 1526 -> 1453 bytes ...rz-scale-has-marks-above-backdrop-dark.png | Bin 786 -> 712 bytes ...-scale-has-marks-above-backdrop-dark@2.png | Bin 1200 -> 1127 bytes ...-marks-above-backdrop-insensitive-dark.png | Bin 786 -> 712 bytes ...arks-above-backdrop-insensitive-dark@2.png | Bin 1200 -> 1127 bytes ...e-has-marks-above-backdrop-insensitive.png | Bin 739 -> 666 bytes ...has-marks-above-backdrop-insensitive@2.png | Bin 1099 -> 1026 bytes ...er-horz-scale-has-marks-above-backdrop.png | Bin 741 -> 667 bytes ...-horz-scale-has-marks-above-backdrop@2.png | Bin 1120 -> 1047 bytes ...slider-horz-scale-has-marks-above-dark.png | Bin 803 -> 769 bytes ...ider-horz-scale-has-marks-above-dark@2.png | Bin 1606 -> 1521 bytes ...-horz-scale-has-marks-above-hover-dark.png | Bin 811 -> 737 bytes ...orz-scale-has-marks-above-hover-dark@2.png | Bin 1595 -> 1521 bytes ...lider-horz-scale-has-marks-above-hover.png | Bin 711 -> 638 bytes ...der-horz-scale-has-marks-above-hover@2.png | Bin 1339 -> 1266 bytes ...scale-has-marks-above-insensitive-dark.png | Bin 786 -> 712 bytes ...ale-has-marks-above-insensitive-dark@2.png | Bin 1200 -> 1127 bytes ...horz-scale-has-marks-above-insensitive.png | Bin 739 -> 666 bytes ...rz-scale-has-marks-above-insensitive@2.png | Bin 1099 -> 1026 bytes .../slider-horz-scale-has-marks-above.png | Bin 793 -> 720 bytes .../slider-horz-scale-has-marks-above@2.png | Bin 1499 -> 1426 bytes ...horz-scale-has-marks-below-active-dark.png | Bin 710 -> 637 bytes ...rz-scale-has-marks-below-active-dark@2.png | Bin 1346 -> 1273 bytes ...ider-horz-scale-has-marks-below-active.png | Bin 767 -> 694 bytes ...er-horz-scale-has-marks-below-active@2.png | Bin 1517 -> 1444 bytes ...rz-scale-has-marks-below-backdrop-dark.png | Bin 784 -> 711 bytes ...-scale-has-marks-below-backdrop-dark@2.png | Bin 1230 -> 1157 bytes ...-marks-below-backdrop-insensitive-dark.png | Bin 784 -> 711 bytes ...arks-below-backdrop-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...e-has-marks-below-backdrop-insensitive.png | Bin 584 -> 511 bytes ...has-marks-below-backdrop-insensitive@2.png | Bin 1131 -> 1058 bytes ...er-horz-scale-has-marks-below-backdrop.png | Bin 735 -> 662 bytes ...-horz-scale-has-marks-below-backdrop@2.png | Bin 1127 -> 1054 bytes ...slider-horz-scale-has-marks-below-dark.png | Bin 790 -> 718 bytes ...ider-horz-scale-has-marks-below-dark@2.png | Bin 1510 -> 1404 bytes ...-horz-scale-has-marks-below-hover-dark.png | Bin 786 -> 712 bytes ...orz-scale-has-marks-below-hover-dark@2.png | Bin 1552 -> 1479 bytes ...lider-horz-scale-has-marks-below-hover.png | Bin 667 -> 594 bytes ...der-horz-scale-has-marks-below-hover@2.png | Bin 1355 -> 1282 bytes ...scale-has-marks-below-insensitive-dark.png | Bin 784 -> 711 bytes ...ale-has-marks-below-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...horz-scale-has-marks-below-insensitive.png | Bin 735 -> 662 bytes ...rz-scale-has-marks-below-insensitive@2.png | Bin 1127 -> 1054 bytes .../slider-horz-scale-has-marks-below.png | Bin 713 -> 640 bytes .../slider-horz-scale-has-marks-below@2.png | Bin 1410 -> 1337 bytes ...vert-scale-has-marks-above-active-dark.png | Bin 668 -> 595 bytes ...rt-scale-has-marks-above-active-dark@2.png | Bin 1260 -> 1187 bytes ...ider-vert-scale-has-marks-above-active.png | Bin 800 -> 726 bytes ...er-vert-scale-has-marks-above-active@2.png | Bin 1392 -> 1318 bytes ...rt-scale-has-marks-above-backdrop-dark.png | Bin 786 -> 712 bytes ...-scale-has-marks-above-backdrop-dark@2.png | Bin 1230 -> 1157 bytes ...-marks-above-backdrop-insensitive-dark.png | Bin 786 -> 712 bytes ...arks-above-backdrop-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...e-has-marks-above-backdrop-insensitive.png | Bin 773 -> 699 bytes ...has-marks-above-backdrop-insensitive@2.png | Bin 1150 -> 1077 bytes ...er-vert-scale-has-marks-above-backdrop.png | Bin 762 -> 688 bytes ...-vert-scale-has-marks-above-backdrop@2.png | Bin 1150 -> 1077 bytes ...slider-vert-scale-has-marks-above-dark.png | Bin 828 -> 786 bytes ...ider-vert-scale-has-marks-above-dark@2.png | Bin 1651 -> 1662 bytes ...-vert-scale-has-marks-above-hover-dark.png | Bin 844 -> 770 bytes ...ert-scale-has-marks-above-hover-dark@2.png | Bin 1443 -> 1369 bytes ...lider-vert-scale-has-marks-above-hover.png | Bin 767 -> 694 bytes ...der-vert-scale-has-marks-above-hover@2.png | Bin 1471 -> 1398 bytes ...scale-has-marks-above-insensitive-dark.png | Bin 786 -> 712 bytes ...ale-has-marks-above-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...vert-scale-has-marks-above-insensitive.png | Bin 773 -> 699 bytes ...rt-scale-has-marks-above-insensitive@2.png | Bin 1157 -> 1084 bytes .../slider-vert-scale-has-marks-above.png | Bin 821 -> 748 bytes .../slider-vert-scale-has-marks-above@2.png | Bin 1610 -> 1537 bytes ...vert-scale-has-marks-below-active-dark.png | Bin 666 -> 593 bytes ...rt-scale-has-marks-below-active-dark@2.png | Bin 1236 -> 1163 bytes ...ider-vert-scale-has-marks-below-active.png | Bin 806 -> 732 bytes ...er-vert-scale-has-marks-below-active@2.png | Bin 1664 -> 1591 bytes ...rt-scale-has-marks-below-backdrop-dark.png | Bin 822 -> 748 bytes ...-scale-has-marks-below-backdrop-dark@2.png | Bin 1265 -> 1192 bytes ...-marks-below-backdrop-insensitive-dark.png | Bin 822 -> 748 bytes ...arks-below-backdrop-insensitive-dark@2.png | Bin 1265 -> 1192 bytes ...e-has-marks-below-backdrop-insensitive.png | Bin 769 -> 696 bytes ...has-marks-below-backdrop-insensitive@2.png | Bin 1151 -> 1078 bytes ...er-vert-scale-has-marks-below-backdrop.png | Bin 769 -> 696 bytes ...-vert-scale-has-marks-below-backdrop@2.png | Bin 1151 -> 1078 bytes ...slider-vert-scale-has-marks-below-dark.png | Bin 817 -> 800 bytes ...ider-vert-scale-has-marks-below-dark@2.png | Bin 1699 -> 1665 bytes ...-vert-scale-has-marks-below-hover-dark.png | Bin 867 -> 793 bytes ...ert-scale-has-marks-below-hover-dark@2.png | Bin 1433 -> 1359 bytes ...lider-vert-scale-has-marks-below-hover.png | Bin 774 -> 701 bytes ...der-vert-scale-has-marks-below-hover@2.png | Bin 1466 -> 1393 bytes ...scale-has-marks-below-insensitive-dark.png | Bin 822 -> 748 bytes ...ale-has-marks-below-insensitive-dark@2.png | Bin 1265 -> 1192 bytes ...vert-scale-has-marks-below-insensitive.png | Bin 769 -> 696 bytes ...rt-scale-has-marks-below-insensitive@2.png | Bin 1160 -> 1087 bytes .../slider-vert-scale-has-marks-below.png | Bin 848 -> 775 bytes .../slider-vert-scale-has-marks-below@2.png | Bin 1651 -> 1578 bytes .../assets/text-select-end-active-dark.png | Bin 822 -> 748 bytes .../assets/text-select-end-active-dark@2.png | Bin 1433 -> 1360 bytes .../gtk-3.0/assets/text-select-end-active.png | Bin 762 -> 688 bytes .../assets/text-select-end-active@2.png | Bin 1395 -> 1321 bytes .../gtk-3.0/assets/text-select-end-dark.png | Bin 765 -> 730 bytes .../gtk-3.0/assets/text-select-end-dark@2.png | Bin 1492 -> 1509 bytes .../assets/text-select-end-hover-dark.png | Bin 815 -> 741 bytes .../assets/text-select-end-hover-dark@2.png | Bin 1538 -> 1465 bytes .../gtk-3.0/assets/text-select-end-hover.png | Bin 773 -> 699 bytes .../assets/text-select-end-hover@2.png | Bin 1236 -> 1163 bytes .../gtk-3.0/assets/text-select-end.png | Bin 859 -> 786 bytes .../gtk-3.0/assets/text-select-end@2.png | Bin 1456 -> 1383 bytes .../assets/text-select-start-active-dark.png | Bin 783 -> 709 bytes .../text-select-start-active-dark@2.png | Bin 1456 -> 1383 bytes .../assets/text-select-start-active.png | Bin 719 -> 645 bytes .../assets/text-select-start-active@2.png | Bin 1347 -> 1273 bytes .../gtk-3.0/assets/text-select-start-dark.png | Bin 738 -> 688 bytes .../assets/text-select-start-dark@2.png | Bin 1404 -> 1388 bytes .../assets/text-select-start-hover-dark.png | Bin 727 -> 653 bytes .../assets/text-select-start-hover-dark@2.png | Bin 1419 -> 1345 bytes .../assets/text-select-start-hover.png | Bin 702 -> 628 bytes .../assets/text-select-start-hover@2.png | Bin 1267 -> 1194 bytes .../gtk-3.0/assets/text-select-start.png | Bin 786 -> 712 bytes .../gtk-3.0/assets/text-select-start@2.png | Bin 1389 -> 1316 bytes .../assets/kali-headerbar-logo-dark.png | Bin 3378 -> 3314 bytes .../assets/kali-headerbar-logo-dark@2.png | Bin 6284 -> 6206 bytes .../gtk-3.0/assets/kali-headerbar-logo.png | Bin 1992 -> 1927 bytes .../gtk-3.0/assets/kali-headerbar-logo@2.png | Bin 3803 -> 3752 bytes ...horz-scale-has-marks-above-active-dark.png | Bin 705 -> 632 bytes ...rz-scale-has-marks-above-active-dark@2.png | Bin 1364 -> 1291 bytes ...ider-horz-scale-has-marks-above-active.png | Bin 761 -> 688 bytes ...er-horz-scale-has-marks-above-active@2.png | Bin 1526 -> 1453 bytes ...rz-scale-has-marks-above-backdrop-dark.png | Bin 786 -> 712 bytes ...-scale-has-marks-above-backdrop-dark@2.png | Bin 1200 -> 1127 bytes ...-marks-above-backdrop-insensitive-dark.png | Bin 786 -> 712 bytes ...arks-above-backdrop-insensitive-dark@2.png | Bin 1200 -> 1127 bytes ...e-has-marks-above-backdrop-insensitive.png | Bin 739 -> 666 bytes ...has-marks-above-backdrop-insensitive@2.png | Bin 1099 -> 1026 bytes ...er-horz-scale-has-marks-above-backdrop.png | Bin 741 -> 667 bytes ...-horz-scale-has-marks-above-backdrop@2.png | Bin 1120 -> 1047 bytes ...slider-horz-scale-has-marks-above-dark.png | Bin 803 -> 769 bytes ...ider-horz-scale-has-marks-above-dark@2.png | Bin 1606 -> 1521 bytes ...-horz-scale-has-marks-above-hover-dark.png | Bin 811 -> 737 bytes ...orz-scale-has-marks-above-hover-dark@2.png | Bin 1595 -> 1521 bytes ...lider-horz-scale-has-marks-above-hover.png | Bin 711 -> 638 bytes ...der-horz-scale-has-marks-above-hover@2.png | Bin 1339 -> 1266 bytes ...scale-has-marks-above-insensitive-dark.png | Bin 786 -> 712 bytes ...ale-has-marks-above-insensitive-dark@2.png | Bin 1200 -> 1127 bytes ...horz-scale-has-marks-above-insensitive.png | Bin 739 -> 666 bytes ...rz-scale-has-marks-above-insensitive@2.png | Bin 1099 -> 1026 bytes .../slider-horz-scale-has-marks-above.png | Bin 793 -> 720 bytes .../slider-horz-scale-has-marks-above@2.png | Bin 1499 -> 1426 bytes ...horz-scale-has-marks-below-active-dark.png | Bin 710 -> 637 bytes ...rz-scale-has-marks-below-active-dark@2.png | Bin 1346 -> 1273 bytes ...ider-horz-scale-has-marks-below-active.png | Bin 767 -> 694 bytes ...er-horz-scale-has-marks-below-active@2.png | Bin 1517 -> 1444 bytes ...rz-scale-has-marks-below-backdrop-dark.png | Bin 784 -> 711 bytes ...-scale-has-marks-below-backdrop-dark@2.png | Bin 1230 -> 1157 bytes ...-marks-below-backdrop-insensitive-dark.png | Bin 784 -> 711 bytes ...arks-below-backdrop-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...e-has-marks-below-backdrop-insensitive.png | Bin 584 -> 511 bytes ...has-marks-below-backdrop-insensitive@2.png | Bin 1131 -> 1058 bytes ...er-horz-scale-has-marks-below-backdrop.png | Bin 735 -> 662 bytes ...-horz-scale-has-marks-below-backdrop@2.png | Bin 1127 -> 1054 bytes ...slider-horz-scale-has-marks-below-dark.png | Bin 790 -> 718 bytes ...ider-horz-scale-has-marks-below-dark@2.png | Bin 1510 -> 1404 bytes ...-horz-scale-has-marks-below-hover-dark.png | Bin 786 -> 712 bytes ...orz-scale-has-marks-below-hover-dark@2.png | Bin 1552 -> 1479 bytes ...lider-horz-scale-has-marks-below-hover.png | Bin 667 -> 594 bytes ...der-horz-scale-has-marks-below-hover@2.png | Bin 1355 -> 1282 bytes ...scale-has-marks-below-insensitive-dark.png | Bin 784 -> 711 bytes ...ale-has-marks-below-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...horz-scale-has-marks-below-insensitive.png | Bin 735 -> 662 bytes ...rz-scale-has-marks-below-insensitive@2.png | Bin 1127 -> 1054 bytes .../slider-horz-scale-has-marks-below.png | Bin 713 -> 640 bytes .../slider-horz-scale-has-marks-below@2.png | Bin 1410 -> 1337 bytes ...vert-scale-has-marks-above-active-dark.png | Bin 668 -> 595 bytes ...rt-scale-has-marks-above-active-dark@2.png | Bin 1260 -> 1187 bytes ...ider-vert-scale-has-marks-above-active.png | Bin 800 -> 726 bytes ...er-vert-scale-has-marks-above-active@2.png | Bin 1392 -> 1318 bytes ...rt-scale-has-marks-above-backdrop-dark.png | Bin 786 -> 712 bytes ...-scale-has-marks-above-backdrop-dark@2.png | Bin 1230 -> 1157 bytes ...-marks-above-backdrop-insensitive-dark.png | Bin 786 -> 712 bytes ...arks-above-backdrop-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...e-has-marks-above-backdrop-insensitive.png | Bin 773 -> 699 bytes ...has-marks-above-backdrop-insensitive@2.png | Bin 1150 -> 1077 bytes ...er-vert-scale-has-marks-above-backdrop.png | Bin 762 -> 688 bytes ...-vert-scale-has-marks-above-backdrop@2.png | Bin 1150 -> 1077 bytes ...slider-vert-scale-has-marks-above-dark.png | Bin 828 -> 786 bytes ...ider-vert-scale-has-marks-above-dark@2.png | Bin 1651 -> 1662 bytes ...-vert-scale-has-marks-above-hover-dark.png | Bin 844 -> 770 bytes ...ert-scale-has-marks-above-hover-dark@2.png | Bin 1443 -> 1369 bytes ...lider-vert-scale-has-marks-above-hover.png | Bin 767 -> 694 bytes ...der-vert-scale-has-marks-above-hover@2.png | Bin 1471 -> 1398 bytes ...scale-has-marks-above-insensitive-dark.png | Bin 786 -> 712 bytes ...ale-has-marks-above-insensitive-dark@2.png | Bin 1230 -> 1157 bytes ...vert-scale-has-marks-above-insensitive.png | Bin 773 -> 699 bytes ...rt-scale-has-marks-above-insensitive@2.png | Bin 1157 -> 1084 bytes .../slider-vert-scale-has-marks-above.png | Bin 821 -> 748 bytes .../slider-vert-scale-has-marks-above@2.png | Bin 1610 -> 1537 bytes ...vert-scale-has-marks-below-active-dark.png | Bin 666 -> 593 bytes ...rt-scale-has-marks-below-active-dark@2.png | Bin 1236 -> 1163 bytes ...ider-vert-scale-has-marks-below-active.png | Bin 806 -> 732 bytes ...er-vert-scale-has-marks-below-active@2.png | Bin 1664 -> 1591 bytes ...rt-scale-has-marks-below-backdrop-dark.png | Bin 822 -> 748 bytes ...-scale-has-marks-below-backdrop-dark@2.png | Bin 1265 -> 1192 bytes ...-marks-below-backdrop-insensitive-dark.png | Bin 822 -> 748 bytes ...arks-below-backdrop-insensitive-dark@2.png | Bin 1265 -> 1192 bytes ...e-has-marks-below-backdrop-insensitive.png | Bin 769 -> 696 bytes ...has-marks-below-backdrop-insensitive@2.png | Bin 1151 -> 1078 bytes ...er-vert-scale-has-marks-below-backdrop.png | Bin 769 -> 696 bytes ...-vert-scale-has-marks-below-backdrop@2.png | Bin 1151 -> 1078 bytes ...slider-vert-scale-has-marks-below-dark.png | Bin 817 -> 800 bytes ...ider-vert-scale-has-marks-below-dark@2.png | Bin 1699 -> 1665 bytes ...-vert-scale-has-marks-below-hover-dark.png | Bin 867 -> 793 bytes ...ert-scale-has-marks-below-hover-dark@2.png | Bin 1433 -> 1359 bytes ...lider-vert-scale-has-marks-below-hover.png | Bin 774 -> 701 bytes ...der-vert-scale-has-marks-below-hover@2.png | Bin 1466 -> 1393 bytes ...scale-has-marks-below-insensitive-dark.png | Bin 822 -> 748 bytes ...ale-has-marks-below-insensitive-dark@2.png | Bin 1265 -> 1192 bytes ...vert-scale-has-marks-below-insensitive.png | Bin 769 -> 696 bytes ...rt-scale-has-marks-below-insensitive@2.png | Bin 1160 -> 1087 bytes .../slider-vert-scale-has-marks-below.png | Bin 848 -> 775 bytes .../slider-vert-scale-has-marks-below@2.png | Bin 1651 -> 1578 bytes .../assets/text-select-end-active-dark.png | Bin 822 -> 748 bytes .../assets/text-select-end-active-dark@2.png | Bin 1433 -> 1360 bytes .../gtk-3.0/assets/text-select-end-active.png | Bin 762 -> 688 bytes .../assets/text-select-end-active@2.png | Bin 1395 -> 1321 bytes .../gtk-3.0/assets/text-select-end-dark.png | Bin 765 -> 730 bytes .../gtk-3.0/assets/text-select-end-dark@2.png | Bin 1492 -> 1509 bytes .../assets/text-select-end-hover-dark.png | Bin 815 -> 741 bytes .../assets/text-select-end-hover-dark@2.png | Bin 1538 -> 1465 bytes .../gtk-3.0/assets/text-select-end-hover.png | Bin 773 -> 699 bytes .../assets/text-select-end-hover@2.png | Bin 1236 -> 1163 bytes .../gtk-3.0/assets/text-select-end.png | Bin 859 -> 786 bytes .../gtk-3.0/assets/text-select-end@2.png | Bin 1456 -> 1383 bytes .../assets/text-select-start-active-dark.png | Bin 783 -> 709 bytes .../text-select-start-active-dark@2.png | Bin 1456 -> 1383 bytes .../assets/text-select-start-active.png | Bin 719 -> 645 bytes .../assets/text-select-start-active@2.png | Bin 1347 -> 1273 bytes .../gtk-3.0/assets/text-select-start-dark.png | Bin 738 -> 688 bytes .../assets/text-select-start-dark@2.png | Bin 1404 -> 1388 bytes .../assets/text-select-start-hover-dark.png | Bin 727 -> 653 bytes .../assets/text-select-start-hover-dark@2.png | Bin 1419 -> 1345 bytes .../assets/text-select-start-hover.png | Bin 702 -> 628 bytes .../assets/text-select-start-hover@2.png | Bin 1267 -> 1194 bytes .../gtk-3.0/assets/text-select-start.png | Bin 786 -> 712 bytes .../gtk-3.0/assets/text-select-start@2.png | Bin 1389 -> 1316 bytes .../Kali/assets-renderer/gtk3/assets.svg | 108 +++++++++--------- 249 files changed, 52 insertions(+), 56 deletions(-) diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo-dark.png index d8aba0145558dd7fb962f15a0be7f1d93c4534aa..dd4bfa5698013696cc6e3247d303dac8f4107f4e 100644 GIT binary patch delta 2721 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 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo-dark@2.png index 29830d55f767a92c757a1a81bed764ba46d507c0..337db2e2969ea32008c83009ffa3f9622f3c4609 100644 GIT binary patch delta 5604 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 X=0oC*a!E$900000NkvXXu0mjf12fN` diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo.png b/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo.png index 24933b51e19226469e42469aacf24c985fa07d14..777632b14e66d0310d4e4ab21583360c13a8b31e 100644 GIT binary patch delta 1790 zcmVmPN)(C-qCe?-54JrgS#K`>@5h^x_71#D)D&-kX{4UyNUhIt-L8?^c)rSdIu%|AHeKU?q zn9^+91g9M_f1m4F^qyv3zRB%Phk~T{dfeK5f}4y_U;#5Xs~*P)fbt;+a z*I2DCB}qds;#{dg=dTRABM=ZaidUgrnu)BYB zH)@e%e{5=_r95h1wN;kcL9e*s1=<|;wS z(0X|}k-zjV>@CCn*Ln(yHf%XWt^6$z@mGPKJY+#aX^&G3`lj9$WdT z`wX;RJZ`G1y9J%kZGn&E1{yspQwPrMV#tGSVK-*nDOWPaJ@`SjnS(&#WUU^OoQ<|* ze`82)LofXfcCLFqhr1$fyX^^$xgb|^MhU_5AcQh5WOG-~prp>N?FS#`cr6Fyiffsa za*Y|wCocmHTMJP4{lmf)w5~3E6+pzpXBw75)VOX%KLpqJ_g!#L$aTdzS`!1em}B*I zRlYo~!H{9+f1daLBgbT)-2=giXZaQCf6%L5MO}W0HfG`CaHBE|vs&=`aH$C;`urMA zI1Abv*6Z7=hlqJ(s;}<9>TMkO_9CiTT~~9&y6OBzcfV<^*OW zL#RUjLO(4@0ucs(@m!!T*p9oJY1}r8vri>0kUoA!Y4;Zpcq-i8sb1|o9)niIetk%QL;ZSw$bq$$0dt4390Ha_Qsd?3NAk;L4ZT%+agT zX@cW{VD{!yGf-iEL>(^}Zufc=FZuHH?#qtf)#KC1&%6%-@vidd+(pNo-H09$(wp)i zMD}@Xynaw5mnkFHg3a#CF+D==fAl7q4muR@XCDnhA6r@6GW4DuXw3Do+0B`!m`-`P z`T6+!J%F|`odUL7%xI$G9kW}lH)$lb;R6|3e11fwQ@ci`mwjlNQ%!xQ$D$#O8^u=! z*}N(aZc&eRqc`Q%9Df!^FIfBm6+X@0nX zU#fX6-dMPyoN0PO;z8tSe*ZnRYCE+@uYH$u&N~-n|6?6E=GWz_=IB%i)F$Vw0L;2C zIA;#beZEf@p3z_J?V&3jcazM+1&(nKX_<(cFbAmB`FKX>m~a; zFT;_qSQcN7IY}qFg0JQK){AiB3yOC1_K9BQPjqYfz840Adnf)|^v*X{iSPV?{?>ip ge7Cb~f3<}F2Xx2X`MApigX07*qoM6N<$f{uEI(EtDd delta 1853 zcmV-D2g3M=56BOYBsU3gNLh0L01m?d01m?e$8V@)0000PbVXQnQ*UN;cVTj60C#tH zE@^ISb7Ns}WiD@WXPfRk8j&G?f7wYyK~!ko?ONTMtEv)26j20P5a@pYCp{NNMJGRK zvL<`2?{GassIH>AKp6Y~`266F?3Fe!`YEK85+bG;rhgA-t2DTfC>yv968{cT(Q6lQ zftX^PChy!hLO#6y2cXuSS&(9i!Mi=i-5BFvuHOM>sE9Fm2d@Wqe<{|ge;vj+lNzQH zq>HA*UkJ8QFk_9AAK~P{_U|HAYL7G4C$w5UDAjke6{2bCn$JT30KnvbPReT`WvAxR zby75S^`8K1!mQ!@yc(^ZueEuX;OH7rRcitgQ8dlRg*mlKJ3{7AEYdHL9&IOpp#9X9wAG#%c>N7K&Qr9-n3RF(Oga z{4;115w0@Sz2H|Sh<h4VYo4)yXLI&+T8>T z*h3eU01&W5k|wNWf2wIiJTS(pR!>M2hw4pkZ#vZd`Ccypw+U`CK12qt!p*8N7AU8| zwARIuU;ZP^hw8d_5edyD*RFM37i%tnWy0Xjr0E`$4eq=y0H<)sw z1-&JxZk+@I5}iJAaupUKTGjF^j6B41fy6a#}gdiAW z!$bsiF0W#eYm*401F%DT$>pWP%+vuuOMYkBNNN3>gf*)z!1Rh^E(c`*d_*F`5db_A zq1PQaBpPqje+oxLP%P!-0ZiXqGP~N~T&`zm88=8V6TmnM#u@;aHXphd!NUR*V08X= zO!EGY zeBg+18i)33*FKPIABjXE zyZR{KZZ>W5tH(A557DK37zp&}ZoyyYmdQQ2nMRMw^qDgQ49$Z}E|-YV8PyLEh@yjw zqpP(;e{y$8zKpg~DJR$V4;yzq68h(G8DnY|-!=iYDBQ$G*P3x{G)yO!dvrf1QXB10gRe71RR#bX_Y!7#RXLq2`_k)+8LX2VZ<}BRtkoq70HDqR0d@S$M-m5O0WU5BU z{(f@?u>2Za^D>*sw3$^oO?BE4tls=;#v3{8QI`uw;kF<3OTIWz+?HKl)&1AV&%B4I z<)-ptL3e4}y9GTW-@Ru(gqZ0X8!ziGf6Y8);aX(aoVlb&n2p|3rXzM6__Ln|YXtzR zY#Dyb4t>e>aoFe`&IG$EKRv?7-}mqyN-U7W8Z&HByi>UDb$gB^$Un#^_W4niPH~A! zFEZ6Kr=#hj$BLN84fd7MrKJ;=CC)OLp!rcN38T z?thWqFw@(eS-4y-+3g!r?7w1Jw`0z!6CG2__I>Li-0%fO-{{rn3Jgp4eNTw_o%^rR ri{pvQ#hYDCx9)4-bJhxebqoIwRe;_C)6qh400000NkvXXu0mjfqF0e8 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/kali-headerbar-logo@2.png index a7b7142479039d16801f7042cf86d90b5c7dc345..06d8c4d5211c621029e8040e4af25ea3234a7bf4 100644 GIT binary patch delta 3630 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 A6aWAK delta 3679 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 delta 82 zcmeyta*%a`vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE!(yEr+qAXP8FD1G)j8>x+ouUG)k-5Klv diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-active.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-active.png index bf2636996b5fc6ec48641cf42ff8f1b344fd35e3..de9a3e97d68cb9c9b01de64049138960a4da1578 100644 GIT binary patch delta 10 Rcmey#x`B0q^2VHACIA@61QP%N delta 82 zcmdnM`jd5nvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE`{f&EqvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEdsqSHMj6!r diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark.png index dd2574e03f5bd41942210b8de1be6632a6b2c1e6..5cb905425162535cf29881618c8585faa83e18c6 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark@2.png index 9b2a417c546326049aedd8f8b962868b589137c9..ca28a9dfc9eb0ef5283353115882b4a881a764b8 100644 GIT binary patch delta 10 RcmdnM`J7{d^2Qt&762Dc1Hk|Q delta 82 zcmaFPv4L}fvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-B4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png index 9b2a417c546326049aedd8f8b962868b589137c9..ca28a9dfc9eb0ef5283353115882b4a881a764b8 100644 GIT binary patch delta 10 RcmdnM`J7{d^2Qt&762Dc1Hk|Q delta 82 zcmaFPv4L}fvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-Boc5!lIL8@MUQTpt6Hc}fEE13Y#xfx*q diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive@2.png index e7b055762e4bc8970e4b83248673fe0ec863d77b..03fe555c78a17c5557baecdaf8a879ab3be28d9b 100644 GIT binary patch delta 10 RcmX@j(Zn%9d1KCfW&jpo1P}lK delta 82 zcmZqTIL$FZ*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o519eU*cr?K diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop.png index b5ee10df9c5a1455d0106bd0a057fb8a0c5a9825..331dc1983e4c2575e04560865061edba6eb79a6e 100644 GIT binary patch delta 10 RcmaFLI-7NZ^2Xc>CIA;O1J(cl delta 83 zcmbQu`jmBovIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y6F#!N~P#5$7 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop@2.png index 13fed7a0c5fec66b78922618ab1cfc7ff7da5167..560b817dc61c4c9747c828bb73414a2dc96923cc 100644 GIT binary patch delta 10 RcmaFBF`Z+A^2VGm%m5e!1Wy0} delta 82 zcmbQv@qlB3vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEzcB*<*Gw7< diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark.png index 8c4bc4ccb49ff77bcddb4149cdfed17b01cce1f8..f365916e5c491ea086950abd12cefc825f8e7059 100644 GIT binary patch delta 746 zcmVWTovMC3bS93; zE|cB;L0^jQ55KCX8s;Ywk#!MS2cj2ve=c^d-8r7O+Q-Kt?tjOlppl4NJJwnlubz8H zSI@nx6)Hai$$lTne(NIgUD{~BzqGtkQ>_*|-9?w@+pl;(c}uli1IiZxMMN&A&Gv<* z<(2vro2EjCJ?|%P?}a`KR?V8N510DSV^wt8bWd~^bRzP7+H8NY)IYlq_Ds{!u;=~c z%~|v*XsvvcHh)?l_xoq-HAz4To7T_{m9C{b3gTJc^Txr%tV=^QjpW=yqO; z27?DHA^1Ol+XjfOmHW%5Utdg;#sRqhvRmZb`Tf?TvJ5>7e3~{}jasdFC=4K}HK;e5 zb>I^bahFcK+&hyb^+SW87-Qnm_EyuX>iK$l_;%Bz>3=a)^$n|9ww;TQ47w;rwQM^; z(Q0BxN_ExL8e@mv`y)4;c#ko5%NoPYJkPMk92&F6l8?49#@w_agsYDq{+)}nRHh#2 zF$TmL9zXhP6oS8MfwiI-=UKLiiyYQKo)6jFcsMGGd|Z~{YhVqy z|MXnA%u0{C*Ury`M*K!bLIx<01H3^a8K4fFakE7 cK+nzYU&*E~4&J9hxBvhE07*qoM6N<$g6EfR5dZ)H delta 781 zcmV+o1M>WV2BQX$BYyw{b3#c}2nYxWdZ3{KqO)|2FFhhtaVFcvwsoVhS#q)-l*!(06%p)ao4&1 z9|G${bSScz60n5r>cj=T9oC7v0Ipl zao8ZJh#a^=5fD%#$SAY{lmk7XRX{!%(5K^Zfibdg%@{*9&H;UDRQ18u=v{8DWk0Qp z2-X_1(SQ3)RUa7OcGJ{(mS%)@v-#%VLN)vXJl;ObFI45sxXQlrQS75AVzLD@Ka+qlllGkR7;C7?lDC^L zi?$8-Kz{|wZLkD=5`vyA^3j?x)){LtW|Hi^$A3A8F_YzOXvwn?Z#Q2TZ5!@GxBx^q5Bl3p4`F~&}zwxJ$Z6vbB7GzcINBH)a~y5l4a3z-1Bn5#*ez z_NNnl5Bf}1*MWz?-@v=MsV~@b0geD)09|1FUTc61*qlN;Cifq30ZEy4ou>`}0000< LMFvhpu0mjfzcXrP diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark@2.png index 9d5178bd5b0746a36a16d242b8ffe820a2df6274..ca00dd7ab5de63bc53841e0501dfd76857ca7780 100644 GIT binary patch literal 1521 zcmeAS@N?(olHy`uVBq!ia0vp^YCx>d!3-pKyzvNOU|=c;@Ck7Raz_E>A;8GU1P07Z z%n-oB!paIZmJuigl?2MMu(E&vD=RA-I|mmhCl4nV4;MEtH#Z+Q4?i!TATOT~9}w{a zkuaZtFh9RAKadm<5fB6-Q9&UwVG&6YQ6Q2M6_XVemlcH#Bv)c{A@3FkDJXg8YIR7@3$^ z*f}`4xCKQ-#l$5frKDwKhiV3yZsZ`zB4E zHha$81q&B1UA|)Fs@2O$&) zqV|;J+W~f79U@#?i?rQ~!fzZbPtIOGGwSBmlt12Sw{lE(8-MwJ6f#dB6CW@>~9yPSIb z%~xopZ9-vRK+|sJBEjm~sSk7}2pcXjxtWltG234xxiRN`we)Ph(tlGPWGUpHQHbUW z-4cJ)dY90&ijX-!bu<@NeBXIPMqA^mS%uol9J6PdIiVkQ1lJi|>M9pCn42#BFtlA} z@vH=9C#&F{%%`92NZ@iUey}dK@#^86Ekbc8w0q_sHk!gWe@cXOj^obfQ$@)ADxhb#-pqhH$KdPAhVh<-Pb9xenSI>-B5?kiOT30-SUSI-e5?SC@JRV zihmS$?r*KiuZPd>>{xlh#^2f?axu@zfGa*mGSAB@@_Sdt^({X6OerEGpi<4ipo&$* zY|>l5zQ+;a{^jNU-A||c`It>R@JaL4|73X=9i!%_%ALFK+)2>mnykAu!B4Ge!gc|r zmj)vC8C#>)-fzkLbxJ?#{rtu|DoIE5l{BpCVi~90$*4$|eUW?ktB}FcWA6OBrv)sS zH)Eq6Kf@`#@R*%3$Mio133Jve2ra$jCTPfgP3p6w!ZFj&$sHQKUTc0ZZDDKD*HcvV uvyj@tSa-o8%Xf)gmx9`BWz#H^J@xkv%B}n)=4J#cUp!s?T-G@yGywp&M8QA+ delta 1600 zcmV-G2EY073&sqP8Gi-<0056NxMlzV00eVFNmK|32nc)#WQYI&010qNS#tmY8?OKW z8?OOg8j&0T000?uMObuGZ)S9NVRB^vcXxL#X>MzCV_|S*E^l&Yo9;Xs000HUNklR}hAhaJGoE@Fjb9(%BbWq}X|$$u{)xcKUSzz2@z$b~bq z;N**CgoMO}3qo+Ru@TsokIMn^kYKT4*X#^CJ2U;LM`m)!s-b7RJMZZUsnlKFm8q|P zkr5dg4M$@G;NQ(PIHEZZZ41CfAT-y-=Cc#E+kp>((981B?PV?8hs}2<4b=}z=k5zj z=k5!=EN|gH0)Or}=;U$;sJ{RY_Od<;3wLh$^6EEVF&+;AJ_eoyzMcixnFi{CEbB99 zpqz66s44)IV%mX|Lx8mO2H)DQOpwF}&nz<-Yd><7TR!1=hQ?tj=5)c?a>Y2m&gD)+@sG5 z6!>QPxqt0ztP8vioX?H{3Ys++V1BSjuh$1S54;6*w)}u?<6Z`y>2!K~P6-Dw9|9tV zJfEYOjB&2M3pfqD(>^op%Ey6sRV|BmE{TXa7N}`cRlIjx`TA1u-UB=ad;s6OQiy8F z>01Xgfr97_Rps<;3(_#W)VywjJq=t)J6*E8KYtUb*6P}k=X0cK2jIuRucyJD1vqtT z9_Rebpjz`jaLcLN+S_LVEU}n-LeqE>Gzc9qiOSh8|!byU8I^C?jecS*K0oWuxF{sw8P1?5?EU+XZ7$YaD7(ikz zB7Z^%;j9JbR24CbpJAG~kp&UN7=m-B43I>jPF5`-rq+m&7+~zZM`X8}@%T*;Lht}1 z3#^3TbMM26iY6j>AKG=kVt_9J>Z-)r?Zw9IOw~}AMSFY65Rdtc$3s+;n+`lq6A@IC z_Vf;L(a@9`MKQwpx=}66^ioxvt0{_c3xDt#8cm)`>VK@fvf^flmN1ArA)}m_h{^)lD5kuPPAb$c? zS+cgeOkGz3yav1uY_wn#;D5l=bzNn~C`J^u7OP48mHuezG_@M5)c|Ewis5h#;_>Y{ zV%sXTV4f)Be}JdTazc`HMG%Y{thE?bLI?-m=#5d5G{str_nxXODT*;`*O%J~e-Hc< zSck30w-Hgf0(hjDj6#~G((VRo6@RsgQG-YexHF`PV69@41e?Ulp{^>bs-&tWtX{hs zLI?u92)xNuqh%T_02{>4UjpGrlgTKkO~e?*d5<8dDn>P~L2FT?7-KNa=cPBDyb)(p4#Ay9#F&T+>HA&JT1b^S0paLKm zV-OQxr!O%Q_de%wuBNIgoO5{ZSX;ZsaN~L_#2*@{&s!I6s(lkLEC5TuPk1?aqZ0$+f~!n2imjOs5t?fwh6F8TuXb} yN)EbHXTTg$sV-5)Ho|LS*iVR&z23m?%f179keMYd&VYpg0000<(A diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark.png index efd5bd9ae7dc7556b68b2d2b097f7b05b59817cd..cf2929114e286c995666e5fec102813c5e2ef8dc 100644 GIT binary patch delta 10 RcmZ3@_K4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xZU;+SqgcwHv diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark@2.png index b75287407d171857b3abc7b94b0c19daaac653c0..a42f9a1a4e2e5fdab5d52500d6390ac4dc929aa8 100644 GIT binary patch delta 10 RcmdnZ^O1Xk^2XeAtN4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yEUoc5!lIL8@MUQTpt6Hc}fEW0?Tvco~cU diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover@2.png index 4792716691911e0d1e14ace924a9519cb0bea81f..4961d14602cb5efc39f60c0309da81ecdcc6c4ea 100644 GIT binary patch delta 10 RcmdnZ^@($W^2VI=EC3lg1Y`gJ delta 82 zcmeywxtnW(vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEFR}mt>4+L2 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark.png index dd2574e03f5bd41942210b8de1be6632a6b2c1e6..5cb905425162535cf29881618c8585faa83e18c6 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark@2.png index 9b2a417c546326049aedd8f8b962868b589137c9..ca28a9dfc9eb0ef5283353115882b4a881a764b8 100644 GIT binary patch delta 10 RcmdnM`J7{d^2Qt&762Dc1Hk|Q delta 82 zcmaFPv4L}fvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-Boc5!lIL8@MUQTpt6Hc}fEE13Y#xfx*q diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive@2.png index e7b055762e4bc8970e4b83248673fe0ec863d77b..03fe555c78a17c5557baecdaf8a879ab3be28d9b 100644 GIT binary patch delta 10 RcmX@j(Zn%9d1KCfW&jpo1P}lK delta 82 zcmZqTIL$FZ*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o519eU*cr?K diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above.png index 951b428de268425c4d3f8242fc7af4d63fa88751..ad929deb996c9293c28f383dc6daa2b2c4ac0e0b 100644 GIT binary patch delta 10 RcmbQqc7b(*^2VICOaK;81M~m@ delta 82 zcmcb>I+JaJvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE*E0bC%Ags9 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-above@2.png index 0044ee3cee7438771c7c017eee530ba169d176c9..dd536ae6c216bc420fc7419491c9f21756156d85 100644 GIT binary patch delta 10 Rcmcc3J&AjQ^2VHeRsa^#1IPdX delta 82 zcmbQleVcoNvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE3t0iw`Wb`( diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark.png index a90c45c2834638f6f03fc51fcfa543da2b1ee519..5bfea710c985462d5e44fd357eb694d581881615 100644 GIT binary patch delta 10 RcmX@c`j=&b^2VGfCIA@31Ni^| delta 82 zcmey%a*TC?vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEW0(Nt)ES8Y diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark@2.png index 94f7b7837e40daf10684676472b10d5d46b46b4a..ea032d54a761b848c0c3d7017eeec357bcfd030a 100644 GIT binary patch delta 10 RcmX@a^^Zuoc5!lIL8@MUQTpt6Hc}fEZ?FIW?gSb& diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active.png index f235fb154d2400cac8d34a8d3d1a1f5ea10472e3..b0842070aa2ee35ca41404e2af743bff27353390 100644 GIT binary patch delta 10 Rcmey*x{Y;$^2VIWOaK`_1SJ3f delta 82 zcmdnS`k!@zvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEr!oNm;i(z5 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-active@2.png index 70b95a18f57983236d0adb1926140dd3bc412fb1..9d872b9f1017c6f53ecea1da6e6e1cde94875816 100644 GIT binary patch delta 10 RcmaFMy@Y#$^2VG-Rsa|}1O5O2 delta 82 zcmZ3&{g!)zvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEn^^(if*HC1 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark.png index 08cc08951ac97198b037be198d42ae0fb73336cc..2977074ca689d1f75037fb2edfd423e0f6e37e51 100644 GIT binary patch delta 10 RcmbQhcARyB^2VGcOaK*}1K9uo delta 82 zcmX@kI)QD1vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEmoWhV#M~Ka diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark@2.png index 5f2bf54f0027afa79ce9409b2fbca4100b231e87..c28fa3e3ea90e56e910351f613060505f33218a5 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png index 08cc08951ac97198b037be198d42ae0fb73336cc..2977074ca689d1f75037fb2edfd423e0f6e37e51 100644 GIT binary patch delta 10 RcmbQhcARyB^2VGcOaK*}1K9uo delta 82 zcmX@kI)QD1vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEmoWhV#M~Ka diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png index 5f2bf54f0027afa79ce9409b2fbca4100b231e87..c28fa3e3ea90e56e910351f613060505f33218a5 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive.png index 2d783f17ba8581544fe557a421fcd361ad8c4e6e..7283014ddaaca273c22be19afa51a54a0e73e39a 100644 GIT binary patch delta 10 RcmX@X@}GHv%EsK=i~t$o1bqMi delta 81 zcmey*e1c_yiW_sWlV=DA2gmJ){tp-!7&r?&B8wRq_>O=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3WTF#-VOvlZuoc5!lIL8@MUQTpt6Hc}fE8Cd|_Ss5(= diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop.png index 1aa1edca96c1323e4bc983c65a35ed30d965f61a..0fd1ac54083d347676bca4d5e7af73b876bc7ba1 100644 GIT binary patch delta 10 Rcmcc5I*oOL^2VHECIA+{1H}LU delta 82 zcmbQndY^TIvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEOPK)8DH&A& diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop@2.png index da8a3577d2cf946f8ad326eb83d56d745e6895e6..e2a3c970a780cbae8ff509fcbfad57437a0dbe21 100644 GIT binary patch delta 10 RcmaFPF^^+{^2VIs%m5gW1Y`gJ delta 82 zcmbQo@tk9VvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE|1tvr+sGOq diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark.png index 01ca6ed4b0a4efd5e4dd1824efe3de414e74d8a4..958f3b8e5ea3ab16236bf7ee5f772db9c2ea0f6f 100644 GIT binary patch literal 718 zcmeAS@N?(olHy`uVBq!ia0vp^B0wz3!3-qXPX2qyz`$r7;1l8s&dh%Er#d#?HmX!_C9b%_G3Y4I+VT zpaMoPkdafBl?Ngq&H9b{z162(}HBBQmEfaN3V|8s)O&v2W z9dj)m3oTtBveeSG($=-m*0t2uv(VN9l2+RKRyw+tI(n8mK!(1xu7Q=V0g$xOGXx@A zeIp>U(>J!&H?}h{wly%eH!!hloLeIX3_H7$AirP+MkW?kPJRI)VG&U=@xb7a(C~n#Idgs^zJIEHAP zPrdLmtSLaE_2Jsgm8sK~n%r_|jk>u&Y@$heaUyfXB8}#%|KSrFHd-wIetr8q`}#OEvWq#$p69Y<>p00i_>zopr0PAkq1^@s6 delta 778 zcmV+l1NHpQ1(pVo8Gi-<001!;4$}Yt00eVFNmK|32nc)#WQYI&010qNS#tmY4#WTe z4#WYKD-Ig~000?uMObuGZ)S9NVRB^vcXxL#X>MzCV_|S*E^l&Yo9;Xs0007$Nkl?wq-BIv)5~#NHDzdm_?^ zNF&DViP)cjkB;y84|2-64@JzkAruQs%a<2>{XW)CpG~QyiY24x&qhsCk5%*Mz}Cxz z#u)RpG4{@zD}NhuBh+=p{?nZ@=k#69`3oQe*csh7-iJGD>ze~H zmXz~UHuFXWRF#|+V;xJ&mwb%l8%gsOR3FR=KXBIFUA?+F&{@M7sKVmnvM-MgZ{(c+ z03HkAMa-WoYa6T1g;%%DFqt$w{p-oDYTk6f`yqq{=YNV9Yjs|nEASyKHFfo#6_Kx& zFTL^Byy-f`m{3<`a3JsaPyq9#>jP~wTwp3j#PEa0N=N5 zUBx)Y1%Hp8^Kjl##xaw&sevCX&;X;linj*~i{AM_PU)4x`4C8L%W!|E%sGDvJnZ`X zU4-jZjMw|U1@F8+Q|dz?O(qQYcVo_zA64}((00O!s{WF5x>eV4t=}8`uhjcMN{Qic zr)t~!p{jlcJcrrs3nFko=k#`6#f@Hnnlzn|c7L*i;ZAIu`jM)B3hZ~+Pk!1Gc<@4c zqJ8fJDgR6M39vUSIBixs>CL(>r&8yz&XUrEgM;1bWwNulA|m%gD9Wqr*K~d3nuekm zMPwUTJ&$OX6%pAEp*Iep7e(afi^w`wMP&P;$xib6ah=KEx4w9!EnD5*00000NkvXX It^-0~f}|~WMgRZ+ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark@2.png index c40d178653f6d2c5e2b4a4ccd1ccb4b22c5dc805..f2ab4c8efd23b1cfec2de8faffb3cdb226fcbceb 100644 GIT binary patch delta 969 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 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark.png index 792a83202452019d10980ad3706397c51c7d63c1..d9b9f9340c81cb3f740ac67f8be8985f98a39bc9 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark@2.png index db3b8f4c584036756f02235ef9116be6ccdc8aef..81a31595d15c51fd6bb7b27d6ba29efc533ed61b 100644 GIT binary patch delta 10 RcmbQhbDVpE^2VGctN<1N1Lyz% delta 82 zcmX@kJ%ML}vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEm$3o>&pjEW diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover.png index bd06ce0cfa2fd49b6bbd500ccd01a31d2f0b956d..9eabf877126a249d9afac37a48d1747dfd0c1461 100644 GIT binary patch delta 10 RcmbQudWmI%%EnwhCIA&~19<=d delta 81 zcmcb_GMjaRiW_sWlV=DA2gmJ){tp-!7&r?&B8wRq_>O=u<5X=vX`rBFiEBhjaDG}z hd16s2LwR|*US?i)adKios$PCk`s{Z$QX3TwnE=Pw83+IX diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover@2.png index 3448d1d99aefe3820fdd70741f5f7595527f1215..cb5f45d477a27832d4fa824d2e32c46f1468817d 100644 GIT binary patch delta 10 RcmX@j)x(yEr+qAXP8FD1G)j8>x+o4_N@q85z+4 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark.png index 08cc08951ac97198b037be198d42ae0fb73336cc..2977074ca689d1f75037fb2edfd423e0f6e37e51 100644 GIT binary patch delta 10 RcmbQhcARyB^2VGcOaK*}1K9uo delta 82 zcmX@kI)QD1vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEmoWhV#M~Ka diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark@2.png index 5f2bf54f0027afa79ce9409b2fbca4100b231e87..c28fa3e3ea90e56e910351f613060505f33218a5 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive.png index 1aa1edca96c1323e4bc983c65a35ed30d965f61a..0fd1ac54083d347676bca4d5e7af73b876bc7ba1 100644 GIT binary patch delta 10 Rcmcc5I*oOL^2VHECIA+{1H}LU delta 82 zcmbQndY^TIvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEOPK)8DH&A& diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive@2.png index da8a3577d2cf946f8ad326eb83d56d745e6895e6..e2a3c970a780cbae8ff509fcbfad57437a0dbe21 100644 GIT binary patch delta 10 RcmaFPF^^+{^2VIs%m5gW1Y`gJ delta 82 zcmbQo@tk9VvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE|1tvr+sGOq diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below.png index d381c1a5e5480d36d983dec058c12e0735697c91..7a57db0245bc64e0099dd0bda210f8c0635a7abb 100644 GIT binary patch delta 10 RcmX@f+Q2$Nd1Fp2695$l1A_nn delta 82 zcmZo*J;^#j*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o@k{`}5g8Kz diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-horz-scale-has-marks-below@2.png index 6de61898e3d397e8991c12f93e993b2afbdea555..c20a9875e6fe9cad79207030cdc4132bd5e7dba3 100644 GIT binary patch delta 10 RcmZqT-pMsVd1H(yEr+qAXP8FD1G)j8>x+o6088kr5N}C diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark.png index c7da5a4141bd689dd4bce82a5fad8514edaf6db7..f89310d400294565d5b1592655bb5b622a6e4218 100644 GIT binary patch delta 10 RcmbQkdYNT{^2QtkCIA(D1A71f delta 82 zcmcc2GKY17vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEjhFz+>=_FH diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark@2.png index 8d36d8e7ef23910392f536c69cdcb9858e785d19..1995373df2b50a8d246ee896609347969d06d86c 100644 GIT binary patch delta 10 RcmaFExtMc;^2VG7762Fp1NHy_ delta 82 zcmZ3?`G#|XvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEn^*weof)zK diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active.png index e7412b70e3688f9d2a80f586c7d375c50cd6bb50..3bd4dd1b93bd1ac566d575996666bd2a6a44b283 100644 GIT binary patch delta 10 RcmZ3$c8zs{^2XfFOaK4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yUWdZ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-active@2.png index ab6386c93a20f37cd97b61bd1293417cdef49fe8..acc462c76e510300bf3c402fefda569227c6e792 100644 GIT binary patch delta 10 RcmeyswTx?m^2S_dRsa`Y1B3to delta 83 zcmZ3+^?_@GvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6zDvH}2yJr~XZ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark.png index 1cddf7d7255e6e39271535ebc140061ccf507158..df9d144a387e29e617064ba47502309517185f16 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark@2.png index c527c942853c77b30df6436feb17e973a258594f..c525ae2ed8b9af0a07a7050096ee9160dfa35d36 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png index 1cddf7d7255e6e39271535ebc140061ccf507158..df9d144a387e29e617064ba47502309517185f16 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png index c527c942853c77b30df6436feb17e973a258594f..c525ae2ed8b9af0a07a7050096ee9160dfa35d36 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive.png index 56b52db416dec2fea83bef590168da395ae19161..06f3a9e36a6cbba0a72b16edd5af5d64017e0bee 100644 GIT binary patch delta 10 RcmZo=+s!&bd1LMjCIA$<1GfMG delta 83 zcmdnZ+R8RT*@JO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3U#F#!N$;1|^Z diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive@2.png index 376b6515accd611da8047aaad65e08f059df9939..b76e980fc46225ed6008d0338a09ba505f6fadd5 100644 GIT binary patch delta 10 Rcmeyzv6W+j^2Qt?762Gs1F8T3 delta 82 zcmdnW@sDGIvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEMOXmng&Af5 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop.png index 676807ca7b0e8b9b2a5787e81c93ace259dfbd86..977e373cfb96e73e622219954cb67326a655a7d8 100644 GIT binary patch delta 10 Rcmeyxx`B0q^2Xd=CIA@J1Qh@P delta 83 zcmdnM`ipgfvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z{GXVgE?ie!w diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop@2.png index 376b6515accd611da8047aaad65e08f059df9939..b76e980fc46225ed6008d0338a09ba505f6fadd5 100644 GIT binary patch delta 10 Rcmeyzv6W+j^2Qt?762Gs1F8T3 delta 82 zcmdnW@sDGIvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEMOXmng&Af5 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-dark.png index bda453537e5ff8a06633adfc79cfe1380472960d..2ab171963ec5b3a759b2b72dbf7be75ce9257841 100644 GIT binary patch delta 763 zcmVl)%+Old6p`D&M}STnG=Hane{8M2kyL8sg~n2~ zQmvs{0s^Dakbai(Z0GN6(C>AV2s(XUe@91 z#>2iV^6$L&UjQCJj)AL)tR>0phZo;msYDv%y&r?afwqaEN8=KW#U)MC_KJ7KVhCaV zI0F@twMwJp>*c{X{Avw=329>T>gP;=}*LPc#^0 zJb83~(|h;I!4s&6{FqehtIc!30aQzLvo`r?_{YRRMdYWXTK}Ngyfov_&fb?bChldO zvP|IBYW@A?=B1hQy!jymYiaHLGjBy?ZMHV|-fM5X{eRrx0ID$|_&E!x_nth@(Rk`* zJd-AWk9E#n>t*S^jmN+56?yU8OmbIXjNKKW7ee^ix%{1O+PP4xH#AbkIe%ujHHL25 zChPA0V#m+6opYZI2idP1e?BduA5mp34z;ruDr_g;NKvT5G>9 zm8+$>`Ne9I)QB_&0(m~7-%HtTZ)c<7Ugo{~3b+ZRCvXpG26zd$E+XqwR^}bxQ{Vzn tK017wl{x7vk1IYf7l0A42MneS{tM|_QDeqmSik@P002ovPDHLkV1i4Gh9m$0 delta 806 zcmV+>1KIqN2D}E4BYyw{b3#c}2nYxWdOb}^BB#4*?B61ga8*rBy zWexZ{BJxGv^L{wo81{TYW-}ns#Yku>rqh3B^R}I)q#pp^ts9UTW4<)T?v9?{9^`os z)kI2*1t21b2!F;1ZD=?={HuzpU!nRDpa6CS+=<9u-t%vb$F~L|230);r!$`|!c-Mw zEl=Ipa7|U+iAhJKw7)9AiO8P!{hiTs+kMq^p1Dd1Qi8$ohO5hyJF5CS@Y}^Jaw2lq z`~J@6XsfTPYmon|*v*+t{(O*<-ah*WPDH-j(OW&OMsk?j|J|>*uB<<=B6(OE^`iz@yY>-L^(S-wm=E|s2X1iO}$Fw%tHxJDsK&z_-B36S(J80JnhmMPy&ZOh8&5KbiM{_keA{Uo@{fB64c> kKp%d_mw*v7ju#JQOv0(x0WRV3379b%OAlUGRC<4TSfKWgzP+&sF<9T>&kKNtw zhu!Y(dv8@1b=&k9zcORT{-s)Ucipb9PMk@Dccz+6b0+<6vfB>iiYrubj zH-J9@e+JSM;5bwU_#E(8!1WIi?Q*%i%jNPe2#nkPIj{n}1eA`tm^udFPiKqH0Yv!% zBO?1Y9|Ff4tyVY0bu0Z1QX{= z6bFWOLAw86RDb<%*(8anlvh|=z3b96QNSwjS>O-H4gDnWDo~2@1xmA585kG_z*@Tl zyBBajc>hR~nB{wmRLUy=7Wf+Q@?OvChXDQ%-U^eWW0PEb?EU0&5!PDLH0^`kAK1%f zbNwbogyE4f3WXx|dKKr~HJ||e{!yVn0=xzcPfpKLnt!%CgTv=k zqh58^rXK~`!0QhS{S@9M2B$AvWNLa2YweCZ9EW=FVVGlZcvRJ@YtA|MEbupAp*QcS zKK(J^w?Oei=@Ju@rDF%)Ev+@pdX<|CZvw32V}1pWX6dKd0e+0}^Cu4sV67v{7fI8E zR;yVAhJS$Hz~PpD2KY6Qzc6!|@rn1nC%`@V(CGNjn{T)@iBsTl;O0S=evS;dbPB*d zi3mz5wb`r*-ZOqD`^bUz049t;DRAzJ0G|SW3d&r%@+9Z8i{mT-11KdJ zV*thk_#O~UP0uhiG)kJL1c7-VeLO2t2tZ!r)3N7Tt)`3e14`=v9cZ-ZQweeVNkmw? ze}5NiZCe93fTnZq=|;UwzA&JIz@W88>$3x{wXnK;8=$Q5MdiPNnse@%daXjCA3QjH za1o)~=}=x@2Kbi-l5AWDs^Ffj*D6F&Q3XMWh(@%=rk2w>nZo z7ElKF@kYH$lrO5lglIWEi;HNKR;;Zq(SK>T0AA_8ToQam{1$NEgI9LIMFbrL?O#iweq^5G|5fJmv5j@X-|-gLNsD^%a`l zHGTp7Xs?8+2Yv&%2Rz?wRLMnoWlSyu53tU0l1^@nL5UD|x-8v!8*5Vsya+7pmw!+9 zz!!kKz$coGDq$|KOz6P_9pG$wBK9_+K}3_pF>CjiXf`*%=l0(MItLX2DbNKLfm^`5 z2ai+`M&9Bk02J<+{9HsZCPYLL$1$6mbyn`(boh$=^S~Xz9abauz;6LJJ@|&?!id1+ z{NdCZ5e%?(K0Y3m<0XE1^|4~=zf#1Qm zY3G}b4UK|)VGx_9CUf_zFdO#W$rQQ$K09pD2>DK|PcrAEi6F(%Bu zIZGr({31Sq2j{ST{_mWlQGYA5zJ8Bxr%eXPRqCeYjs@UTg9kby_Q7lAJUMWqzQ zfnf%R#wZqtFkx=bhpkO%wVG@-Yc%Q=k|geZ^cwID{K0PkTYEkKD4D(h!x{J}@CAHd zd2(lh)`TX94t!LwHYJI>#BsO(d*TfCyTCv2Zdk*+;+{H=@+88ytY>t#kq_frX&(fx zW*gfLc?aV-Mki4S sY9NP)53<)P8#WugjIzrCZm^%;0RvpOuxlwXNB{r;07*qoM6N<$f?%u&uK)l5 delta 1635 zcmV-p2Aui+4D$?-BYyw{b3#c}2nYxWd<}m6TWRV4k6$r5akxhv5 zAVPpx5D;R)0tpewOhS?YVjQ>I-CbSJdsy76!EQXZ$MNeYUA4OUR@K+PI(6>7=PFKL z?**;__X8gS?gf?s3ygqG;BUYmf!_eX1*$XPI8qMy67YLK_BN%oSm(t#FIpR!{~h=j z@NM9pYLsR;9QGNw@16(#XFDEW?yF!p)3osY{o2^GMh~h5r6{tF7Pd2 z=d7UDfbRp30d%^HEcFL?zcANL4!x~}it%{F?&xg^At>PAz!!mEoi_A`ffs>$oNKYV zb`{@>up+Xr-S);xp|wV-h#{e3INV|~-T?@}*MTPvI)B$3bnpm$oan-pUa!ykm3L#T zLqw>m>PXnV5)nd(eYMuKJ3U&hHc2u8BzXu87FP zz#o9?O@F`R#`LFv7l7`{;4T&yR|p}zBX^IIwT3iJ*nI0Iz<-E2|7|#)(+_eBc>P>} z0YVVGZxKQu&(kij1UwH%JN*#w9MB#N*6A%Sp9^rKm|+w*-+WaUM4exw18 z4lh%kBQVq%KBh*Mrims-#?No(^rOJffQ7;8I)A-h|J;H1N^8wO-@Ji{41uc$IlaLx z;4AcceabrjUX+wllx0p)2!LR3K&4^29@_~;Pb#!fV=vx_prROMis)P0)`mZ z)_*#HRYM%tyZ!!vZg&ZYZ)*q@2Tv<6Mp`Q-lU+gx))2`a$@5gK^-2I^Eyh@?P+b~q ztu?#5LqsGsz$?HQcrcw!ajvD5QWz7#qvIDZV+^C6ZGbI9TvYyrxWsuVO{X~Ll~Ou_ zTT2{4FHXi7%Bo;89s&H>0A=0&3Ty)pr+;aJwKcfj1AalV;;d&n9h0UBz>7_uZopp# zwt!D(X@b23jvHf8S}`6CDa#z-$-RS1Nn8=X47@cDu8qN-Gq_R;=RHN9v$L}W$P9RV zei*N6@V^u55!bRb!CI%Z)@Y;mfS-M=c<%|JVlv(#i=puh@Z*CfObz%ez)j%MG=FQr z&Ho$^0nTs$a?YcTjxGlTH}2SZ8Uk2lch68qirFs z$iED{4#-h!#0LB|;0CafrHQu2qJNY|=@{eMm{^!Qq3cR1taCW;0Y#B#6h+Q(ds9S$ z0=@?P8koWH7PbxeKZtR@k)???#-f!0k$UtrXl+o`p?(a0t>gRQypQvpDp2GZWl^v* z+@z{X1^f_r5*RjDJ#O8j0e_uXrrpT0nNfhXo~kNQ#GKl^sPRu|v{tu1m4DV4(||gR zjeR5tWsy^s1x1lD+}@NL_*vkq#6hoYVD7Y*=Yaw6N#F-S&-(?I`U8xyarJD>E#Si> zB7~}nYtMS_o+RUXs1|@90pB1xJl%WlNeYmz27e#$J>VlsDQS0ls?%A*nEK%e00?2fic(OXQHv6S{P;9LVhf3AN)Ord`Q zen)h-sr*lg;c#f~ISuGWZDKun-lat%xFJ679rkYwRm4zBIOc}YX+k$LK#K@(>+h;= hp>EBLGOybm>A&3h$t1lM_Z|QM002ovPDHLkV1hsw1&06t diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark.png index d830ca56c50623bc4a24511dfede641e2ccba7f1..1f51b5a57f3d5e18496e1d7221acd697dc916837 100644 GIT binary patch delta 10 RcmX@Z*2FeJd1LNO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3T?G64W+ycjD0 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark@2.png index 3eb533ebb05c40ddb652ccc724d4ea13040062b5..2aa8edd90949073fdc6abc1868c9f2c5cc01e1c7 100644 GIT binary patch delta 10 RcmZ3?eUoc~^2S^4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yAumS*p9~bBV diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover.png index aae24a1f364f5d9c7c8ba28c47f63c45b449406a..9d88ece0f6fcfb2916b6409bca03ce88239efe66 100644 GIT binary patch delta 10 Rcmey*x{Y;$^2VIWOaK`_1SJ3f delta 82 zcmdnS`k!@zvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEr!oNm;i(z5 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover@2.png index 90cd9a8ce5b862a5b3eb7d8e4d21817bf28321af..034b5ade88449858c9828021dc1f2134daa79994 100644 GIT binary patch delta 10 Rcmdnb{f%pa^2VHCRsa~A1M>g? delta 82 zcmeyywV!)}vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fELs4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive-dark@2.png index c527c942853c77b30df6436feb17e973a258594f..c525ae2ed8b9af0a07a7050096ee9160dfa35d36 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive.png index 56b52db416dec2fea83bef590168da395ae19161..06f3a9e36a6cbba0a72b16edd5af5d64017e0bee 100644 GIT binary patch delta 10 RcmZo=+s!&bd1LMjCIA$<1GfMG delta 83 zcmdnZ+R8RT*@JO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3U#F#!N$;1|^Z diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive@2.png index 85507ebd08a8d8a908d1ea91576f985494862827..c32b58b7998a2e98ef075ad25e315879458dd85c 100644 GIT binary patch delta 10 RcmZqW+`}(yEr+qAXP8FD1G)j8>x+o(kuYQP#F9G diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above.png index 898046e581021886a707c702eb6a7f536facb489..f0581de82ac2ca1ac22179f82e8801e9f9922fc7 100644 GIT binary patch delta 10 RcmdnW_J(zW^2VH#OaK^w1V{h? delta 82 zcmaFEx|MB$vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEPcs1k+>jaA diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-above@2.png index e0e48a06972dbc8970380d3d56038989eb700e2e..05da62f0543fb7ec2cc160ba1e5d8d13ec109737 100644 GIT binary patch delta 10 RcmX@b)5tSHd1KB!Rsa@`1Q!4R delta 82 zcmZqVImI(U*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o4_E=qwi(j^ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark.png index 0a41ed84c0ab4d45e00168bfee643d7d42ff927b..11591bfa6569dd39e125eac8929766339bc2dcec 100644 GIT binary patch delta 10 RcmbQmdXZ&<^2QuJCIA&w19boZ delta 82 zcmcb}GK+PBvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE4VVDQq!|SO diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark@2.png index da05d56b981a7c8b30813445d731ec07324c13c9..098f671bdd02c7f8301c9fec620a9897183eaa49 100644 GIT binary patch delta 10 Rcmcb@+08jYd1Fon3jh`+1Fir7 delta 82 zcmeC?yuvv_*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oSu6n0JsD~M diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-active.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-active.png index 33c38433cb2e0ec8c9199bbeac8ee7fa551ad34a..1108f4866de4a55f0eabb0cedd5a3cb201390da5 100644 GIT binary patch delta 10 RcmZ3+c87I>^2XeqOaK>61R4MU delta 83 zcmcb^x{PgtvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z(yEr+qAXP8FD1G)j8>x+oVr&4!o*4H4 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark.png index 6f58626642e277cfaf299e67883fa5bb58b6587e..455275346a02bc6226621baa179b52fd806c9d97 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark@2.png index 2ac9384c49c40f5b8633a4e64fa9ec27cb1eab96..903313d945fe4c1d94efea9047707266e0f7d635 100644 GIT binary patch delta 10 Rcmey!xq@?o^2VH2762G&1O)&9 delta 82 zcmZ3%`H^#ivO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE+gSkN(HX%2 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png index 6f58626642e277cfaf299e67883fa5bb58b6587e..455275346a02bc6226621baa179b52fd806c9d97 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png index 2ac9384c49c40f5b8633a4e64fa9ec27cb1eab96..903313d945fe4c1d94efea9047707266e0f7d635 100644 GIT binary patch delta 10 Rcmey!xq@?o^2VH2762G&1O)&9 delta 82 zcmZ3%`H^#ivO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE+gSkN(HX%2 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive.png index 515ad7b42f028aaf85d3cfff88863aed449af730..acac5e95a733eb3bfb9f19eebbb7b158d923edc2 100644 GIT binary patch delta 10 RcmZo<+rc_Pd1KC0CIA$01FQf5 delta 82 zcmdnN+Q>FR*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o)0qIfKp8v$ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive@2.png index f70ffd769b15b669b161c65e999469a11a8e386c..89a61131edd21b30c2f7750b7c32d2ab307ef6dc 100644 GIT binary patch delta 10 Rcmey*v5jMb^2Qut762G=1FZl6 delta 82 zcmdnS@tZuoc5!lIL8@MUQTpt6Hc}fEMOgspDH&-1 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop.png index 515ad7b42f028aaf85d3cfff88863aed449af730..acac5e95a733eb3bfb9f19eebbb7b158d923edc2 100644 GIT binary patch delta 10 RcmZo<+rc_Pd1KC0CIA$01FQf5 delta 82 zcmdnN+Q>FR*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o)0qIfKp8v$ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop@2.png index f70ffd769b15b669b161c65e999469a11a8e386c..89a61131edd21b30c2f7750b7c32d2ab307ef6dc 100644 GIT binary patch delta 10 Rcmey*v5jMb^2Qut762G=1FZl6 delta 82 zcmdnS@tZuoc5!lIL8@MUQTpt6Hc}fEMOgspDH&-1 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark.png index a6817f45eeb3e452fb5f79c3f397ddd4e4aaed1e..aa2abad2f079401e6b78e21d1c2b0ad47726463b 100644 GIT binary patch delta 778 zcmV+l1NHo|2A~FzBYy(tNkl_~*hvD3EO?yfEtj)TYK z$AlwYwbXsgwtvwQ5|)h9$s|Wn%_OkM8}0WRUdIq9{HBzFby7MC4Nq?9RsKvr$y71K_>Kdp}J! z24kj6M#F@?d+kA2Jfw|UWu34 zmSsfZTH~6k-U3Ph;=O+%s>Xo--%2*(Afc!T?r`kzVdj^~j~j^DJlgkGrGcpm*E3d|Qm+_d(LfAb8KE zBe0filC#@sr=!u)ZRgzEz`lC#%UL#gb?xCt!^_^Jlgc}HN9mOO9bg}(KKN#w4u<_+ zm%u91QGc`CtuY2{7~ryu-OinKksPK@9((V*NpkpFqw$cnVF~62+*uG20z0d`JxWK( zZ_c@Q=gDUR0B!K=NBzUCTCHhATS9~Br`hy0#vmey2-aFegvof!Zl^sOr^&C*x$Q;r zd4b$}|4UK0E8Y7CTeeiOHn4~assTX|pc)_|V1GQ$Ir{xBd!0MOY%>0~DBK6Y!D*c? zTA&WRAtIlIrKs9yuEkNcjHOh* zi2iAe8UORk)LX!Zz&cR5i0nKQmyZd;xjYX{fb=*nyw`sN4xe(xcv$O$00000NkvXX It^-0~f|4JUGXMYp delta 795 zcmV+$1LXXm2C)W^BYyw{b3#c}2nYxWdky=C#MUo$Y zT_C;W-G4!r+`A{DUu0Rt(#%9qfup0r zI8^12X7)NTxlG_q=iHau{TDi`h!>%%437unsv7@fX0I)Z2;fEJkFD*Utt9c+B3}?G zXCkl8izslD{5Py;Py1ljDb*))MjFG1|`$b-K z?uf`^Ae&VnFM5}OapP#)$i_y$$n(xiBJw@p6>L38+>NqdtYrJv^F>i~Ulx&v&H!X} zTRtg#no`$+7^47Q1vxc~{~LMRGz^ahWeDY-ne8grZ=ottNp9r7_bKh9VR$sC>blx9 zv$uhR1b@iern$Seww_KaxxQ8BnI9hy%1Ise%Pba89-TE! zU76V@z&F6@m3}TD2c8Aq7m-IIx(^cI{Ff<@fe(QlpjbtARma%uno diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark@2.png index 3e8e16d1b769ef87ada520367cc1c3b5b0a9b3b4..58671d373779ae450d8f89f70355e6cc68601645 100644 GIT binary patch literal 1665 zcmeAS@N?(olHy`uVBq!ia0vp^x2M;1l8s#_XJun&W9MLF=VWK+UoOKQVNpNijvYw zQZhiKEG?rX4J2h%q~+9PWL0EjRb}LWNKF=q z&9!tav~+>UQcKTL8-%R1^?}G*N6%76&q_xhh^%!CtabIRbb+LSjjo}Mo}slKh_ux+ zve5@2TYV!tePdgFV<2g7U}R@t3`F(@CP3t12t=m#hNccirjDkTF1}Nkg@6ItP!i-9 z%)rRR3=Cp+4o)s^9$r3vL17V5F>wh=DQOv5IRzC}O)VW$Gjj_|D?0~ACl^o;%Rwrl^f6DLn!xP9;8 zlNYbvynFxg)8{W=zkUDl>-V3(|6t&J>rHK7CVTAZ;uvDl+k5q=wMe1Nfsgr`Ax~n0 zOI}`4ooiJhD7&llRhVW_;>}nQ`RG8cySwybwOp-A}iR6M(B%W1uv8?9gEzp(b+ zr2alWZQji5pDXvBpTn{BMAC~l4<_UaY)-A6;P0Pex4m*pm|sZrwWn zy!l7UId;}&?fObn*@VU0HQz{b?KVDb7^3yGXsOWqJ+`bH?i|$kCVt3LbMcgLk6EiG z7@v7va^p!J3%k>y;HgetuT_Ho+VCba^As?sh^|W6;%IbLwBy5t!*NY5PJa*n|KWSX z(uLhRuk|@svY7hOn&S_qRSC|SEQUv*lbZBg)(+=Eh9_HtC#!#UUESX$f0Q#_=vs#1owTUq{Eu50B^Gy1Sh&WZegA4nzTd?X zrQLVFy2j?nJ?~_xi|Sc3%`q)hH*?jbs;k>$CLXwc)a&=0Ez*3y?Tt;<4AzECv{X8{ zMXhH-tU=6@E2UEc*Q`{2-^mg@+i=qhdDV0JSFcQ$N|KCrPwQq0j?wwQKdWrtgdctD z(pP^yR@{DK_oEvpbq%x5b2n{a@;bQ5w8VI+mSkA4+dYrIj~5UA*tBC^!;$nS{Gz8f zZRM(5x@Og~d8yK?G(ItXP=A@&k`pt%;YE<3XSiWbGH+>6S52{q(lP0TmK@Ig8Xl*$ z4ryyFU7A|L8Rva4QZVPk1IgbV<%(=;nLI2ffB!gnTljUqj>O+{&Cq5>(e}6Rhf< z^@jNTJ*qNRGdK3W-ng;+k)WQ9`|fjM$Iks{{lB|r*M=D{e}c*~Pgg&ebxsLQ0LVV+ Ad;kCd delta 1694 zcmV;P24VSu4WkW^8Gi-<005hT!TbOK00eVFNmK|32nc)#WQYI&010qNS#tmY8?OKW z8?OOg8j&0T000?uMObuGZ)S9NVRB^vcXxL#X>MzCV_|S*E^l&Yo9;Xs000IcNkl)lRzaqx(M2tE#f7bGq-eJ?Y2X?)D3HY3?~y z_jA7IS5?3IwQzE2;343xz?*^Vz#4D~sDK{uZ{Y91AAsk9mrn6JGtqs(*MLnROgC*z zur>+C+MtvU2Y;@6;E%vZ0Xqv2ImSK9z!!l>04pN2+Y7Yk=1J2w##lsdA0~K5Q5Iy` zn9*>DvMicQ{{kKZeteeD?*zUJtZQvT=hCutI*W+X(}?ji)C2B~xIc7JWb6#Oj7Pi8 zS3dfs9|?LVDWyNT-8 z#e0wU{#39BrL{&x*co)`_qG6bfp-xn>#3k`0?&ykxw>(mSex9HyLVFK`tDATUiW2y zG4LMXH-9IEz6`twtgfx!ORLqUs@zOrZ~I{pwASqI?tzbhcLTpWs;`>*`)Odc(^)!m zV1N(;&N(`rWtLag0Oo<818+O3Z{zgqffuzlYUA4d(yR{Wp~msyZl7-V7Qh5}FYxO- z^=X`b6wsZ;W$^)g2prtj&Z_wksGMV=v(z}=27i7=+#?QuP#^_1MPzB?-q+1+l{l$H z1fw;>;ehV;Er1O8An=QW_bT8Wz*2i|;e06%C^U{QEV8n?4$uOgC9Y_i|ZZ zS$~){6E%*{&vm$RWdkDkkAM$BgkI6w)XC8Qk3tAI?^#@4<(_M=fe8Ks;KK@N#VpKo z;juB*M8GB%S5;V(vbeYcV1Q=~P_LU(&J)I0PSfPZf*;H3}(Wm%&2#m4nMaG)%5@@!16``-rm zDc~ExKmmUPm`uiKZ7(d01tCdNf)A8=K{grF>)vXBp9H>1JTznq_&q?8jR`(r%=G#1 zd?ZRuIUEnf{oWq%6Tr6`V2DfJ^S~s_#-S_=^dYC~GY3wR!+-B1%Ge@ z!h=dHk|f0#gLBon0vAO=J{i;RzuW+S4)|UToKN@D#07dA_;^*7wA%AnV^Lb+-Ps)k zl!^w05Ge9II^5rC68T4g?;i%-KvP5C2*F<$5sa}Io1m3GlO#%MT~9hsQPjY_tw5}v ze3rQL9SS@RT><|9K2{XDNzxV#yniwgd{!qJV+=M)@KeBpec;a!t502G*dD3|Isn7^ z=7;lq64JCS5Rd%E7)0c*z_r#SX^PewS5=f{K{gpN=x;#`(N6 z-caNjNzx+tfFNjNYIubZQ^=zf&wqx*CTL@jAe3cERaQ(ULv{w+5a05rh<|zWk-!I` zLp{I?zysd<2eNz|tW5>L`?%F>t)lzZptRbnVTcm6QYfv_Mq{nTScBFI5vXc+y>|?U z1BSc3#;8Yt=Z*_}5E{S{U)8UOj^CI}MnOcx7>jo<#y4>XYk*b#AWG}~hY-O#k8>qu zS>m0;xr#x5i)=E2SXuf6@PEsb03QZT-8lfiCDx)JDvHeH`2-~jZ4BOfoU3ro?LUZj zIPdY!QB@UHS;p%=);C6@0Xu_kaIO;IufRuuztq6xae?90tEThB>i+$}m#B~QN@-fH zInuO^P0~B=p3YSiMMj=Y$n&iBfg$j9;2Gi$*CmGJOqBrZz&*hGh=28nlBrZjYZI(Z zLz1*YlC**`Hi)Q$DbXge68m61)-tzOw@#$vBpCv9h|U8n0S^Oj0p19_mjC^?M4!0s z|Cv}+e1SMuDq<{W+=Wh(8EIgSSOJ=z3kFyO7KjtMPYi=;6~xNu4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6!4U;+SlrWkMl diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover-dark@2.png index d0596f675b2cb528a1babae67142a1bf0d012151..f243e61ca1d13960307084d61d4c152ccf0ec94d 100644 GIT binary patch delta 10 RcmbQqeV%KA^2S^pRsa>81AqVk delta 83 zcmX@lHIsXSvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z*u>t^jqZi5m diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover.png index c1e53742ed881ed7aecd7155f6d2c8d8a536bfdd..1ae7d90408a63454d82dba6662776718afff67a9 100644 GIT binary patch delta 10 RcmZo;+sisZd1KBjCIA%F1G@kK delta 82 zcmdnX+Qv3P*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+obC>|WbQwzk diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover@2.png index 47ff442706e1e0247efd7ccfaa329f7884fefc54..bd482e55369ec37f2f220024ebd6fa2ee61daba8 100644 GIT binary patch delta 10 RcmdnR{gG>e^2QuLRsa|`1LObz delta 82 zcmey!wTpX#vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE16Tp*g&Cj# diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark.png index 6f58626642e277cfaf299e67883fa5bb58b6587e..455275346a02bc6226621baa179b52fd806c9d97 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark@2.png index 2ac9384c49c40f5b8633a4e64fa9ec27cb1eab96..903313d945fe4c1d94efea9047707266e0f7d635 100644 GIT binary patch delta 10 Rcmey!xq@?o^2VH2762G&1O)&9 delta 82 zcmZ3%`H^#ivO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE+gSkN(HX%2 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive.png index 515ad7b42f028aaf85d3cfff88863aed449af730..acac5e95a733eb3bfb9f19eebbb7b158d923edc2 100644 GIT binary patch delta 10 RcmZo<+rc_Pd1KC0CIA$01FQf5 delta 82 zcmdnN+Q>FR*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o)0qIfKp8v$ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive@2.png index 486143051d144a91d0007d3494d4532a3d869444..ae7b771aa2c55dbf2362a9beed15a85d7b533208 100644 GIT binary patch delta 10 RcmeC++|MyVd1H(yEr+qAXP8FD1G)j8>x+oax4JHJQ)Q5 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below.png index a3c2d5381a1eb77a8f3b360bf0082a2896189c55..e8a1bc440126dafbb0d8be0e412ac87f65fc0229 100644 GIT binary patch delta 10 Rcmcb>*3LFTd1KBKCIA+r1R4MU delta 82 zcmZo?yTCR<*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o&zJzkEg7l+ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/slider-vert-scale-has-marks-below@2.png index 605caa933dce738d63021cac2d78b4e375effeee..873f42b1ffbfe7e6c37280d834214fd2657fa1fe 100644 GIT binary patch delta 10 Rcmey&vx;Ye^2Qu?HUJmH1Csy% delta 82 zcmZ3*^OZuoc5!lIL8@MUQTpt6Hc}fEIoSZ?`x#FF diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active-dark.png index 825f33682cf9a2e53b043a68a157f25361a290cd..972ce779e2e6b84046076ec95fe58fa1c269c652 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active-dark@2.png index e285dc176daed0eba45fdd9bf4a079d6bfdbff3f..5a8924f0130e18478a3bf776cf758b8c9faad202 100644 GIT binary patch delta 10 RcmbQqeSvF&^2QupRsa>F1Azbl delta 82 zcmcb>HIsXSvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE^;rSaVHrID diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active.png index 1b3359d756b510a42d614d3fe0d8404875ddcd87..c9e0d91a592fbc343968394c02368de266bd4fa6 100644 GIT binary patch delta 10 Rcmeyxx`B0q^2Xd=CIA@J1Qh@P delta 83 zcmdnM`ipgfvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z{GXVgE?ie!w diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-active@2.png index 395f593c3fce3b8667a6a6aebc68e172edae452e..5e1dae2d28d5cbbc5a488648db47f29a3de1ae00 100644 GIT binary patch delta 10 Rcmey&wUTRs^2S^?Rsa{91C0Ox delta 83 zcmZ3<^_gpevIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yYumS*yFBjJU diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-dark.png index 6f93a1fe5180df7a2dc57c05f6426c916f498069..a536ce7be4f15aabb0c2b52c1872fb12e22e8198 100644 GIT binary patch delta 707 zcmV;!0zCcw1=<3yzHoPWnG8?XV4*^@-#i!YzBrRCMWh)%o@cYlEofYrrtBI7sCy}eIF z$tltAw`n%E`rU4`B&rW{jMss$f!Yp%Iym#@rGp>2+JQnzeqn(+aA3Kc)CNaB~jO)lZ&2e@I>UzfxxKoauHN zJpE&%A7lJ6rGNN7@T7RBK+I;C@!ZJSNGX#Ima2z2aq>cC{mAjRRP_howZDNvGPCEp z`?t)DY{vT0m;ABgudb@k6{@{H;RB)=ObEqmRkTFt`SF&y-0w>0;Mlqbh!+f+HyLr>{*;45J7vcT&4jaN2OasbQ> zNr2NdGs=_WvVW<|0sh4T{^zrRN7r9`d79jp9b#sHQ`fV>c?R~gd;c-;{gNEp-+kfc zbD;k!W#Js^y5#8SpzOQ!z`cJ5_+$9bfX3+rdO|x z<^DdfW#C~Ydlw{$qS)wxI|k^i}S8ecK9w<714vZl)raOw33O6NUXLngx@Mquvl zNb3;Zk>0sLm(`%i6C_ZGs+S7I^JH1#Z{bl)I-JF8AA$ynt*4mnLd z1Ngy!AAeKo_h;2HSr$2)|I5)Nh*_j6j{yG#coY_=4^P|rZZX=(@}fY3VL$$xLX5;L zV}9Clc(6Bf_jiHE!<0O7_etB-xAMHmW6a3%9HH~IHSER^B3YILaN4#U9z3nUKXLaj z0WOZ+y_C|VuB$g>Ap?O#us{eAvw$R$J6+dN&tFRZI^3)JK7Hz*K3r6~bgSNx^jQe; z>Ug}lndOB-2#crDGoQEAb#>Br^J91a0Ql~iy%|~r+%>bWC3`HXJ_~yy=^Nl}ATCS% Y8v~ei7RFpSL;wH)07*qoM6N<$f?XhH2LJ#7 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-dark@2.png index 7161137f2b6c96cb59d624dbcc1de22866a0557e..ba24606684ae68e9ea5d62bb6bb9b3dd4b05bf06 100644 GIT binary patch delta 1492 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 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover-dark.png index 58a62bc863dfb686a75dee4f38060cd6fca2e8b6..b3d316002903a914a7345c1161fb5cc155242d7a 100644 GIT binary patch delta 10 RcmZ3__LOyk^2XdlOaK@G1T_Ev delta 83 zcmaFLx}I%4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xZVFCbu92ipo diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover-dark@2.png index eec29c30807761337b4d45ee83686e479cec5b7f..c303d3f571df329fbe59fb3466017175a2478984 100644 GIT binary patch delta 10 RcmZqT*~vXYd1KBrRsa;|1HJ$N delta 82 zcmdnV-NZ9N*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oGgtw}MHzYk diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover.png index 575ce01a68046dd7ca8aa14fee74461fea9aac14..88795f972b1f88b6785452aa95fe0bc2cb125f1e 100644 GIT binary patch delta 10 RcmZo=+s!&bd1LMjCIA$<1GfMG delta 83 zcmdnZ+R8RT*@JO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3U#F#!N$;1|^Z diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end-hover@2.png index 2ff57d1c5c568df2070244c99684d114cc5119b9..baf5f31b386efbb775516a63361dc6e7c2a341f7 100644 GIT binary patch delta 10 Rcmcb@+08jYd1Fon3jh`+1Fir7 delta 82 zcmeC?yuvv_*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oSu6n0JsD~M diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end.png index 3d84fd14125941d3320cc2af9dcc180e51753fc8..897a90e23eae2883490831f53ce1babf761da11d 100644 GIT binary patch delta 10 Rcmcc3Hi>P5^2VI^OaK>u1Umo# delta 82 zcmbQlcAIU2vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEKQaLT%sCm$ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-end@2.png index 4a8bcac88936e7fd14c6837e3f136217451d19e3..58b311f81af62b65c2e71037c0e41d715a9b89e4 100644 GIT binary patch delta 10 RcmdnM{hVup^2Qt&Rsa`o1I7RV delta 82 zcmaFPwSjwrvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-BO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3VQFaZE+To>~I diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-active-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-active-dark@2.png index a0fa2e9ef9a5b1b87781e66e69e71a59409a625f..35f55060e8af383d90a8ed6d19cef8622124cec5 100644 GIT binary patch delta 10 RcmdnM{hVup^2Qt&Rsa`o1I7RV delta 82 zcmaFPwSjwrvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-B1C#&& delta 83 zcmZo=JO=u<5X=vX`rBFiEBhjaDG}z hd16s2LwR|*US?i)adKios$PCk`s{Z$QX3Uhm;h-E7qS2V diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-active@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-active@2.png index e9e3d817ab53203bd08ebbf35c21d8256728d91c..1ddf84e6cc24ce4fe51c91939801b4f4fb4fb577 100644 GIT binary patch delta 10 RcmX@i^^4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6zvU;zM?JQ&3Q diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-dark.png index 75f1cd2dded3c38c2decf383cbf49103232196a5..77fe59264899486c20460f59bb521bb391d65586 100644 GIT binary patch delta 665 zcmV;K0%rZ<1+WE>BYy&SNkl^s;a(P6rEx%jm0&@MOE#kjWbPM7hGKI9Dt~z zta=tl-u#gjkVXFWzv%Z)mL2|qAI^>N`L9Q(df}+ol{md#-m}KbN*g| zuOANfU39hVB7&N5(0?$_Ie(?VZ9#rG_+yU{!>LdaA%?)9zfWCPd%z6^NU8qd_uXH{ zhtnw`M$}G@Z)SuTnH)~py?vV@e&x~4Vq-x00000NkvXXu0mjf;3!hQ delta 715 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 diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-hover-dark.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-hover-dark.png index ab2c5c172b8b73a53146f3943e01f3a3d0684cdb..a19dd9dd3b32ff810a112aeb8a4f3f45a7ac6207 100644 GIT binary patch delta 10 Rcmcc4+RHjYd1G!C695(%1FQf5 delta 83 zcmeBWz0Nv8*@JO=u<5X=vX`rBFiEBhjaDG}z hd16s2LwR|*US?i)adKios$PCk`s{Z$QX3U>m;i1(7s>zt diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-hover-dark@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-hover-dark@2.png index 6195d1b35dc27177a14acc942560e8eb1fe53e96..e06a4570e580ee5af7bae1951b3ce17302fdd594 100644 GIT binary patch delta 10 RcmeC?KFBped1I~|D*zOP16BY4 delta 83 zcmX@e)y+LY*@J61K4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xBGXVgHG#CB= diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-hover@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start-hover@2.png index 54d992a909369d0d1163edecea5a150392587cdb..38d42424284f3ed7605c932c8712fbf65962de99 100644 GIT binary patch delta 10 Rcmey&xr%dw^2VHY762HL1PcHF delta 82 zcmZ3*`I&QqvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEJ6QnZ85zd_ diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start.png index b1f06047958ae840c25bc98a53de63002fe26930..08e5418491b1bed830ba33f53b33055f7767865b 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start@2.png b/share/themes/Kali-Dark/gtk-3.0/assets/text-select-start@2.png index 245e4801012192a457e8b3fc53047720b90ecc9f..2919dd96b9b61ddd795eb7c7ca804e68c925bce9 100644 GIT binary patch delta 650 zcmV;50(JfE3Zx2;ynZlZ1TAN1|D=T*NBhXA@*XmDPRI$3OBLWhm`A>FX@lgdSxeH=2wiQN6 zthp&yUtE7HBISAwgV+KH7|j@GVd-(6s8+8U(3avaqxq-Sd{)4&Hi`zZm10b&`J?i5 z19SV9jc7|TP9WA?S=-DP?v~M7m>||%%Di|L-LGpcOrRjtT(DlRCvP&gFpbe%SYIzZ z*EUlqh&9lB6F;*x(+clSTxZa}7t6B0+x%g^jS8A)RPeN=rFK8ige+vnZrW z5OMD13#3zslyW7_3`(R-h8YAA8;e=Qk}R4TOp=I3GeevN5@VPlFoF0)hIBq72?&Rz z3P*IL&u~Dhj?X~OgT4w$5d;Hz();OiMvAjyx6=~#IHt=~oup-UL*bBir9EPb!FjF4 zAr^nbYDMO}tY(rytJ*y{`Dg@oI4U_uJtpX!6pQZD4 zQ-TF}4;S_TIPoP4S0b-KgS}Dy{?cy>@qq_hCQgisGMqb9Ds}izorUeK{EMmtve- kbLUH$Bt<807*qoM6N<$g5(Gp6diP4S&3PHriVj8g|g=Pv9$D+|p z5yiel7^d)zFCL*Gna49FVBvF_2TguL2VI{(zqJetDdb;3U`Ww1hp5 z=rU0!ZkgRcIHX-{kCNbx*8-X2u=QF>1+@W)v%kA?u zz=Ce3+;2puep+!;c-$+@?zrE-#8`m)Ff>cj?HOD6FLYa`T--hAeHelTcqa|ls%5-E zXK0kA0OR%Dw(nG(-R9`s5uiA?`ZiU6%CIv6L@)+$icY+9H2Sd58O4Q_x0!CjqY`G| z`H@i~wv!hA?Dcx@e{xQ7X>R+zD&H&f-=C(--p4i<6j$`xR*6i$Sk3@_x7{7$e%gMeA*4nE(I)07*qoM6N<$ Ef++)3{r~^~ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo-dark.png index d8aba0145558dd7fb962f15a0be7f1d93c4534aa..dd4bfa5698013696cc6e3247d303dac8f4107f4e 100644 GIT binary patch delta 2721 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 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo-dark@2.png index 29830d55f767a92c757a1a81bed764ba46d507c0..337db2e2969ea32008c83009ffa3f9622f3c4609 100644 GIT binary patch delta 5604 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 X=0oC*a!E$900000NkvXXu0mjf12fN` diff --git a/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo.png b/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo.png index 24933b51e19226469e42469aacf24c985fa07d14..777632b14e66d0310d4e4ab21583360c13a8b31e 100644 GIT binary patch delta 1790 zcmVmPN)(C-qCe?-54JrgS#K`>@5h^x_71#D)D&-kX{4UyNUhIt-L8?^c)rSdIu%|AHeKU?q zn9^+91g9M_f1m4F^qyv3zRB%Phk~T{dfeK5f}4y_U;#5Xs~*P)fbt;+a z*I2DCB}qds;#{dg=dTRABM=ZaidUgrnu)BYB zH)@e%e{5=_r95h1wN;kcL9e*s1=<|;wS z(0X|}k-zjV>@CCn*Ln(yHf%XWt^6$z@mGPKJY+#aX^&G3`lj9$WdT z`wX;RJZ`G1y9J%kZGn&E1{yspQwPrMV#tGSVK-*nDOWPaJ@`SjnS(&#WUU^OoQ<|* ze`82)LofXfcCLFqhr1$fyX^^$xgb|^MhU_5AcQh5WOG-~prp>N?FS#`cr6Fyiffsa za*Y|wCocmHTMJP4{lmf)w5~3E6+pzpXBw75)VOX%KLpqJ_g!#L$aTdzS`!1em}B*I zRlYo~!H{9+f1daLBgbT)-2=giXZaQCf6%L5MO}W0HfG`CaHBE|vs&=`aH$C;`urMA zI1Abv*6Z7=hlqJ(s;}<9>TMkO_9CiTT~~9&y6OBzcfV<^*OW zL#RUjLO(4@0ucs(@m!!T*p9oJY1}r8vri>0kUoA!Y4;Zpcq-i8sb1|o9)niIetk%QL;ZSw$bq$$0dt4390Ha_Qsd?3NAk;L4ZT%+agT zX@cW{VD{!yGf-iEL>(^}Zufc=FZuHH?#qtf)#KC1&%6%-@vidd+(pNo-H09$(wp)i zMD}@Xynaw5mnkFHg3a#CF+D==fAl7q4muR@XCDnhA6r@6GW4DuXw3Do+0B`!m`-`P z`T6+!J%F|`odUL7%xI$G9kW}lH)$lb;R6|3e11fwQ@ci`mwjlNQ%!xQ$D$#O8^u=! z*}N(aZc&eRqc`Q%9Df!^FIfBm6+X@0nX zU#fX6-dMPyoN0PO;z8tSe*ZnRYCE+@uYH$u&N~-n|6?6E=GWz_=IB%i)F$Vw0L;2C zIA;#beZEf@p3z_J?V&3jcazM+1&(nKX_<(cFbAmB`FKX>m~a; zFT;_qSQcN7IY}qFg0JQK){AiB3yOC1_K9BQPjqYfz840Adnf)|^v*X{iSPV?{?>ip ge7Cb~f3<}F2Xx2X`MApigX07*qoM6N<$f{uEI(EtDd delta 1853 zcmV-D2g3M=56BOYBsU3gNLh0L01m?d01m?e$8V@)0000PbVXQnQ*UN;cVTj60C#tH zE@^ISb7Ns}WiD@WXPfRk8j&G?f7wYyK~!ko?ONTMtEv)26j20P5a@pYCp{NNMJGRK zvL<`2?{GassIH>AKp6Y~`266F?3Fe!`YEK85+bG;rhgA-t2DTfC>yv968{cT(Q6lQ zftX^PChy!hLO#6y2cXuSS&(9i!Mi=i-5BFvuHOM>sE9Fm2d@Wqe<{|ge;vj+lNzQH zq>HA*UkJ8QFk_9AAK~P{_U|HAYL7G4C$w5UDAjke6{2bCn$JT30KnvbPReT`WvAxR zby75S^`8K1!mQ!@yc(^ZueEuX;OH7rRcitgQ8dlRg*mlKJ3{7AEYdHL9&IOpp#9X9wAG#%c>N7K&Qr9-n3RF(Oga z{4;115w0@Sz2H|Sh<h4VYo4)yXLI&+T8>T z*h3eU01&W5k|wNWf2wIiJTS(pR!>M2hw4pkZ#vZd`Ccypw+U`CK12qt!p*8N7AU8| zwARIuU;ZP^hw8d_5edyD*RFM37i%tnWy0Xjr0E`$4eq=y0H<)sw z1-&JxZk+@I5}iJAaupUKTGjF^j6B41fy6a#}gdiAW z!$bsiF0W#eYm*401F%DT$>pWP%+vuuOMYkBNNN3>gf*)z!1Rh^E(c`*d_*F`5db_A zq1PQaBpPqje+oxLP%P!-0ZiXqGP~N~T&`zm88=8V6TmnM#u@;aHXphd!NUR*V08X= zO!EGY zeBg+18i)33*FKPIABjXE zyZR{KZZ>W5tH(A557DK37zp&}ZoyyYmdQQ2nMRMw^qDgQ49$Z}E|-YV8PyLEh@yjw zqpP(;e{y$8zKpg~DJR$V4;yzq68h(G8DnY|-!=iYDBQ$G*P3x{G)yO!dvrf1QXB10gRe71RR#bX_Y!7#RXLq2`_k)+8LX2VZ<}BRtkoq70HDqR0d@S$M-m5O0WU5BU z{(f@?u>2Za^D>*sw3$^oO?BE4tls=;#v3{8QI`uw;kF<3OTIWz+?HKl)&1AV&%B4I z<)-ptL3e4}y9GTW-@Ru(gqZ0X8!ziGf6Y8);aX(aoVlb&n2p|3rXzM6__Ln|YXtzR zY#Dyb4t>e>aoFe`&IG$EKRv?7-}mqyN-U7W8Z&HByi>UDb$gB^$Un#^_W4niPH~A! zFEZ6Kr=#hj$BLN84fd7MrKJ;=CC)OLp!rcN38T z?thWqFw@(eS-4y-+3g!r?7w1Jw`0z!6CG2__I>Li-0%fO-{{rn3Jgp4eNTw_o%^rR ri{pvQ#hYDCx9)4-bJhxebqoIwRe;_C)6qh400000NkvXXu0mjfqF0e8 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo@2.png b/share/themes/Kali-Light/gtk-3.0/assets/kali-headerbar-logo@2.png index a7b7142479039d16801f7042cf86d90b5c7dc345..06d8c4d5211c621029e8040e4af25ea3234a7bf4 100644 GIT binary patch delta 3630 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 A6aWAK delta 3679 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 delta 82 zcmeyta*%a`vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE!(yEr+qAXP8FD1G)j8>x+ouUG)k-5Klv diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-active.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-active.png index bf2636996b5fc6ec48641cf42ff8f1b344fd35e3..de9a3e97d68cb9c9b01de64049138960a4da1578 100644 GIT binary patch delta 10 Rcmey#x`B0q^2VHACIA@61QP%N delta 82 zcmdnM`jd5nvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE`{f&EqvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEdsqSHMj6!r diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark.png index dd2574e03f5bd41942210b8de1be6632a6b2c1e6..5cb905425162535cf29881618c8585faa83e18c6 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-dark@2.png index 9b2a417c546326049aedd8f8b962868b589137c9..ca28a9dfc9eb0ef5283353115882b4a881a764b8 100644 GIT binary patch delta 10 RcmdnM`J7{d^2Qt&762Dc1Hk|Q delta 82 zcmaFPv4L}fvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-B4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive-dark@2.png index 9b2a417c546326049aedd8f8b962868b589137c9..ca28a9dfc9eb0ef5283353115882b4a881a764b8 100644 GIT binary patch delta 10 RcmdnM`J7{d^2Qt&762Dc1Hk|Q delta 82 zcmaFPv4L}fvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-Boc5!lIL8@MUQTpt6Hc}fEE13Y#xfx*q diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop-insensitive@2.png index e7b055762e4bc8970e4b83248673fe0ec863d77b..03fe555c78a17c5557baecdaf8a879ab3be28d9b 100644 GIT binary patch delta 10 RcmX@j(Zn%9d1KCfW&jpo1P}lK delta 82 zcmZqTIL$FZ*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o519eU*cr?K diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop.png index b5ee10df9c5a1455d0106bd0a057fb8a0c5a9825..331dc1983e4c2575e04560865061edba6eb79a6e 100644 GIT binary patch delta 10 RcmaFLI-7NZ^2Xc>CIA;O1J(cl delta 83 zcmbQu`jmBovIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y6F#!N~P#5$7 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-backdrop@2.png index 13fed7a0c5fec66b78922618ab1cfc7ff7da5167..560b817dc61c4c9747c828bb73414a2dc96923cc 100644 GIT binary patch delta 10 RcmaFBF`Z+A^2VGm%m5e!1Wy0} delta 82 zcmbQv@qlB3vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEzcB*<*Gw7< diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark.png index 8c4bc4ccb49ff77bcddb4149cdfed17b01cce1f8..f365916e5c491ea086950abd12cefc825f8e7059 100644 GIT binary patch delta 746 zcmVWTovMC3bS93; zE|cB;L0^jQ55KCX8s;Ywk#!MS2cj2ve=c^d-8r7O+Q-Kt?tjOlppl4NJJwnlubz8H zSI@nx6)Hai$$lTne(NIgUD{~BzqGtkQ>_*|-9?w@+pl;(c}uli1IiZxMMN&A&Gv<* z<(2vro2EjCJ?|%P?}a`KR?V8N510DSV^wt8bWd~^bRzP7+H8NY)IYlq_Ds{!u;=~c z%~|v*XsvvcHh)?l_xoq-HAz4To7T_{m9C{b3gTJc^Txr%tV=^QjpW=yqO; z27?DHA^1Ol+XjfOmHW%5Utdg;#sRqhvRmZb`Tf?TvJ5>7e3~{}jasdFC=4K}HK;e5 zb>I^bahFcK+&hyb^+SW87-Qnm_EyuX>iK$l_;%Bz>3=a)^$n|9ww;TQ47w;rwQM^; z(Q0BxN_ExL8e@mv`y)4;c#ko5%NoPYJkPMk92&F6l8?49#@w_agsYDq{+)}nRHh#2 zF$TmL9zXhP6oS8MfwiI-=UKLiiyYQKo)6jFcsMGGd|Z~{YhVqy z|MXnA%u0{C*Ury`M*K!bLIx<01H3^a8K4fFakE7 cK+nzYU&*E~4&J9hxBvhE07*qoM6N<$g6EfR5dZ)H delta 781 zcmV+o1M>WV2BQX$BYyw{b3#c}2nYxWdZ3{KqO)|2FFhhtaVFcvwsoVhS#q)-l*!(06%p)ao4&1 z9|G${bSScz60n5r>cj=T9oC7v0Ipl zao8ZJh#a^=5fD%#$SAY{lmk7XRX{!%(5K^Zfibdg%@{*9&H;UDRQ18u=v{8DWk0Qp z2-X_1(SQ3)RUa7OcGJ{(mS%)@v-#%VLN)vXJl;ObFI45sxXQlrQS75AVzLD@Ka+qlllGkR7;C7?lDC^L zi?$8-Kz{|wZLkD=5`vyA^3j?x)){LtW|Hi^$A3A8F_YzOXvwn?Z#Q2TZ5!@GxBx^q5Bl3p4`F~&}zwxJ$Z6vbB7GzcINBH)a~y5l4a3z-1Bn5#*ez z_NNnl5Bf}1*MWz?-@v=MsV~@b0geD)09|1FUTc61*qlN;Cifq30ZEy4ou>`}0000< LMFvhpu0mjfzcXrP diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-dark@2.png index 9d5178bd5b0746a36a16d242b8ffe820a2df6274..ca00dd7ab5de63bc53841e0501dfd76857ca7780 100644 GIT binary patch literal 1521 zcmeAS@N?(olHy`uVBq!ia0vp^YCx>d!3-pKyzvNOU|=c;@Ck7Raz_E>A;8GU1P07Z z%n-oB!paIZmJuigl?2MMu(E&vD=RA-I|mmhCl4nV4;MEtH#Z+Q4?i!TATOT~9}w{a zkuaZtFh9RAKadm<5fB6-Q9&UwVG&6YQ6Q2M6_XVemlcH#Bv)c{A@3FkDJXg8YIR7@3$^ z*f}`4xCKQ-#l$5frKDwKhiV3yZsZ`zB4E zHha$81q&B1UA|)Fs@2O$&) zqV|;J+W~f79U@#?i?rQ~!fzZbPtIOGGwSBmlt12Sw{lE(8-MwJ6f#dB6CW@>~9yPSIb z%~xopZ9-vRK+|sJBEjm~sSk7}2pcXjxtWltG234xxiRN`we)Ph(tlGPWGUpHQHbUW z-4cJ)dY90&ijX-!bu<@NeBXIPMqA^mS%uol9J6PdIiVkQ1lJi|>M9pCn42#BFtlA} z@vH=9C#&F{%%`92NZ@iUey}dK@#^86Ekbc8w0q_sHk!gWe@cXOj^obfQ$@)ADxhb#-pqhH$KdPAhVh<-Pb9xenSI>-B5?kiOT30-SUSI-e5?SC@JRV zihmS$?r*KiuZPd>>{xlh#^2f?axu@zfGa*mGSAB@@_Sdt^({X6OerEGpi<4ipo&$* zY|>l5zQ+;a{^jNU-A||c`It>R@JaL4|73X=9i!%_%ALFK+)2>mnykAu!B4Ge!gc|r zmj)vC8C#>)-fzkLbxJ?#{rtu|DoIE5l{BpCVi~90$*4$|eUW?ktB}FcWA6OBrv)sS zH)Eq6Kf@`#@R*%3$Mio133Jve2ra$jCTPfgP3p6w!ZFj&$sHQKUTc0ZZDDKD*HcvV uvyj@tSa-o8%Xf)gmx9`BWz#H^J@xkv%B}n)=4J#cUp!s?T-G@yGywp&M8QA+ delta 1600 zcmV-G2EY073&sqP8Gi-<0056NxMlzV00eVFNmK|32nc)#WQYI&010qNS#tmY8?OKW z8?OOg8j&0T000?uMObuGZ)S9NVRB^vcXxL#X>MzCV_|S*E^l&Yo9;Xs000HUNklR}hAhaJGoE@Fjb9(%BbWq}X|$$u{)xcKUSzz2@z$b~bq z;N**CgoMO}3qo+Ru@TsokIMn^kYKT4*X#^CJ2U;LM`m)!s-b7RJMZZUsnlKFm8q|P zkr5dg4M$@G;NQ(PIHEZZZ41CfAT-y-=Cc#E+kp>((981B?PV?8hs}2<4b=}z=k5zj z=k5!=EN|gH0)Or}=;U$;sJ{RY_Od<;3wLh$^6EEVF&+;AJ_eoyzMcixnFi{CEbB99 zpqz66s44)IV%mX|Lx8mO2H)DQOpwF}&nz<-Yd><7TR!1=hQ?tj=5)c?a>Y2m&gD)+@sG5 z6!>QPxqt0ztP8vioX?H{3Ys++V1BSjuh$1S54;6*w)}u?<6Z`y>2!K~P6-Dw9|9tV zJfEYOjB&2M3pfqD(>^op%Ey6sRV|BmE{TXa7N}`cRlIjx`TA1u-UB=ad;s6OQiy8F z>01Xgfr97_Rps<;3(_#W)VywjJq=t)J6*E8KYtUb*6P}k=X0cK2jIuRucyJD1vqtT z9_Rebpjz`jaLcLN+S_LVEU}n-LeqE>Gzc9qiOSh8|!byU8I^C?jecS*K0oWuxF{sw8P1?5?EU+XZ7$YaD7(ikz zB7Z^%;j9JbR24CbpJAG~kp&UN7=m-B43I>jPF5`-rq+m&7+~zZM`X8}@%T*;Lht}1 z3#^3TbMM26iY6j>AKG=kVt_9J>Z-)r?Zw9IOw~}AMSFY65Rdtc$3s+;n+`lq6A@IC z_Vf;L(a@9`MKQwpx=}66^ioxvt0{_c3xDt#8cm)`>VK@fvf^flmN1ArA)}m_h{^)lD5kuPPAb$c? zS+cgeOkGz3yav1uY_wn#;D5l=bzNn~C`J^u7OP48mHuezG_@M5)c|Ewis5h#;_>Y{ zV%sXTV4f)Be}JdTazc`HMG%Y{thE?bLI?-m=#5d5G{str_nxXODT*;`*O%J~e-Hc< zSck30w-Hgf0(hjDj6#~G((VRo6@RsgQG-YexHF`PV69@41e?Ulp{^>bs-&tWtX{hs zLI?u92)xNuqh%T_02{>4UjpGrlgTKkO~e?*d5<8dDn>P~L2FT?7-KNa=cPBDyb)(p4#Ay9#F&T+>HA&JT1b^S0paLKm zV-OQxr!O%Q_de%wuBNIgoO5{ZSX;ZsaN~L_#2*@{&s!I6s(lkLEC5TuPk1?aqZ0$+f~!n2imjOs5t?fwh6F8TuXb} yN)EbHXTTg$sV-5)Ho|LS*iVR&z23m?%f179keMYd&VYpg0000<(A diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark.png index efd5bd9ae7dc7556b68b2d2b097f7b05b59817cd..cf2929114e286c995666e5fec102813c5e2ef8dc 100644 GIT binary patch delta 10 RcmZ3@_K4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xZU;+SqgcwHv diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover-dark@2.png index b75287407d171857b3abc7b94b0c19daaac653c0..a42f9a1a4e2e5fdab5d52500d6390ac4dc929aa8 100644 GIT binary patch delta 10 RcmdnZ^O1Xk^2XeAtN4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yEUoc5!lIL8@MUQTpt6Hc}fEW0?Tvco~cU diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-hover@2.png index 4792716691911e0d1e14ace924a9519cb0bea81f..4961d14602cb5efc39f60c0309da81ecdcc6c4ea 100644 GIT binary patch delta 10 RcmdnZ^@($W^2VI=EC3lg1Y`gJ delta 82 zcmeywxtnW(vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEFR}mt>4+L2 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark.png index dd2574e03f5bd41942210b8de1be6632a6b2c1e6..5cb905425162535cf29881618c8585faa83e18c6 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive-dark@2.png index 9b2a417c546326049aedd8f8b962868b589137c9..ca28a9dfc9eb0ef5283353115882b4a881a764b8 100644 GIT binary patch delta 10 RcmdnM`J7{d^2Qt&762Dc1Hk|Q delta 82 zcmaFPv4L}fvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-Boc5!lIL8@MUQTpt6Hc}fEE13Y#xfx*q diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above-insensitive@2.png index e7b055762e4bc8970e4b83248673fe0ec863d77b..03fe555c78a17c5557baecdaf8a879ab3be28d9b 100644 GIT binary patch delta 10 RcmX@j(Zn%9d1KCfW&jpo1P}lK delta 82 zcmZqTIL$FZ*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o519eU*cr?K diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above.png index 951b428de268425c4d3f8242fc7af4d63fa88751..ad929deb996c9293c28f383dc6daa2b2c4ac0e0b 100644 GIT binary patch delta 10 RcmbQqc7b(*^2VICOaK;81M~m@ delta 82 zcmcb>I+JaJvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE*E0bC%Ags9 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-above@2.png index 0044ee3cee7438771c7c017eee530ba169d176c9..dd536ae6c216bc420fc7419491c9f21756156d85 100644 GIT binary patch delta 10 Rcmcc3J&AjQ^2VHeRsa^#1IPdX delta 82 zcmbQleVcoNvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE3t0iw`Wb`( diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark.png index a90c45c2834638f6f03fc51fcfa543da2b1ee519..5bfea710c985462d5e44fd357eb694d581881615 100644 GIT binary patch delta 10 RcmX@c`j=&b^2VGfCIA@31Ni^| delta 82 zcmey%a*TC?vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEW0(Nt)ES8Y diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active-dark@2.png index 94f7b7837e40daf10684676472b10d5d46b46b4a..ea032d54a761b848c0c3d7017eeec357bcfd030a 100644 GIT binary patch delta 10 RcmX@a^^Zuoc5!lIL8@MUQTpt6Hc}fEZ?FIW?gSb& diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active.png index f235fb154d2400cac8d34a8d3d1a1f5ea10472e3..b0842070aa2ee35ca41404e2af743bff27353390 100644 GIT binary patch delta 10 Rcmey*x{Y;$^2VIWOaK`_1SJ3f delta 82 zcmdnS`k!@zvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEr!oNm;i(z5 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-active@2.png index 70b95a18f57983236d0adb1926140dd3bc412fb1..9d872b9f1017c6f53ecea1da6e6e1cde94875816 100644 GIT binary patch delta 10 RcmaFMy@Y#$^2VG-Rsa|}1O5O2 delta 82 zcmZ3&{g!)zvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEn^^(if*HC1 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark.png index 08cc08951ac97198b037be198d42ae0fb73336cc..2977074ca689d1f75037fb2edfd423e0f6e37e51 100644 GIT binary patch delta 10 RcmbQhcARyB^2VGcOaK*}1K9uo delta 82 zcmX@kI)QD1vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEmoWhV#M~Ka diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-dark@2.png index 5f2bf54f0027afa79ce9409b2fbca4100b231e87..c28fa3e3ea90e56e910351f613060505f33218a5 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark.png index 08cc08951ac97198b037be198d42ae0fb73336cc..2977074ca689d1f75037fb2edfd423e0f6e37e51 100644 GIT binary patch delta 10 RcmbQhcARyB^2VGcOaK*}1K9uo delta 82 zcmX@kI)QD1vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEmoWhV#M~Ka diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive-dark@2.png index 5f2bf54f0027afa79ce9409b2fbca4100b231e87..c28fa3e3ea90e56e910351f613060505f33218a5 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop-insensitive.png index 2d783f17ba8581544fe557a421fcd361ad8c4e6e..7283014ddaaca273c22be19afa51a54a0e73e39a 100644 GIT binary patch delta 10 RcmX@X@}GHv%EsK=i~t$o1bqMi delta 81 zcmey*e1c_yiW_sWlV=DA2gmJ){tp-!7&r?&B8wRq_>O=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3WTF#-VOvlZuoc5!lIL8@MUQTpt6Hc}fE8Cd|_Ss5(= diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop.png index 1aa1edca96c1323e4bc983c65a35ed30d965f61a..0fd1ac54083d347676bca4d5e7af73b876bc7ba1 100644 GIT binary patch delta 10 Rcmcc5I*oOL^2VHECIA+{1H}LU delta 82 zcmbQndY^TIvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEOPK)8DH&A& diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-backdrop@2.png index da8a3577d2cf946f8ad326eb83d56d745e6895e6..e2a3c970a780cbae8ff509fcbfad57437a0dbe21 100644 GIT binary patch delta 10 RcmaFPF^^+{^2VIs%m5gW1Y`gJ delta 82 zcmbQo@tk9VvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE|1tvr+sGOq diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark.png index 01ca6ed4b0a4efd5e4dd1824efe3de414e74d8a4..958f3b8e5ea3ab16236bf7ee5f772db9c2ea0f6f 100644 GIT binary patch literal 718 zcmeAS@N?(olHy`uVBq!ia0vp^B0wz3!3-qXPX2qyz`$r7;1l8s&dh%Er#d#?HmX!_C9b%_G3Y4I+VT zpaMoPkdafBl?Ngq&H9b{z162(}HBBQmEfaN3V|8s)O&v2W z9dj)m3oTtBveeSG($=-m*0t2uv(VN9l2+RKRyw+tI(n8mK!(1xu7Q=V0g$xOGXx@A zeIp>U(>J!&H?}h{wly%eH!!hloLeIX3_H7$AirP+MkW?kPJRI)VG&U=@xb7a(C~n#Idgs^zJIEHAP zPrdLmtSLaE_2Jsgm8sK~n%r_|jk>u&Y@$heaUyfXB8}#%|KSrFHd-wIetr8q`}#OEvWq#$p69Y<>p00i_>zopr0PAkq1^@s6 delta 778 zcmV+l1NHpQ1(pVo8Gi-<001!;4$}Yt00eVFNmK|32nc)#WQYI&010qNS#tmY4#WTe z4#WYKD-Ig~000?uMObuGZ)S9NVRB^vcXxL#X>MzCV_|S*E^l&Yo9;Xs0007$Nkl?wq-BIv)5~#NHDzdm_?^ zNF&DViP)cjkB;y84|2-64@JzkAruQs%a<2>{XW)CpG~QyiY24x&qhsCk5%*Mz}Cxz z#u)RpG4{@zD}NhuBh+=p{?nZ@=k#69`3oQe*csh7-iJGD>ze~H zmXz~UHuFXWRF#|+V;xJ&mwb%l8%gsOR3FR=KXBIFUA?+F&{@M7sKVmnvM-MgZ{(c+ z03HkAMa-WoYa6T1g;%%DFqt$w{p-oDYTk6f`yqq{=YNV9Yjs|nEASyKHFfo#6_Kx& zFTL^Byy-f`m{3<`a3JsaPyq9#>jP~wTwp3j#PEa0N=N5 zUBx)Y1%Hp8^Kjl##xaw&sevCX&;X;linj*~i{AM_PU)4x`4C8L%W!|E%sGDvJnZ`X zU4-jZjMw|U1@F8+Q|dz?O(qQYcVo_zA64}((00O!s{WF5x>eV4t=}8`uhjcMN{Qic zr)t~!p{jlcJcrrs3nFko=k#`6#f@Hnnlzn|c7L*i;ZAIu`jM)B3hZ~+Pk!1Gc<@4c zqJ8fJDgR6M39vUSIBixs>CL(>r&8yz&XUrEgM;1bWwNulA|m%gD9Wqr*K~d3nuekm zMPwUTJ&$OX6%pAEp*Iep7e(afi^w`wMP&P;$xib6ah=KEx4w9!EnD5*00000NkvXX It^-0~f}|~WMgRZ+ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-dark@2.png index c40d178653f6d2c5e2b4a4ccd1ccb4b22c5dc805..f2ab4c8efd23b1cfec2de8faffb3cdb226fcbceb 100644 GIT binary patch delta 969 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 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark.png index 792a83202452019d10980ad3706397c51c7d63c1..d9b9f9340c81cb3f740ac67f8be8985f98a39bc9 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover-dark@2.png index db3b8f4c584036756f02235ef9116be6ccdc8aef..81a31595d15c51fd6bb7b27d6ba29efc533ed61b 100644 GIT binary patch delta 10 RcmbQhbDVpE^2VGctN<1N1Lyz% delta 82 zcmX@kJ%ML}vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEm$3o>&pjEW diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover.png index bd06ce0cfa2fd49b6bbd500ccd01a31d2f0b956d..9eabf877126a249d9afac37a48d1747dfd0c1461 100644 GIT binary patch delta 10 RcmbQudWmI%%EnwhCIA&~19<=d delta 81 zcmcb_GMjaRiW_sWlV=DA2gmJ){tp-!7&r?&B8wRq_>O=u<5X=vX`rBFiEBhjaDG}z hd16s2LwR|*US?i)adKios$PCk`s{Z$QX3TwnE=Pw83+IX diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-hover@2.png index 3448d1d99aefe3820fdd70741f5f7595527f1215..cb5f45d477a27832d4fa824d2e32c46f1468817d 100644 GIT binary patch delta 10 RcmX@j)x(yEr+qAXP8FD1G)j8>x+o4_N@q85z+4 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark.png index 08cc08951ac97198b037be198d42ae0fb73336cc..2977074ca689d1f75037fb2edfd423e0f6e37e51 100644 GIT binary patch delta 10 RcmbQhcARyB^2VGcOaK*}1K9uo delta 82 zcmX@kI)QD1vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEmoWhV#M~Ka diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive-dark@2.png index 5f2bf54f0027afa79ce9409b2fbca4100b231e87..c28fa3e3ea90e56e910351f613060505f33218a5 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive.png index 1aa1edca96c1323e4bc983c65a35ed30d965f61a..0fd1ac54083d347676bca4d5e7af73b876bc7ba1 100644 GIT binary patch delta 10 Rcmcc5I*oOL^2VHECIA+{1H}LU delta 82 zcmbQndY^TIvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEOPK)8DH&A& diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below-insensitive@2.png index da8a3577d2cf946f8ad326eb83d56d745e6895e6..e2a3c970a780cbae8ff509fcbfad57437a0dbe21 100644 GIT binary patch delta 10 RcmaFPF^^+{^2VIs%m5gW1Y`gJ delta 82 zcmbQo@tk9VvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE|1tvr+sGOq diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below.png index d381c1a5e5480d36d983dec058c12e0735697c91..7a57db0245bc64e0099dd0bda210f8c0635a7abb 100644 GIT binary patch delta 10 RcmX@f+Q2$Nd1Fp2695$l1A_nn delta 82 zcmZo*J;^#j*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o@k{`}5g8Kz diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-horz-scale-has-marks-below@2.png index 6de61898e3d397e8991c12f93e993b2afbdea555..c20a9875e6fe9cad79207030cdc4132bd5e7dba3 100644 GIT binary patch delta 10 RcmZqT-pMsVd1H(yEr+qAXP8FD1G)j8>x+o6088kr5N}C diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark.png index c7da5a4141bd689dd4bce82a5fad8514edaf6db7..f89310d400294565d5b1592655bb5b622a6e4218 100644 GIT binary patch delta 10 RcmbQkdYNT{^2QtkCIA(D1A71f delta 82 zcmcc2GKY17vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEjhFz+>=_FH diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active-dark@2.png index 8d36d8e7ef23910392f536c69cdcb9858e785d19..1995373df2b50a8d246ee896609347969d06d86c 100644 GIT binary patch delta 10 RcmaFExtMc;^2VG7762Fp1NHy_ delta 82 zcmZ3?`G#|XvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEn^*weof)zK diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active.png index e7412b70e3688f9d2a80f586c7d375c50cd6bb50..3bd4dd1b93bd1ac566d575996666bd2a6a44b283 100644 GIT binary patch delta 10 RcmZ3$c8zs{^2XfFOaK4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yUWdZ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-active@2.png index ab6386c93a20f37cd97b61bd1293417cdef49fe8..acc462c76e510300bf3c402fefda569227c6e792 100644 GIT binary patch delta 10 RcmeyswTx?m^2S_dRsa`Y1B3to delta 83 zcmZ3+^?_@GvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6zDvH}2yJr~XZ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark.png index 1cddf7d7255e6e39271535ebc140061ccf507158..df9d144a387e29e617064ba47502309517185f16 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-dark@2.png index c527c942853c77b30df6436feb17e973a258594f..c525ae2ed8b9af0a07a7050096ee9160dfa35d36 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark.png index 1cddf7d7255e6e39271535ebc140061ccf507158..df9d144a387e29e617064ba47502309517185f16 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive-dark@2.png index c527c942853c77b30df6436feb17e973a258594f..c525ae2ed8b9af0a07a7050096ee9160dfa35d36 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive.png index 56b52db416dec2fea83bef590168da395ae19161..06f3a9e36a6cbba0a72b16edd5af5d64017e0bee 100644 GIT binary patch delta 10 RcmZo=+s!&bd1LMjCIA$<1GfMG delta 83 zcmdnZ+R8RT*@JO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3U#F#!N$;1|^Z diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop-insensitive@2.png index 376b6515accd611da8047aaad65e08f059df9939..b76e980fc46225ed6008d0338a09ba505f6fadd5 100644 GIT binary patch delta 10 Rcmeyzv6W+j^2Qt?762Gs1F8T3 delta 82 zcmdnW@sDGIvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEMOXmng&Af5 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop.png index 676807ca7b0e8b9b2a5787e81c93ace259dfbd86..977e373cfb96e73e622219954cb67326a655a7d8 100644 GIT binary patch delta 10 Rcmeyxx`B0q^2Xd=CIA@J1Qh@P delta 83 zcmdnM`ipgfvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z{GXVgE?ie!w diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-backdrop@2.png index 376b6515accd611da8047aaad65e08f059df9939..b76e980fc46225ed6008d0338a09ba505f6fadd5 100644 GIT binary patch delta 10 Rcmeyzv6W+j^2Qt?762Gs1F8T3 delta 82 zcmdnW@sDGIvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEMOXmng&Af5 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-dark.png index bda453537e5ff8a06633adfc79cfe1380472960d..2ab171963ec5b3a759b2b72dbf7be75ce9257841 100644 GIT binary patch delta 763 zcmVl)%+Old6p`D&M}STnG=Hane{8M2kyL8sg~n2~ zQmvs{0s^Dakbai(Z0GN6(C>AV2s(XUe@91 z#>2iV^6$L&UjQCJj)AL)tR>0phZo;msYDv%y&r?afwqaEN8=KW#U)MC_KJ7KVhCaV zI0F@twMwJp>*c{X{Avw=329>T>gP;=}*LPc#^0 zJb83~(|h;I!4s&6{FqehtIc!30aQzLvo`r?_{YRRMdYWXTK}Ngyfov_&fb?bChldO zvP|IBYW@A?=B1hQy!jymYiaHLGjBy?ZMHV|-fM5X{eRrx0ID$|_&E!x_nth@(Rk`* zJd-AWk9E#n>t*S^jmN+56?yU8OmbIXjNKKW7ee^ix%{1O+PP4xH#AbkIe%ujHHL25 zChPA0V#m+6opYZI2idP1e?BduA5mp34z;ruDr_g;NKvT5G>9 zm8+$>`Ne9I)QB_&0(m~7-%HtTZ)c<7Ugo{~3b+ZRCvXpG26zd$E+XqwR^}bxQ{Vzn tK017wl{x7vk1IYf7l0A42MneS{tM|_QDeqmSik@P002ovPDHLkV1i4Gh9m$0 delta 806 zcmV+>1KIqN2D}E4BYyw{b3#c}2nYxWdOb}^BB#4*?B61ga8*rBy zWexZ{BJxGv^L{wo81{TYW-}ns#Yku>rqh3B^R}I)q#pp^ts9UTW4<)T?v9?{9^`os z)kI2*1t21b2!F;1ZD=?={HuzpU!nRDpa6CS+=<9u-t%vb$F~L|230);r!$`|!c-Mw zEl=Ipa7|U+iAhJKw7)9AiO8P!{hiTs+kMq^p1Dd1Qi8$ohO5hyJF5CS@Y}^Jaw2lq z`~J@6XsfTPYmon|*v*+t{(O*<-ah*WPDH-j(OW&OMsk?j|J|>*uB<<=B6(OE^`iz@yY>-L^(S-wm=E|s2X1iO}$Fw%tHxJDsK&z_-B36S(J80JnhmMPy&ZOh8&5KbiM{_keA{Uo@{fB64c> kKp%d_mw*v7ju#JQOv0(x0WRV3379b%OAlUGRC<4TSfKWgzP+&sF<9T>&kKNtw zhu!Y(dv8@1b=&k9zcORT{-s)Ucipb9PMk@Dccz+6b0+<6vfB>iiYrubj zH-J9@e+JSM;5bwU_#E(8!1WIi?Q*%i%jNPe2#nkPIj{n}1eA`tm^udFPiKqH0Yv!% zBO?1Y9|Ff4tyVY0bu0Z1QX{= z6bFWOLAw86RDb<%*(8anlvh|=z3b96QNSwjS>O-H4gDnWDo~2@1xmA585kG_z*@Tl zyBBajc>hR~nB{wmRLUy=7Wf+Q@?OvChXDQ%-U^eWW0PEb?EU0&5!PDLH0^`kAK1%f zbNwbogyE4f3WXx|dKKr~HJ||e{!yVn0=xzcPfpKLnt!%CgTv=k zqh58^rXK~`!0QhS{S@9M2B$AvWNLa2YweCZ9EW=FVVGlZcvRJ@YtA|MEbupAp*QcS zKK(J^w?Oei=@Ju@rDF%)Ev+@pdX<|CZvw32V}1pWX6dKd0e+0}^Cu4sV67v{7fI8E zR;yVAhJS$Hz~PpD2KY6Qzc6!|@rn1nC%`@V(CGNjn{T)@iBsTl;O0S=evS;dbPB*d zi3mz5wb`r*-ZOqD`^bUz049t;DRAzJ0G|SW3d&r%@+9Z8i{mT-11KdJ zV*thk_#O~UP0uhiG)kJL1c7-VeLO2t2tZ!r)3N7Tt)`3e14`=v9cZ-ZQweeVNkmw? ze}5NiZCe93fTnZq=|;UwzA&JIz@W88>$3x{wXnK;8=$Q5MdiPNnse@%daXjCA3QjH za1o)~=}=x@2Kbi-l5AWDs^Ffj*D6F&Q3XMWh(@%=rk2w>nZo z7ElKF@kYH$lrO5lglIWEi;HNKR;;Zq(SK>T0AA_8ToQam{1$NEgI9LIMFbrL?O#iweq^5G|5fJmv5j@X-|-gLNsD^%a`l zHGTp7Xs?8+2Yv&%2Rz?wRLMnoWlSyu53tU0l1^@nL5UD|x-8v!8*5Vsya+7pmw!+9 zz!!kKz$coGDq$|KOz6P_9pG$wBK9_+K}3_pF>CjiXf`*%=l0(MItLX2DbNKLfm^`5 z2ai+`M&9Bk02J<+{9HsZCPYLL$1$6mbyn`(boh$=^S~Xz9abauz;6LJJ@|&?!id1+ z{NdCZ5e%?(K0Y3m<0XE1^|4~=zf#1Qm zY3G}b4UK|)VGx_9CUf_zFdO#W$rQQ$K09pD2>DK|PcrAEi6F(%Bu zIZGr({31Sq2j{ST{_mWlQGYA5zJ8Bxr%eXPRqCeYjs@UTg9kby_Q7lAJUMWqzQ zfnf%R#wZqtFkx=bhpkO%wVG@-Yc%Q=k|geZ^cwID{K0PkTYEkKD4D(h!x{J}@CAHd zd2(lh)`TX94t!LwHYJI>#BsO(d*TfCyTCv2Zdk*+;+{H=@+88ytY>t#kq_frX&(fx zW*gfLc?aV-Mki4S sY9NP)53<)P8#WugjIzrCZm^%;0RvpOuxlwXNB{r;07*qoM6N<$f?%u&uK)l5 delta 1635 zcmV-p2Aui+4D$?-BYyw{b3#c}2nYxWd<}m6TWRV4k6$r5akxhv5 zAVPpx5D;R)0tpewOhS?YVjQ>I-CbSJdsy76!EQXZ$MNeYUA4OUR@K+PI(6>7=PFKL z?**;__X8gS?gf?s3ygqG;BUYmf!_eX1*$XPI8qMy67YLK_BN%oSm(t#FIpR!{~h=j z@NM9pYLsR;9QGNw@16(#XFDEW?yF!p)3osY{o2^GMh~h5r6{tF7Pd2 z=d7UDfbRp30d%^HEcFL?zcANL4!x~}it%{F?&xg^At>PAz!!mEoi_A`ffs>$oNKYV zb`{@>up+Xr-S);xp|wV-h#{e3INV|~-T?@}*MTPvI)B$3bnpm$oan-pUa!ykm3L#T zLqw>m>PXnV5)nd(eYMuKJ3U&hHc2u8BzXu87FP zz#o9?O@F`R#`LFv7l7`{;4T&yR|p}zBX^IIwT3iJ*nI0Iz<-E2|7|#)(+_eBc>P>} z0YVVGZxKQu&(kij1UwH%JN*#w9MB#N*6A%Sp9^rKm|+w*-+WaUM4exw18 z4lh%kBQVq%KBh*Mrims-#?No(^rOJffQ7;8I)A-h|J;H1N^8wO-@Ji{41uc$IlaLx z;4AcceabrjUX+wllx0p)2!LR3K&4^29@_~;Pb#!fV=vx_prROMis)P0)`mZ z)_*#HRYM%tyZ!!vZg&ZYZ)*q@2Tv<6Mp`Q-lU+gx))2`a$@5gK^-2I^Eyh@?P+b~q ztu?#5LqsGsz$?HQcrcw!ajvD5QWz7#qvIDZV+^C6ZGbI9TvYyrxWsuVO{X~Ll~Ou_ zTT2{4FHXi7%Bo;89s&H>0A=0&3Ty)pr+;aJwKcfj1AalV;;d&n9h0UBz>7_uZopp# zwt!D(X@b23jvHf8S}`6CDa#z-$-RS1Nn8=X47@cDu8qN-Gq_R;=RHN9v$L}W$P9RV zei*N6@V^u55!bRb!CI%Z)@Y;mfS-M=c<%|JVlv(#i=puh@Z*CfObz%ez)j%MG=FQr z&Ho$^0nTs$a?YcTjxGlTH}2SZ8Uk2lch68qirFs z$iED{4#-h!#0LB|;0CafrHQu2qJNY|=@{eMm{^!Qq3cR1taCW;0Y#B#6h+Q(ds9S$ z0=@?P8koWH7PbxeKZtR@k)???#-f!0k$UtrXl+o`p?(a0t>gRQypQvpDp2GZWl^v* z+@z{X1^f_r5*RjDJ#O8j0e_uXrrpT0nNfhXo~kNQ#GKl^sPRu|v{tu1m4DV4(||gR zjeR5tWsy^s1x1lD+}@NL_*vkq#6hoYVD7Y*=Yaw6N#F-S&-(?I`U8xyarJD>E#Si> zB7~}nYtMS_o+RUXs1|@90pB1xJl%WlNeYmz27e#$J>VlsDQS0ls?%A*nEK%e00?2fic(OXQHv6S{P;9LVhf3AN)Ord`Q zen)h-sr*lg;c#f~ISuGWZDKun-lat%xFJ679rkYwRm4zBIOc}YX+k$LK#K@(>+h;= hp>EBLGOybm>A&3h$t1lM_Z|QM002ovPDHLkV1hsw1&06t diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark.png index d830ca56c50623bc4a24511dfede641e2ccba7f1..1f51b5a57f3d5e18496e1d7221acd697dc916837 100644 GIT binary patch delta 10 RcmX@Z*2FeJd1LNO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3T?G64W+ycjD0 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover-dark@2.png index 3eb533ebb05c40ddb652ccc724d4ea13040062b5..2aa8edd90949073fdc6abc1868c9f2c5cc01e1c7 100644 GIT binary patch delta 10 RcmZ3?eUoc~^2S^4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yAumS*p9~bBV diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover.png index aae24a1f364f5d9c7c8ba28c47f63c45b449406a..9d88ece0f6fcfb2916b6409bca03ce88239efe66 100644 GIT binary patch delta 10 Rcmey*x{Y;$^2VIWOaK`_1SJ3f delta 82 zcmdnS`k!@zvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEr!oNm;i(z5 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-hover@2.png index 90cd9a8ce5b862a5b3eb7d8e4d21817bf28321af..034b5ade88449858c9828021dc1f2134daa79994 100644 GIT binary patch delta 10 Rcmdnb{f%pa^2VHCRsa~A1M>g? delta 82 zcmeyywV!)}vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fELs4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive-dark@2.png index c527c942853c77b30df6436feb17e973a258594f..c525ae2ed8b9af0a07a7050096ee9160dfa35d36 100644 GIT binary patch delta 10 RcmX@d*~&RVd1Foz3jh_Z1DpT= delta 82 zcmZqWJjXdf*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oDJ%fXWf@oi diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive.png index 56b52db416dec2fea83bef590168da395ae19161..06f3a9e36a6cbba0a72b16edd5af5d64017e0bee 100644 GIT binary patch delta 10 RcmZo=+s!&bd1LMjCIA$<1GfMG delta 83 zcmdnZ+R8RT*@JO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3U#F#!N$;1|^Z diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above-insensitive@2.png index 85507ebd08a8d8a908d1ea91576f985494862827..c32b58b7998a2e98ef075ad25e315879458dd85c 100644 GIT binary patch delta 10 RcmZqW+`}(yEr+qAXP8FD1G)j8>x+o(kuYQP#F9G diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above.png index 898046e581021886a707c702eb6a7f536facb489..f0581de82ac2ca1ac22179f82e8801e9f9922fc7 100644 GIT binary patch delta 10 RcmdnW_J(zW^2VH#OaK^w1V{h? delta 82 zcmaFEx|MB$vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEPcs1k+>jaA diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-above@2.png index e0e48a06972dbc8970380d3d56038989eb700e2e..05da62f0543fb7ec2cc160ba1e5d8d13ec109737 100644 GIT binary patch delta 10 RcmX@b)5tSHd1KB!Rsa@`1Q!4R delta 82 zcmZqVImI(U*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o4_E=qwi(j^ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark.png index 0a41ed84c0ab4d45e00168bfee643d7d42ff927b..11591bfa6569dd39e125eac8929766339bc2dcec 100644 GIT binary patch delta 10 RcmbQmdXZ&<^2QuJCIA&w19boZ delta 82 zcmcb}GK+PBvO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz iNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fE4VVDQq!|SO diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-active-dark@2.png index da05d56b981a7c8b30813445d731ec07324c13c9..098f671bdd02c7f8301c9fec620a9897183eaa49 100644 GIT binary patch delta 10 Rcmcb@+08jYd1Fon3jh`+1Fir7 delta 82 zcmeC?yuvv_*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oSu6n0JsD~M diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-active.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-active.png index 33c38433cb2e0ec8c9199bbeac8ee7fa551ad34a..1108f4866de4a55f0eabb0cedd5a3cb201390da5 100644 GIT binary patch delta 10 RcmZ3+c87I>^2XeqOaK>61R4MU delta 83 zcmcb^x{PgtvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z(yEr+qAXP8FD1G)j8>x+oVr&4!o*4H4 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark.png index 6f58626642e277cfaf299e67883fa5bb58b6587e..455275346a02bc6226621baa179b52fd806c9d97 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-dark@2.png index 2ac9384c49c40f5b8633a4e64fa9ec27cb1eab96..903313d945fe4c1d94efea9047707266e0f7d635 100644 GIT binary patch delta 10 Rcmey!xq@?o^2VH2762G&1O)&9 delta 82 zcmZ3%`H^#ivO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE+gSkN(HX%2 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark.png index 6f58626642e277cfaf299e67883fa5bb58b6587e..455275346a02bc6226621baa179b52fd806c9d97 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive-dark@2.png index 2ac9384c49c40f5b8633a4e64fa9ec27cb1eab96..903313d945fe4c1d94efea9047707266e0f7d635 100644 GIT binary patch delta 10 Rcmey!xq@?o^2VH2762G&1O)&9 delta 82 zcmZ3%`H^#ivO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE+gSkN(HX%2 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive.png index 515ad7b42f028aaf85d3cfff88863aed449af730..acac5e95a733eb3bfb9f19eebbb7b158d923edc2 100644 GIT binary patch delta 10 RcmZo<+rc_Pd1KC0CIA$01FQf5 delta 82 zcmdnN+Q>FR*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o)0qIfKp8v$ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop-insensitive@2.png index f70ffd769b15b669b161c65e999469a11a8e386c..89a61131edd21b30c2f7750b7c32d2ab307ef6dc 100644 GIT binary patch delta 10 Rcmey*v5jMb^2Qut762G=1FZl6 delta 82 zcmdnS@tZuoc5!lIL8@MUQTpt6Hc}fEMOgspDH&-1 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop.png index 515ad7b42f028aaf85d3cfff88863aed449af730..acac5e95a733eb3bfb9f19eebbb7b158d923edc2 100644 GIT binary patch delta 10 RcmZo<+rc_Pd1KC0CIA$01FQf5 delta 82 zcmdnN+Q>FR*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o)0qIfKp8v$ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-backdrop@2.png index f70ffd769b15b669b161c65e999469a11a8e386c..89a61131edd21b30c2f7750b7c32d2ab307ef6dc 100644 GIT binary patch delta 10 Rcmey*v5jMb^2Qut762G=1FZl6 delta 82 zcmdnS@tZuoc5!lIL8@MUQTpt6Hc}fEMOgspDH&-1 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark.png index a6817f45eeb3e452fb5f79c3f397ddd4e4aaed1e..aa2abad2f079401e6b78e21d1c2b0ad47726463b 100644 GIT binary patch delta 778 zcmV+l1NHo|2A~FzBYy(tNkl_~*hvD3EO?yfEtj)TYK z$AlwYwbXsgwtvwQ5|)h9$s|Wn%_OkM8}0WRUdIq9{HBzFby7MC4Nq?9RsKvr$y71K_>Kdp}J! z24kj6M#F@?d+kA2Jfw|UWu34 zmSsfZTH~6k-U3Ph;=O+%s>Xo--%2*(Afc!T?r`kzVdj^~j~j^DJlgkGrGcpm*E3d|Qm+_d(LfAb8KE zBe0filC#@sr=!u)ZRgzEz`lC#%UL#gb?xCt!^_^Jlgc}HN9mOO9bg}(KKN#w4u<_+ zm%u91QGc`CtuY2{7~ryu-OinKksPK@9((V*NpkpFqw$cnVF~62+*uG20z0d`JxWK( zZ_c@Q=gDUR0B!K=NBzUCTCHhATS9~Br`hy0#vmey2-aFegvof!Zl^sOr^&C*x$Q;r zd4b$}|4UK0E8Y7CTeeiOHn4~assTX|pc)_|V1GQ$Ir{xBd!0MOY%>0~DBK6Y!D*c? zTA&WRAtIlIrKs9yuEkNcjHOh* zi2iAe8UORk)LX!Zz&cR5i0nKQmyZd;xjYX{fb=*nyw`sN4xe(xcv$O$00000NkvXX It^-0~f|4JUGXMYp delta 795 zcmV+$1LXXm2C)W^BYyw{b3#c}2nYxWdky=C#MUo$Y zT_C;W-G4!r+`A{DUu0Rt(#%9qfup0r zI8^12X7)NTxlG_q=iHau{TDi`h!>%%437unsv7@fX0I)Z2;fEJkFD*Utt9c+B3}?G zXCkl8izslD{5Py;Py1ljDb*))MjFG1|`$b-K z?uf`^Ae&VnFM5}OapP#)$i_y$$n(xiBJw@p6>L38+>NqdtYrJv^F>i~Ulx&v&H!X} zTRtg#no`$+7^47Q1vxc~{~LMRGz^ahWeDY-ne8grZ=ottNp9r7_bKh9VR$sC>blx9 zv$uhR1b@iern$Seww_KaxxQ8BnI9hy%1Ise%Pba89-TE! zU76V@z&F6@m3}TD2c8Aq7m-IIx(^cI{Ff<@fe(QlpjbtARma%uno diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-dark@2.png index 3e8e16d1b769ef87ada520367cc1c3b5b0a9b3b4..58671d373779ae450d8f89f70355e6cc68601645 100644 GIT binary patch literal 1665 zcmeAS@N?(olHy`uVBq!ia0vp^x2M;1l8s#_XJun&W9MLF=VWK+UoOKQVNpNijvYw zQZhiKEG?rX4J2h%q~+9PWL0EjRb}LWNKF=q z&9!tav~+>UQcKTL8-%R1^?}G*N6%76&q_xhh^%!CtabIRbb+LSjjo}Mo}slKh_ux+ zve5@2TYV!tePdgFV<2g7U}R@t3`F(@CP3t12t=m#hNccirjDkTF1}Nkg@6ItP!i-9 z%)rRR3=Cp+4o)s^9$r3vL17V5F>wh=DQOv5IRzC}O)VW$Gjj_|D?0~ACl^o;%Rwrl^f6DLn!xP9;8 zlNYbvynFxg)8{W=zkUDl>-V3(|6t&J>rHK7CVTAZ;uvDl+k5q=wMe1Nfsgr`Ax~n0 zOI}`4ooiJhD7&llRhVW_;>}nQ`RG8cySwybwOp-A}iR6M(B%W1uv8?9gEzp(b+ zr2alWZQji5pDXvBpTn{BMAC~l4<_UaY)-A6;P0Pex4m*pm|sZrwWn zy!l7UId;}&?fObn*@VU0HQz{b?KVDb7^3yGXsOWqJ+`bH?i|$kCVt3LbMcgLk6EiG z7@v7va^p!J3%k>y;HgetuT_Ho+VCba^As?sh^|W6;%IbLwBy5t!*NY5PJa*n|KWSX z(uLhRuk|@svY7hOn&S_qRSC|SEQUv*lbZBg)(+=Eh9_HtC#!#UUESX$f0Q#_=vs#1owTUq{Eu50B^Gy1Sh&WZegA4nzTd?X zrQLVFy2j?nJ?~_xi|Sc3%`q)hH*?jbs;k>$CLXwc)a&=0Ez*3y?Tt;<4AzECv{X8{ zMXhH-tU=6@E2UEc*Q`{2-^mg@+i=qhdDV0JSFcQ$N|KCrPwQq0j?wwQKdWrtgdctD z(pP^yR@{DK_oEvpbq%x5b2n{a@;bQ5w8VI+mSkA4+dYrIj~5UA*tBC^!;$nS{Gz8f zZRM(5x@Og~d8yK?G(ItXP=A@&k`pt%;YE<3XSiWbGH+>6S52{q(lP0TmK@Ig8Xl*$ z4ryyFU7A|L8Rva4QZVPk1IgbV<%(=;nLI2ffB!gnTljUqj>O+{&Cq5>(e}6Rhf< z^@jNTJ*qNRGdK3W-ng;+k)WQ9`|fjM$Iks{{lB|r*M=D{e}c*~Pgg&ebxsLQ0LVV+ Ad;kCd delta 1694 zcmV;P24VSu4WkW^8Gi-<005hT!TbOK00eVFNmK|32nc)#WQYI&010qNS#tmY8?OKW z8?OOg8j&0T000?uMObuGZ)S9NVRB^vcXxL#X>MzCV_|S*E^l&Yo9;Xs000IcNkl)lRzaqx(M2tE#f7bGq-eJ?Y2X?)D3HY3?~y z_jA7IS5?3IwQzE2;343xz?*^Vz#4D~sDK{uZ{Y91AAsk9mrn6JGtqs(*MLnROgC*z zur>+C+MtvU2Y;@6;E%vZ0Xqv2ImSK9z!!l>04pN2+Y7Yk=1J2w##lsdA0~K5Q5Iy` zn9*>DvMicQ{{kKZeteeD?*zUJtZQvT=hCutI*W+X(}?ji)C2B~xIc7JWb6#Oj7Pi8 zS3dfs9|?LVDWyNT-8 z#e0wU{#39BrL{&x*co)`_qG6bfp-xn>#3k`0?&ykxw>(mSex9HyLVFK`tDATUiW2y zG4LMXH-9IEz6`twtgfx!ORLqUs@zOrZ~I{pwASqI?tzbhcLTpWs;`>*`)Odc(^)!m zV1N(;&N(`rWtLag0Oo<818+O3Z{zgqffuzlYUA4d(yR{Wp~msyZl7-V7Qh5}FYxO- z^=X`b6wsZ;W$^)g2prtj&Z_wksGMV=v(z}=27i7=+#?QuP#^_1MPzB?-q+1+l{l$H z1fw;>;ehV;Er1O8An=QW_bT8Wz*2i|;e06%C^U{QEV8n?4$uOgC9Y_i|ZZ zS$~){6E%*{&vm$RWdkDkkAM$BgkI6w)XC8Qk3tAI?^#@4<(_M=fe8Ks;KK@N#VpKo z;juB*M8GB%S5;V(vbeYcV1Q=~P_LU(&J)I0PSfPZf*;H3}(Wm%&2#m4nMaG)%5@@!16``-rm zDc~ExKmmUPm`uiKZ7(d01tCdNf)A8=K{grF>)vXBp9H>1JTznq_&q?8jR`(r%=G#1 zd?ZRuIUEnf{oWq%6Tr6`V2DfJ^S~s_#-S_=^dYC~GY3wR!+-B1%Ge@ z!h=dHk|f0#gLBon0vAO=J{i;RzuW+S4)|UToKN@D#07dA_;^*7wA%AnV^Lb+-Ps)k zl!^w05Ge9II^5rC68T4g?;i%-KvP5C2*F<$5sa}Io1m3GlO#%MT~9hsQPjY_tw5}v ze3rQL9SS@RT><|9K2{XDNzxV#yniwgd{!qJV+=M)@KeBpec;a!t502G*dD3|Isn7^ z=7;lq64JCS5Rd%E7)0c*z_r#SX^PewS5=f{K{gpN=x;#`(N6 z-caNjNzx+tfFNjNYIubZQ^=zf&wqx*CTL@jAe3cERaQ(ULv{w+5a05rh<|zWk-!I` zLp{I?zysd<2eNz|tW5>L`?%F>t)lzZptRbnVTcm6QYfv_Mq{nTScBFI5vXc+y>|?U z1BSc3#;8Yt=Z*_}5E{S{U)8UOj^CI}MnOcx7>jo<#y4>XYk*b#AWG}~hY-O#k8>qu zS>m0;xr#x5i)=E2SXuf6@PEsb03QZT-8lfiCDx)JDvHeH`2-~jZ4BOfoU3ro?LUZj zIPdY!QB@UHS;p%=);C6@0Xu_kaIO;IufRuuztq6xae?90tEThB>i+$}m#B~QN@-fH zInuO^P0~B=p3YSiMMj=Y$n&iBfg$j9;2Gi$*CmGJOqBrZz&*hGh=28nlBrZjYZI(Z zLz1*YlC**`Hi)Q$DbXge68m61)-tzOw@#$vBpCv9h|U8n0S^Oj0p19_mjC^?M4!0s z|Cv}+e1SMuDq<{W+=Wh(8EIgSSOJ=z3kFyO7KjtMPYi=;6~xNu4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6!4U;+SlrWkMl diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover-dark@2.png index d0596f675b2cb528a1babae67142a1bf0d012151..f243e61ca1d13960307084d61d4c152ccf0ec94d 100644 GIT binary patch delta 10 RcmbQqeV%KA^2S^pRsa>81AqVk delta 83 zcmX@lHIsXSvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z*u>t^jqZi5m diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover.png index c1e53742ed881ed7aecd7155f6d2c8d8a536bfdd..1ae7d90408a63454d82dba6662776718afff67a9 100644 GIT binary patch delta 10 RcmZo;+sisZd1KBjCIA%F1G@kK delta 82 zcmdnX+Qv3P*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+obC>|WbQwzk diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-hover@2.png index 47ff442706e1e0247efd7ccfaa329f7884fefc54..bd482e55369ec37f2f220024ebd6fa2ee61daba8 100644 GIT binary patch delta 10 RcmdnR{gG>e^2QuLRsa|`1LObz delta 82 zcmey!wTpX#vO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE16Tp*g&Cj# diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark.png index 6f58626642e277cfaf299e67883fa5bb58b6587e..455275346a02bc6226621baa179b52fd806c9d97 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive-dark@2.png index 2ac9384c49c40f5b8633a4e64fa9ec27cb1eab96..903313d945fe4c1d94efea9047707266e0f7d635 100644 GIT binary patch delta 10 Rcmey!xq@?o^2VH2762G&1O)&9 delta 82 zcmZ3%`H^#ivO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE+gSkN(HX%2 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive.png index 515ad7b42f028aaf85d3cfff88863aed449af730..acac5e95a733eb3bfb9f19eebbb7b158d923edc2 100644 GIT binary patch delta 10 RcmZo<+rc_Pd1KC0CIA$01FQf5 delta 82 zcmdnN+Q>FR*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o)0qIfKp8v$ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below-insensitive@2.png index 486143051d144a91d0007d3494d4532a3d869444..ae7b771aa2c55dbf2362a9beed15a85d7b533208 100644 GIT binary patch delta 10 RcmeC++|MyVd1H(yEr+qAXP8FD1G)j8>x+oax4JHJQ)Q5 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below.png index a3c2d5381a1eb77a8f3b360bf0082a2896189c55..e8a1bc440126dafbb0d8be0e412ac87f65fc0229 100644 GIT binary patch delta 10 Rcmcb>*3LFTd1KBKCIA+r1R4MU delta 82 zcmZo?yTCR<*`0y8*vT`5gM;JtL;nX13=EtF9+AZi417mGm~pB$pEOWVvcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+o&zJzkEg7l+ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below@2.png b/share/themes/Kali-Light/gtk-3.0/assets/slider-vert-scale-has-marks-below@2.png index 605caa933dce738d63021cac2d78b4e375effeee..873f42b1ffbfe7e6c37280d834214fd2657fa1fe 100644 GIT binary patch delta 10 Rcmey&vx;Ye^2Qu?HUJmH1Csy% delta 82 zcmZ3*^OZuoc5!lIL8@MUQTpt6Hc}fEIoSZ?`x#FF diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active-dark.png index 825f33682cf9a2e53b043a68a157f25361a290cd..972ce779e2e6b84046076ec95fe58fa1c269c652 100644 GIT binary patch delta 10 RcmdnS_J(zW^2XegOaK^-1WEt^ delta 83 zcmaFEx{YmuvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6y^W&!|%rWj}d diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active-dark@2.png index e285dc176daed0eba45fdd9bf4a079d6bfdbff3f..5a8924f0130e18478a3bf776cf758b8c9faad202 100644 GIT binary patch delta 10 RcmbQqeSvF&^2QupRsa>F1Azbl delta 82 zcmcb>HIsXSvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE^;rSaVHrID diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active.png index 1b3359d756b510a42d614d3fe0d8404875ddcd87..c9e0d91a592fbc343968394c02368de266bd4fa6 100644 GIT binary patch delta 10 Rcmeyxx`B0q^2Xd=CIA@J1Qh@P delta 83 zcmdnM`ipgfvIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6z{GXVgE?ie!w diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-active@2.png index 395f593c3fce3b8667a6a6aebc68e172edae452e..5e1dae2d28d5cbbc5a488648db47f29a3de1ae00 100644 GIT binary patch delta 10 Rcmey&wUTRs^2S^?Rsa{91C0Ox delta 83 zcmZ3<^_gpevIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6yYumS*yFBjJU diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-dark.png index 6f93a1fe5180df7a2dc57c05f6426c916f498069..a536ce7be4f15aabb0c2b52c1872fb12e22e8198 100644 GIT binary patch delta 707 zcmV;!0zCcw1=<3yzHoPWnG8?XV4*^@-#i!YzBrRCMWh)%o@cYlEofYrrtBI7sCy}eIF z$tltAw`n%E`rU4`B&rW{jMss$f!Yp%Iym#@rGp>2+JQnzeqn(+aA3Kc)CNaB~jO)lZ&2e@I>UzfxxKoauHN zJpE&%A7lJ6rGNN7@T7RBK+I;C@!ZJSNGX#Ima2z2aq>cC{mAjRRP_howZDNvGPCEp z`?t)DY{vT0m;ABgudb@k6{@{H;RB)=ObEqmRkTFt`SF&y-0w>0;Mlqbh!+f+HyLr>{*;45J7vcT&4jaN2OasbQ> zNr2NdGs=_WvVW<|0sh4T{^zrRN7r9`d79jp9b#sHQ`fV>c?R~gd;c-;{gNEp-+kfc zbD;k!W#Js^y5#8SpzOQ!z`cJ5_+$9bfX3+rdO|x z<^DdfW#C~Ydlw{$qS)wxI|k^i}S8ecK9w<714vZl)raOw33O6NUXLngx@Mquvl zNb3;Zk>0sLm(`%i6C_ZGs+S7I^JH1#Z{bl)I-JF8AA$ynt*4mnLd z1Ngy!AAeKo_h;2HSr$2)|I5)Nh*_j6j{yG#coY_=4^P|rZZX=(@}fY3VL$$xLX5;L zV}9Clc(6Bf_jiHE!<0O7_etB-xAMHmW6a3%9HH~IHSER^B3YILaN4#U9z3nUKXLaj z0WOZ+y_C|VuB$g>Ap?O#us{eAvw$R$J6+dN&tFRZI^3)JK7Hz*K3r6~bgSNx^jQe; z>Ug}lndOB-2#crDGoQEAb#>Br^J91a0Ql~iy%|~r+%>bWC3`HXJ_~yy=^Nl}ATCS% Y8v~ei7RFpSL;wH)07*qoM6N<$f?XhH2LJ#7 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-dark@2.png index 7161137f2b6c96cb59d624dbcc1de22866a0557e..ba24606684ae68e9ea5d62bb6bb9b3dd4b05bf06 100644 GIT binary patch delta 1492 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 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover-dark.png index 58a62bc863dfb686a75dee4f38060cd6fca2e8b6..b3d316002903a914a7345c1161fb5cc155242d7a 100644 GIT binary patch delta 10 RcmZ3__LOyk^2XdlOaK@G1T_Ev delta 83 zcmaFLx}I%4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xZVFCbu92ipo diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover-dark@2.png index eec29c30807761337b4d45ee83686e479cec5b7f..c303d3f571df329fbe59fb3466017175a2478984 100644 GIT binary patch delta 10 RcmZqT*~vXYd1KBrRsa;|1HJ$N delta 82 zcmdnV-NZ9N*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oGgtw}MHzYk diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover.png index 575ce01a68046dd7ca8aa14fee74461fea9aac14..88795f972b1f88b6785452aa95fe0bc2cb125f1e 100644 GIT binary patch delta 10 RcmZo=+s!&bd1LMjCIA$<1GfMG delta 83 zcmdnZ+R8RT*@JO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3U#F#!N$;1|^Z diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end-hover@2.png index 2ff57d1c5c568df2070244c99684d114cc5119b9..baf5f31b386efbb775516a63361dc6e7c2a341f7 100644 GIT binary patch delta 10 Rcmcb@+08jYd1Fon3jh`+1Fir7 delta 82 zcmeC?yuvv_*`0y8*vT`5gM;JtL;nX13=EtF9+AZi4ASdCm@!Ujq6|<_vcxr_Bsf2< iq&%@Gm7%=6TrV>(yEr+qAXP8FD1G)j8>x+oSu6n0JsD~M diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end.png index 3d84fd14125941d3320cc2af9dcc180e51753fc8..897a90e23eae2883490831f53ce1babf761da11d 100644 GIT binary patch delta 10 Rcmcc3Hi>P5^2VI^OaK>u1Umo# delta 82 zcmbQlcAIU2vO5EFv6E*A2M5RPhyD*37#KJUJR*x382FBWFymBhK53w!WQl7;NpOBz jNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}fEKQaLT%sCm$ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-end@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-end@2.png index 4a8bcac88936e7fd14c6837e3f136217451d19e3..58b311f81af62b65c2e71037c0e41d715a9b89e4 100644 GIT binary patch delta 10 RcmdnM{hVup^2Qt&Rsa`o1I7RV delta 82 zcmaFPwSjwrvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-BO=u<5X=vX`rBFiEBhjaDG}z id16s2LwR|*US?i)adKios$PCk`s{Z$QX3VQFaZE+To>~I diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-active-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-active-dark@2.png index a0fa2e9ef9a5b1b87781e66e69e71a59409a625f..35f55060e8af383d90a8ed6d19cef8622124cec5 100644 GIT binary patch delta 10 RcmdnM{hVup^2Qt&Rsa`o1I7RV delta 82 zcmaFPwSjwrvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fE-B1C#&& delta 83 zcmZo=JO=u<5X=vX`rBFiEBhjaDG}z hd16s2LwR|*US?i)adKios$PCk`s{Z$QX3Uhm;h-E7qS2V diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-active@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-active@2.png index e9e3d817ab53203bd08ebbf35c21d8256728d91c..1ddf84e6cc24ce4fe51c91939801b4f4fb4fb577 100644 GIT binary patch delta 10 RcmX@i^^4nJNUsNB#yF{oGC)De64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6zvU;zM?JQ&3Q diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-dark.png index 75f1cd2dded3c38c2decf383cbf49103232196a5..77fe59264899486c20460f59bb521bb391d65586 100644 GIT binary patch delta 665 zcmV;K0%rZ<1+WE>BYy&SNkl^s;a(P6rEx%jm0&@MOE#kjWbPM7hGKI9Dt~z zta=tl-u#gjkVXFWzv%Z)mL2|qAI^>N`L9Q(df}+ol{md#-m}KbN*g| zuOANfU39hVB7&N5(0?$_Ie(?VZ9#rG_+yU{!>LdaA%?)9zfWCPd%z6^NU8qd_uXH{ zhtnw`M$}G@Z)SuTnH)~py?vV@e&x~4Vq-x00000NkvXXu0mjf;3!hQ delta 715 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 diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-hover-dark.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-hover-dark.png index ab2c5c172b8b73a53146f3943e01f3a3d0684cdb..a19dd9dd3b32ff810a112aeb8a4f3f45a7ac6207 100644 GIT binary patch delta 10 Rcmcc4+RHjYd1G!C695(%1FQf5 delta 83 zcmeBWz0Nv8*@JO=u<5X=vX`rBFiEBhjaDG}z hd16s2LwR|*US?i)adKios$PCk`s{Z$QX3U>m;i1(7s>zt diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-hover-dark@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-hover-dark@2.png index 6195d1b35dc27177a14acc942560e8eb1fe53e96..e06a4570e580ee5af7bae1951b3ce17302fdd594 100644 GIT binary patch delta 10 RcmeC?KFBped1I~|D*zOP16BY4 delta 83 zcmX@e)y+LY*@J61K4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xBGXVgHG#CB= diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-hover@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start-hover@2.png index 54d992a909369d0d1163edecea5a150392587cdb..38d42424284f3ed7605c932c8712fbf65962de99 100644 GIT binary patch delta 10 Rcmey&xr%dw^2VHY762HL1PcHF delta 82 zcmZ3*`I&QqvO5EFv6E*A2M5RPhyD*37#KJUJR*x37^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc}fEJ6QnZ85zd_ diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start.png index b1f06047958ae840c25bc98a53de63002fe26930..08e5418491b1bed830ba33f53b33055f7767865b 100644 GIT binary patch delta 10 RcmbQlc7k<+^2XeyOaK+V1Kt1t delta 83 zcmX@XI*Dz9vIhf8v6E*A2N2Y7q;xPaFmM)lL>4nJ@ErkR#;MwT(m+AU64!{5;QX|b i^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq&6xpX956hP8a+D diff --git a/share/themes/Kali-Light/gtk-3.0/assets/text-select-start@2.png b/share/themes/Kali-Light/gtk-3.0/assets/text-select-start@2.png index 245e4801012192a457e8b3fc53047720b90ecc9f..2919dd96b9b61ddd795eb7c7ca804e68c925bce9 100644 GIT binary patch delta 650 zcmV;50(JfE3Zx2;ynZlZ1TAN1|D=T*NBhXA@*XmDPRI$3OBLWhm`A>FX@lgdSxeH=2wiQN6 zthp&yUtE7HBISAwgV+KH7|j@GVd-(6s8+8U(3avaqxq-Sd{)4&Hi`zZm10b&`J?i5 z19SV9jc7|TP9WA?S=-DP?v~M7m>||%%Di|L-LGpcOrRjtT(DlRCvP&gFpbe%SYIzZ z*EUlqh&9lB6F;*x(+clSTxZa}7t6B0+x%g^jS8A)RPeN=rFK8ige+vnZrW z5OMD13#3zslyW7_3`(R-h8YAA8;e=Qk}R4TOp=I3GeevN5@VPlFoF0)hIBq72?&Rz z3P*IL&u~Dhj?X~OgT4w$5d;Hz();OiMvAjyx6=~#IHt=~oup-UL*bBir9EPb!FjF4 zAr^nbYDMO}tY(rytJ*y{`Dg@oI4U_uJtpX!6pQZD4 zQ-TF}4;S_TIPoP4S0b-KgS}Dy{?cy>@qq_hCQgisGMqb9Ds}izorUeK{EMmtve- kbLUH$Bt<807*qoM6N<$g5(Gp6diP4S&3PHriVj8g|g=Pv9$D+|p z5yiel7^d)zFCL*Gna49FVBvF_2TguL2VI{(zqJetDdb;3U`Ww1hp5 z=rU0!ZkgRcIHX-{kCNbx*8-X2u=QF>1+@W)v%kA?u zz=Ce3+;2puep+!;c-$+@?zrE-#8`m)Ff>cj?HOD6FLYa`T--hAeHelTcqa|ls%5-E zXK0kA0OR%Dw(nG(-R9`s5uiA?`ZiU6%CIv6L@)+$icY+9H2Sd58O4Q_x0!CjqY`G| z`H@i~wv!hA?Dcx@e{xQ7X>R+zD&H&f-=C(--p4i<6j$`xR*6i$Sk3@_x7{7$e%gMeA*4nE(I)07*qoM6N<$ Ef++)3{r~^~ diff --git a/src/themes/Kali/assets-renderer/gtk3/assets.svg b/src/themes/Kali/assets-renderer/gtk3/assets.svg index d669cede..b26ef419 100644 --- a/src/themes/Kali/assets-renderer/gtk3/assets.svg +++ b/src/themes/Kali/assets-renderer/gtk3/assets.svg @@ -1,8 +1,8 @@ - - + + @@ -283,31 +283,29 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -315,41 +313,39 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - + +