Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package mojave-gtk-theme for 
openSUSE:Factory checked in at 2023-08-04 15:04:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mojave-gtk-theme (Old)
 and      /work/SRC/openSUSE:Factory/.mojave-gtk-theme.new.22712 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "mojave-gtk-theme"

Fri Aug  4 15:04:00 2023 rev:15 rq:1102295 version:20230804

Changes:
--------
--- /work/SRC/openSUSE:Factory/mojave-gtk-theme/mojave-gtk-theme.changes        
2023-06-23 21:52:44.314661136 +0200
+++ 
/work/SRC/openSUSE:Factory/.mojave-gtk-theme.new.22712/mojave-gtk-theme.changes 
    2023-08-04 15:04:20.124621644 +0200
@@ -1,0 +2,6 @@
+Fri Aug  4 06:58:33 UTC 2023 - Michael Vetter <mvet...@suse.com>
+
+- Update to 20230804:
+  * Add NixOS icon #238
+
+-------------------------------------------------------------------

Old:
----
  2023-06-13.tar.gz

New:
----
  2023-08-04.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ mojave-gtk-theme.spec ++++++
--- /var/tmp/diff_new_pack.fUXz5i/_old  2023-08-04 15:04:20.716625334 +0200
+++ /var/tmp/diff_new_pack.fUXz5i/_new  2023-08-04 15:04:20.716625334 +0200
@@ -17,9 +17,9 @@
 
 
 %define         _name Mojave-gtk-theme
-%define         _version 2023-06-13
+%define         _version 2023-08-04
 Name:           mojave-gtk-theme
-Version:        20230613
+Version:        20230804
 Release:        0
 Summary:        MacOS Mojave like theme for GTK 3, Gnome-Shell and others
 License:        GPL-3.0-only

++++++ 2023-06-13.tar.gz -> 2023-08-04.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojave-gtk-theme-2023-06-13/install.sh 
new/Mojave-gtk-theme-2023-08-04/install.sh
--- old/Mojave-gtk-theme-2023-06-13/install.sh  2023-06-13 09:13:43.000000000 
+0200
+++ new/Mojave-gtk-theme-2023-08-04/install.sh  2023-08-03 18:13:25.000000000 
+0200
@@ -24,7 +24,7 @@
 ALT_VARIANTS=('' '-alt')
 SMALL_VARIANTS=('' '-small')
 THEME_VARIANTS=('' '-blue' '-purple' '-pink' '-red' '-orange' '-yellow' 
'-green' '-grey')
-ICON_VARIANTS=('' '-normal' '-gnome' '-ubuntu' '-arch' '-manjaro' '-fedora' 
'-debian' '-void')
+ICON_VARIANTS=('' '-normal' '-gnome' '-ubuntu' '-arch' '-manjaro' '-fedora' 
'-debian' '-void' '-nixos')
 
 # COLORS
 CDEF=" \033[0m"                                     # default color
@@ -65,7 +65,7 @@
   printf "  %-25s%s\n" "-a, --alt VARIANTS" "Specify theme titilebutton 
variant(s) [standard|alt] (Default: All variants)"
   printf "  %-25s%s\n" "-s, --small VARIANTS" "Specify theme titilebutton size 
variant(s) [standard|small] (Default: All variants)"
   printf "  %-25s%s\n" "-t, --theme VARIANTS" "Specify primary theme color 
[blue|purple|pink|red|orange|yellow|green|grey|all] (Default: MacOS blue)"
-  printf "  %-25s%s\n" "-i, --icon VARIANTS" "Specify activities icon 
variant(s) for gnome-shell 
[standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void] (Default: 
standard variant)"
+  printf "  %-25s%s\n" "-i, --icon VARIANTS" "Specify activities icon 
variant(s) for gnome-shell 
[standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void|nixos] (Default: 
standard variant)"
   printf "  %-25s%s\n" "-g, --gdm" "Install GDM theme, this option need root 
