Hello community, here is the log from the commit of package plata-theme for openSUSE:Factory checked in at 2019-01-03 18:07:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plata-theme (Old) and /work/SRC/openSUSE:Factory/.plata-theme.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plata-theme" Thu Jan 3 18:07:25 2019 rev:3 rq:662324 version:0.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/plata-theme/plata-theme.changes 2018-12-31 09:47:32.346159958 +0100 +++ /work/SRC/openSUSE:Factory/.plata-theme.new.28833/plata-theme.changes 2019-01-03 18:07:27.788095841 +0100 @@ -1,0 +2,11 @@ +Tue Jan 1 21:20:59 UTC 2019 - Matthias Eliasson <[email protected]> + +- Update to version 0.5.1 + * Killed unneeded weird row separators in Gnome-Recipes sidebar (Gtk+ 3.2x/4.0). + * Increased category header label height in Dconf-Editor (Gtk+ 3.2x/4.0). + * Added hover state line indicators for GtkNotebook reorderable-tab class (Gtk+ 3.2x/4.0). + * Cleaned up GtkPlacesSidebar template codes (Gtk+ 3.2x/4.0). + * Replaced preset alpha values with our standard variables in Gnome-Weather styling (Gtk+ 3.2x/4.0). + * Dropped unneeded outer margins at top/bottom of GtkTreeView header button nodes (Gtk+ 3.2x/4.0). + +------------------------------------------------------------------- Old: ---- plata-theme-0.5.0.tar.gz New: ---- plata-theme-0.5.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plata-theme.spec ++++++ --- /var/tmp/diff_new_pack.gEK8KB/_old 2019-01-03 18:07:28.940094817 +0100 +++ /var/tmp/diff_new_pack.gEK8KB/_new 2019-01-03 18:07:28.960094800 +0100 @@ -1,7 +1,7 @@ # # spec file for package plata-theme # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,13 +21,13 @@ %define gtk3_min_version 3.20.0 %define gtk2_min_version 2.24.30 Name: plata-theme -Version: 0.5.0 +Version: 0.5.1 Release: 0 Summary: A Gtk+ theme based on Material Design Refresh License: GPL-2.0-only AND CC-BY-SA-4.0 Group: System/GUI/Other URL: https://gitlab.com/tista500/plata-theme -Source: https://gitlab.com/tista500/plata-theme/-/archive/%{version}/%{name}-%{version}.tar.gz#/%{name}-%{version}.tar.gz +Source: https://gitlab.com/tista500/plata-theme/-/archive/%{version}/%{name}-%{version}.tar.gz BuildRequires: autoconf BuildRequires: automake BuildRequires: fdupes ++++++ plata-theme-0.5.0.tar.gz -> plata-theme-0.5.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plata-theme-0.5.0/configure.ac new/plata-theme-0.5.1/configure.ac --- old/plata-theme-0.5.0/configure.ac 2018-12-27 07:10:26.000000000 +0100 +++ new/plata-theme-0.5.1/configure.ac 2018-12-31 05:36:17.000000000 +0100 @@ -1,6 +1,6 @@ m4_define([plata_maj_ver], [0]) m4_define([plata_mnr_ver], [5]) -m4_define([plata_mcr_ver], [0]) +m4_define([plata_mcr_ver], [1]) m4_define([plata_version], [plata_maj_ver.plata_mnr_ver.plata_mcr_ver]) m4_define([plata_git_url], [https://gitlab.com/tista500/plata-theme]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plata-theme-0.5.0/src/gtk/sass/common/_common.scss new/plata-theme-0.5.1/src/gtk/sass/common/_common.scss --- old/plata-theme-0.5.0/src/gtk/sass/common/_common.scss 2018-12-27 07:10:26.000000000 +0100 +++ new/plata-theme-0.5.1/src/gtk/sass/common/_common.scss 2018-12-31 05:36:17.000000000 +0100 @@ -2706,6 +2706,7 @@ %column_header_button { min-height: $menuitem_height; + margin: unset; // stop conflicting with 'notebook header button' nodes padding: 0 rem($menuitem_padding); border-style: none solid solid none; border-width: 1px; @@ -3186,8 +3187,10 @@ background-color: transparent; &:hover { border-color: $div_fg; + border-#{$_tab}-color: $trk_out_fg; border-#{$_border}-color: transparent; background-color: mix($base, $bg); + box-shadow: inset #{$_line} $trk_out_fg; } &:checked { border-color: $div_fg; @@ -4846,21 +4849,17 @@ } %selected_sidebar_row { - color: $sel_label; - background-color: $trk_bg; &:dir(ltr) { @include radius(0 $r $r 0); } &:dir(rtl) { @include radius($r 0 0 $r); } - label { color: $sel_label; } - - &:hover { + &, &:hover { background-color: $trk_bg; color: $sel_label; label { color: $sel_label; } } - button.flat { + button { color: track($sel_label, $a_fg_2nd); &:hover, &:active, @@ -4931,15 +4930,6 @@ // Needs overriding of the GtkListBoxRow padding // Actual padding is embedded into child elements @extend %sidebar_row_template; - &:selected { - button.image-button { - color: track($sel_label, $a_fg_2nd); - &:hover, // use opaque and brighter color - &:active { - color: $sel_label; - } - } - } // Using margins/padding directly in the row // will make the animation of the new bookmark row jump diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plata-theme-0.5.0/src/gtk/sass/common/_misc.scss new/plata-theme-0.5.1/src/gtk/sass/common/_misc.scss --- old/plata-theme-0.5.0/src/gtk/sass/common/_misc.scss 2018-12-27 07:10:26.000000000 +0100 +++ new/plata-theme-0.5.1/src/gtk/sass/common/_misc.scss 2018-12-31 05:36:17.000000000 +0100 @@ -2196,25 +2196,25 @@ $_mask_alpha, $_mix_pct in (clear, - $fix_fg, $sel_fg, $sel_fg, 0.5, 0.1, 100%), + $fix_fg, $sel_fg, $sel_fg, $a_fg_3rd, $a_trk_1, 100%), (few-clouds, - $fix_fg, $sel_fg, $sel_fg, 0.5, 0.1, 10%), + $fix_fg, $sel_fg, $sel_fg, $a_fg_3rd, $a_trk_1, 10%), (showers, - $sel_fg, $fix_fg, $fix_fg, 0.75, 0.1, 50%), + $sel_fg, $fix_fg, $fix_fg, $a_fg_2nd, $a_trk_1, 50%), (showers-scattered, - $sel_fg, $fix_fg, $fix_fg, 0.75, 0.1, 50%), + $sel_fg, $fix_fg, $fix_fg, $a_fg_2nd, $a_trk_1, 50%), (storm, - $sel_fg, $fix_fg, $fix_fg, 0.75, 0.1, 50%), + $sel_fg, $fix_fg, $fix_fg, $a_fg_2nd, $a_trk_1, 50%), (overcast, - $fix_fg, $sel_fg, $inv_fg, 0.75, 0.5, 75%), + $fix_fg, $sel_fg, $inv_fg, $a_fg_2nd, $a_fg_3rd, 75%), (fog, - $fix_fg, $sel_fg, $inv_fg, 0.75, 0.5, 75%), + $fix_fg, $sel_fg, $inv_fg, $a_fg_2nd, $a_fg_3rd, 75%), (snow, - $sel_fg, $link_fg, $sel_fg, 0.5, 0.1, 80%), + $sel_fg, $link_fg, $sel_fg, $a_fg_3rd, $a_trk_1, 80%), (few-clouds-night, - $sel_fg, $link_fg, $sel_fg, 0.5, 0.1, 80%), + $sel_fg, $link_fg, $sel_fg, $a_fg_3rd, $a_trk_1, 80%), (clear-night, - $inv_acc_fg, $sel_fg, $sel_fg, 0.75, 0.1, 100%) { + $inv_acc_fg, $sel_fg, $sel_fg, $a_fg_2nd, $a_trk_1, 100%) { &.weather-#{$_condition} { button.radio.text-button, @@ -2461,6 +2461,8 @@ > grid.vertical { // grid node for headers background-color: $bg; + + label.header-label { min-height: rem($widget_size); } // increase title height } } @@ -2761,17 +2763,19 @@ &:dir(rtl) { border-left: 1px solid $div_fg; } > row.activatable { - background-color: transparent; + margin: -1px 0; // kill stock CSS's border settings + padding: 0; color: $sec_fg; > label.sidebar { color: $sec_fg; font-weight: 500; + // FIXME: outset 1px solid shadows for covering ugly hard-coded + // separators + box-shadow: 0 -1px $bg; } &:hover { - background-color: $trk_bg; - &, > label.sidebar { color: $fg; } } &:active, @@ -2838,14 +2842,20 @@ &:dir(ltr) { margin-right: 12px; - box.name.recipe { border-top-right-radius: $r_4; } + box, + label { // labels also have solid background + &.name.recipe { border-top-right-radius: $r_4; } + } label.author.recipe { border-bottom-right-radius: $r_4; } } &:dir(rtl) { margin-left: 12px; - box.name.recipe { border-top-left-radius: $r_4; } + box, + label { + &.name.recipe { border-top-left-radius: $r_4; } + } label.author.recipe { border-bottom-left-radius: $r_4; } }