user authority! please run this with sudo"
   printf "  %-25s%s\n" "-r, --revert" "revert GDM theme, this option need root 
user authority! please run this with sudo"
   printf "  %-25s%s\n" "-h, --help" "Show this help"
@@ -347,28 +347,6 @@
   fi
 }
 
-gtk4_config() {
-  local color="${1}"
-  local opacity="${2}"
-  local alt="${3}"
-  local small="${4}"
-  local theme="${5}"
-
-  # For libadwaita
-  rm -rf "$HOME/.config/gtk-4.0/"{assets,windows-assets,gtk.css,gtk-dark.css}
-  cp -r "${SRC_DIR}/assets/gtk/common-assets/assets"                           
              "$HOME/.config/gtk-4.0"
-
-  if [[ ${theme} != '-default' ]]; then
-    cp -r "${SRC_DIR}/assets/gtk/common-assets/assets${theme}/"*'.png'         
              "$HOME/.config/gtk-4.0/assets"
-  fi
-
-  cp -r "${SRC_DIR}/assets/gtk/windows-assets/titlebutton${alt}${small}"       
              "$HOME/.config/gtk-4.0/windows-assets"
-  sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk${color}${opacity}.scss"        
              "$HOME/.config/gtk-4.0/gtk.css"
-  sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk-Dark${opacity}.scss"           
              "$HOME/.config/gtk-4.0/gtk-dark.css"
-
-  echo; prompt -i "Installed 
${THEME_NAME}${color}${opacity}${alt}${small}${theme} theme in 
$HOME/.config/gtk-4.0"
-}
-
 while [[ $# -gt 0 ]]; do
   case "${1}" in
     -d|--dest)
@@ -585,6 +563,10 @@
             icons+=("${ICON_VARIANTS[8]}")
             shift
             ;;
+          nixos)
+            icons+=("${ICON_VARIANTS[9]}")
+            shift
+            ;;
           -*|--*)
             break
             ;;
@@ -663,6 +645,33 @@
   fi
 }
 
+gtk4_config() {
+  local color="${1}"
+  local opacity="${2}"
+  local alt="${3}"
+  local small="${4}"
+  local theme="${5}"
+
+  # For libadwaita
+  rm -rf "$HOME/.config/gtk-4.0/"{assets,windows-assets,gtk.css,gtk-dark.css}
+  cp -r "${SRC_DIR}/assets/gtk/common-assets/assets"                           
              "$HOME/.config/gtk-4.0"
+
+  if [[ ${theme} != '-default' ]]; then
+    cp -r "${SRC_DIR}/assets/gtk/common-assets/assets${theme}/"*'.png'         
              "$HOME/.config/gtk-4.0/assets"
+  fi
+
+  cp -r "${SRC_DIR}/assets/gtk/windows-assets/titlebutton${alt}${small}"       
              "$HOME/.config/gtk-4.0/windows-assets"
+  sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk${color}${opacity}.scss"        
              "$HOME/.config/gtk-4.0/gtk.css"
+  sassc $SASSC_OPT "${SRC_DIR}/main/gtk-4.0/gtk-Dark${opacity}.scss"           
              "$HOME/.config/gtk-4.0/gtk-dark.css"
+
+  echo; prompt -i "Installed 
${THEME_NAME}${color}${opacity}${alt}${small}${theme} theme in 
$HOME/.config/gtk-4.0"
+}
+
+remove_gtk4_config() {
+  # For libadwaita
+  rm -rf "$HOME/.config/gtk-4.0/"{assets,windows-assets,gtk.css,gtk-dark.css}
+}
+
 install_libadwaita() {
   for color in "${colors[@]-${COLOR_VARIANTS[0]}}"; do
     for opacity in "${opacities[@]-${OPACITY_VARIANTS[0]}}"; do
@@ -747,8 +756,13 @@
   install_package && install_theme && install_gdm "${dest:-${DEST_DIR}}" 
"${name:-${THEME_NAME}}" "${color}" "${opacity}" "${alt}" "${small}" "${theme}" 
"${icon}"
 fi
 
-if [[ "${gdm:-}" != 'true' && "${revert:-}" == 'true' && "$UID" -eq 
"$ROOT_UID" ]]; then
-  revert_gdm
+if [[ "${revert:-}" == 'true' ]]; then
+  if [[ "${gdm:-}" != 'true' && "$UID" -eq "$ROOT_UID" ]]; then
+    revert_gdm
+  else
+    remove_gtk4_config
+    echo; prompt -i "Removed gtk4.0 configs!"
+  fi
 fi
 
 echo; prompt -s "Done!"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Mojave-gtk-theme-2023-06-13/src/assets/gnome-shell/activities-Dark/activities-nixos.svg
 
new/Mojave-gtk-theme-2023-08-04/src/assets/gnome-shell/activities-Dark/activities-nixos.svg
--- 
old/Mojave-gtk-theme-2023-06-13/src/assets/gnome-shell/activities-Dark/activities-nixos.svg
 1970-01-01 01:00:00.000000000 +0100
+++ 
new/Mojave-gtk-theme-2023-08-04/src/assets/gnome-shell/activities-Dark/activities-nixos.svg
 2023-08-03 18:13:25.000000000 +0200
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   role="img"
+   viewBox="0 0 24 24"
+   version="1.1"
+   id="svg4683"
+   sodipodi:docname="nixos.svg"
+   inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:dc="http://purl.org/dc/elements/1.1/";>
+  <defs
+     id="defs4687" />
+  <sodipodi:namedview
+     id="namedview4685"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     showgrid="false"
+     inkscape:zoom="9.8333333"
+     inkscape:cx="-7.3220339"
+     inkscape:cy="12.050847"
+     inkscape:window-width="1080"
+     inkscape:window-height="688"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg4683" />
+  <title
+     id="title4679">NixOS icon</title>
+  <path
+     d="M 8.2375471,3.5745508 7.1334195,3.5761698 6.5926883,4.511926 
7.8530452,6.7080392 5.3137135,6.7015633 4.2452029,8.5957413 H 13.707998 L 
12.612775,6.7080392 10.028921,6.7031823 8.2367376,3.5745508 Z m 4.9985259,0 
-2.175067,0.020237 4.732207,8.1975812 1.085509,-1.8941779 -1.287069,-2.238206 
1.81323,-3.1164893 -0.552873,-0.9568027 h -1.081463 l -1.27088,2.1896372 
-1.262785,-2.2017795 z m 5.574873,3.3957592 -4.732207,8.195962 2.182352,-0.0065 
1.295974,-2.234159 3.604604,0.01295 0.552064,-0.957613 -0.539112,-0.936565 
-2.533666,-0.0065 1.274118,-2.1953041 -1.104937,-1.872322 z m 
-8.8896852,1.8609893 -2.182352,0.00648 -1.2959739,2.2341587 -3.6046044,-0.01295 
-0.5520638,0.956803 0.5391122,0.936566 2.5336653,0.0065 -1.2749274,2.193684 
1.1049371,1.873941 z m -1.7015222,3.3706657 -0.00486,0.0081 -0.00162,-0.0032 
-1.0863192,1.894178 1.2870697,2.238206 -1.8132302,3.116489 0.5536828,0.956803 H 
8.235924 l 0.00324,-0.0049 h 8.094e-4 l 1.2684517,-2.183971 1.2611669,2.201779 
2.175876,-0.02105 
 -0.0032,-0.0049 h 0.0081 z m 2.0641684,3.181247 1.096033,1.887703 
2.583853,0.0049 1.792993,3.128632 1.103318,-0.0016 0.540732,-0.935756 
-1.260357,-2.196113 2.539331,0.0065 1.068511,-1.894178 h -9.463605 z"
+     id="path4681"
+     style="stroke-width:0.809478;fill:#ffffff" />
+  <metadata
+     id="metadata5169">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:title>NixOS icon</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Mojave-gtk-theme-2023-06-13/src/assets/gnome-shell/activities-Light/activities-nixos.svg
 
new/Mojave-gtk-theme-2023-08-04/src/assets/gnome-shell/activities-Light/activities-nixos.svg
--- 
old/Mojave-gtk-theme-2023-06-13/src/assets/gnome-shell/activities-Light/activities-nixos.svg
        1970-01-01 01:00:00.000000000 +0100
+++ 
new/Mojave-gtk-theme-2023-08-04/src/assets/gnome-shell/activities-Light/activities-nixos.svg
        2023-08-03 18:13:25.000000000 +0200
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   role="img"
+   viewBox="0 0 24 24"
+   version="1.1"
+   id="svg4683"
+   sodipodi:docname="activities-nixos.svg"
+   inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:dc="http://purl.org/dc/elements/1.1/";>
+  <defs
+     id="defs4687" />
+  <sodipodi:namedview
+     id="namedview4685"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     showgrid="false"
+     inkscape:zoom="9.8333333"
+     inkscape:cx="-24.457627"
+     inkscape:cy="12.152542"
+     inkscape:window-width="1080"
+     inkscape:window-height="692"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg4683" />
+  <title
+     id="title4679">NixOS icon</title>
+  <path
+     d="M 8.2375471,3.5745508 7.1334195,3.5761698 6.5926883,4.511926 
7.8530452,6.7080392 5.3137135,6.7015633 4.2452029,8.5957413 H 13.707998 L 
12.612775,6.7080392 10.028921,6.7031823 8.2367376,3.5745508 Z m 4.9985259,0 
-2.175067,0.020237 4.732207,8.1975812 1.085509,-1.8941779 -1.287069,-2.238206 
1.81323,-3.1164893 -0.552873,-0.9568027 h -1.081463 l -1.27088,2.1896372 
-1.262785,-2.2017795 z m 5.574873,3.3957592 -4.732207,8.195962 2.182352,-0.0065 
1.295974,-2.234159 3.604604,0.01295 0.552064,-0.957613 -0.539112,-0.936565 
-2.533666,-0.0065 1.274118,-2.1953041 -1.104937,-1.872322 z m 
-8.8896852,1.8609893 -2.182352,0.00648 -1.2959739,2.2341587 -3.6046044,-0.01295 
-0.5520638,0.956803 0.5391122,0.936566 2.5336653,0.0065 -1.2749274,2.193684 
1.1049371,1.873941 z m -1.7015222,3.3706657 -0.00486,0.0081 -0.00162,-0.0032 
-1.0863192,1.894178 1.2870697,2.238206 -1.8132302,3.116489 0.5536828,0.956803 H 
8.235924 l 0.00324,-0.0049 h 8.094e-4 l 1.2684517,-2.183971 1.2611669,2.201779 
2.175876,-0.02105 
 -0.0032,-0.0049 h 0.0081 z m 2.0641684,3.181247 1.096033,1.887703 
2.583853,0.0049 1.792993,3.128632 1.103318,-0.0016 0.540732,-0.935756 
-1.260357,-2.196113 2.539331,0.0065 1.068511,-1.894178 h -9.463605 z"
+     id="path4681"
+     style="stroke-width:0.809478;fill:#383838;fill-opacity:1" />
+  <metadata
+     id="metadata5169">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:title>NixOS icon</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+</svg>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Mojave-gtk-theme-2023-06-13/src/sass/gnome-shell/common/_popovers.scss 
new/Mojave-gtk-theme-2023-08-04/src/sass/gnome-shell/common/_popovers.scss
--- old/Mojave-gtk-theme-2023-06-13/src/sass/gnome-shell/common/_popovers.scss  
2023-06-13 09:13:43.000000000 +0200
+++ new/Mojave-gtk-theme-2023-08-04/src/sass/gnome-shell/common/_popovers.scss  
2023-08-03 18:13:25.000000000 +0200
@@ -173,20 +173,20 @@
 
 // separator
 .popup-separator-menu-item {
-  padding: 0;
+  padding: 0 !important;
   background: none;
   border: none;
-  height: 1px;
+  height: 0 !important;
 
   .popup-separator-menu-item-separator {
     height: 1px; //not really the whole box
-    margin: 0 40px;
+    margin: 0 40px !important;
     background-color: $borders_color;
-    padding: 0 0;
+    padding: 0 !important;
 
     .popup-sub-menu & { //submenu separators
-      padding: 0 0;
-      margin: 0 58px 0 24px;
+      padding: 0 !important;
+      margin: 0 58px 0 24px !important;
     }
   }
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Mojave-gtk-theme-2023-06-13/src/sass/gnome-shell/widgets-40-0/_dash.scss 
new/Mojave-gtk-theme-2023-08-04/src/sass/gnome-shell/widgets-40-0/_dash.scss
--- 
old/Mojave-gtk-theme-2023-06-13/src/sass/gnome-shell/widgets-40-0/_dash.scss    
    2023-06-13 09:13:43.000000000 +0200
+++ 
new/Mojave-gtk-theme-2023-08-04/src/sass/gnome-shell/widgets-40-0/_dash.scss    
    2023-08-03 18:13:25.000000000 +0200
@@ -31,25 +31,19 @@
 .dash-background {
   background-color: $dash_background_color;
   margin-bottom: $base_padding * 2;
-  padding: $dash_padding;
+  padding: $dash_padding $dash_padding - 2px;
   spacing: $base_padding;
   border-radius: $dash_border_radius;
 }
 
 // Dash Items
-.dash-item-container .app-well-app, .show-apps {
-  padding: $dash_padding 2px $dash_padding + $base_padding * 2;
-}
-
 .dash-item-container {
-  > * { margin: 0 2px; }
+  margin: 0 2px;
 
-  &:ltr:first-child { margin-left: 0; }
-  &:rtl:first-child { margin-right: 0; }
+  > * { margin: 0; }
 
-  // each app item on the dash
-  .app-well-app .overview-icon {
-    padding: $base_padding;
+  .app-well-app, .show-apps {
+    padding: $dash_padding 0 $dash_padding + $base_padding * 2;
   }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Mojave-gtk-theme-2023-06-13/src/sass/gtk/_budgie.scss 
new/Mojave-gtk-theme-2023-08-04/src/sass/gtk/_budgie.scss
--- old/Mojave-gtk-theme-2023-06-13/src/sass/gtk/_budgie.scss   2023-06-13 
09:13:43.000000000 +0200
+++ new/Mojave-gtk-theme-2023-08-04/src/sass/gtk/_budgie.scss   2023-08-03 
18:13:25.000000000 +0200
@@ -601,9 +601,7 @@
       @at-root {
         .top .budgie-panel menubar,
         .top .budgie-panel .menubar {
-
           > menuitem {
-
             > window.background.popup > decoration,
             > window.background.popup > menu { border-radius: 0 0 $wm_radius 
$wm_radius; }
           }
@@ -639,7 +637,6 @@
   button.flat.launcher {
     padding: 0;
     @extend %flat_button;
-    @extend %underscores;
 
     // for indicator colors
     &:not(:checked) {
@@ -746,7 +743,6 @@
                           (left, 3px 6px),
                           (right, 3px 6px) {
   .#{$position} .budgie-panel {
-
     .unpinned button.flat.launcher,
     .pinned button.flat.launcher.running,
     .pinned button.launcher.running.sidebar-button {
@@ -813,10 +809,21 @@
 
   button {
     @extend %headerbar_buttons;
+
     &.image-button { @extend %circular_button; }
   }
 
-  stackswitcher { padding: 0 8px 12px 8px; }
+  stackswitcher {
+    padding: 0 8px 12px 8px;
+
+    &.linked:not(.vertical):not(.path-bar) > 
button:not(.suggested-action):not(.destructive-action):active + button {
+      border-left-color: mix(black, $header_button_active_bg, 15%);
+    }
+
+    &.linked:not(.vertical):not(.path-bar) > 
button:not(.suggested-action):not(.destructive-action):checked + button {
+      border-left-color: mix(black, $header_button_checked_bg, 15%);
+    }
+  }
 
   .raven-header {
     min-height: 36px;
@@ -896,6 +903,7 @@
     .raven-background {
       border-radius: 0 0 $raven_radius $raven_radius;
       background-color: $raven_base_color;
+      border-top: 1px solid $raven_border_color;
     }
 
     > box.vertical > box.vertical {
@@ -910,13 +918,13 @@
       }
     }
 
-    > box.vertical > box.vertical:last-child,
-    > box.vertical > widget:last-child > box.vertical { // > = 10.7
+    > box.vertical > box.vertical .mpris-widget,
+    > box.vertical > widget > box.vertical > .mpris-widget { // > = 10.7
       // FIXME: we can't crop album-art images horizontally with any borders,
       // paddings, and margins. And parent GtkBox does not sync to the size
       // of album-art dynamically while transitioning images. so set specific
       // depth-0 OSD materials for MPRIS.
-      border-radius: $raven_radius;
+      border-radius: $raven_radius - 1px;
       border: none;
       background-color: if($variant =='light', rgba(black, 0.65), rgba(black, 
0.35));
       color: rgba(white, 0.65);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Mojave-gtk-theme-2023-06-13/src/sass/gtk/_colors-public.scss 
new/Mojave-gtk-theme-2023-08-04/src/sass/gtk/_colors-public.scss
--- old/Mojave-gtk-theme-2023-06-13/src/sass/gtk/_colors-public.scss    
2023-06-13 09:13:43.000000000 +0200
+++ new/Mojave-gtk-theme-2023-08-04/src/sass/gtk/_colors-public.scss    
2023-08-03 18:13:25.000000000 +0200
@@ -80,7 +80,7 @@
 // focused window 'line'
 @define-color budgie_tasklist_indicator_color_active #{"" + 
$selected_bg_color};
 // group-ed and unfocused window 'line(s)'
-@define-color budgie_tasklist_indicator_color_active_window #{"" + 
mix($selected_bg_color, $panel_bg, 54%)};
+@define-color budgie_tasklist_indicator_color_active_window #{"" + 
mix($selected_bg_color, opacify($panel_bg, 1), 54%)};
 // attention 'dot'
 // FIXME: we can't fill whole widget backgrounds with our suggestion colour
 //        because of lacking specific style-class on 'needs_attention' state,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Mojave-gtk-theme-2023-06-13/src/sass/gtk/_common-3.0.scss 
new/Mojave-gtk-theme-2023-08-04/src/sass/gtk/_common-3.0.scss
--- old/Mojave-gtk-theme-2023-06-13/src/sass/gtk/_common-3.0.scss       
2023-06-13 09:13:43.000000000 +0200
+++ new/Mojave-gtk-theme-2023-08-04/src/sass/gtk/_common-3.0.scss       
2023-08-03 18:13:25.000000000 +0200
@@ -1995,7 +1995,7 @@
     border-top-right-radius: $wm_radius;
   }
 
-  &, & headerbar {
+  &, headerbar {
     box-shadow: inset 0 1px $highlight_color;
 
     .tiled &,
@@ -2004,9 +2004,9 @@
   }
 }
 
-window.background > box.vertical > headerbar:not(.titlebar) { // reset 
headerbar style for not CSD window
+window.background > box.vertical:not(.titlebar) > headerbar:not(.titlebar) { 
// reset headerbar style for not CSD window
   &, &:backdrop { background-image: $menubar_bg_image; }
-  border-radius: 0 0 0 0;
+  border-radius: 0;
   box-shadow: none;
 
   // Fixes split headerbars
@@ -2026,8 +2026,7 @@
 
 // Fixes split headerbars too
 .titlebar:not(headerbar) {
-  window > &,
-  window.csd > & {
+  window > & {
     &, &:backdrop {
       padding: 0;
       background: none;

Reply via email to