Hello community,
here is the log from the commit of package greybird-geeko-theme for
openSUSE:Factory checked in at 2020-12-03 18:40:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/greybird-geeko-theme (Old)
and /work/SRC/openSUSE:Factory/.greybird-geeko-theme.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "greybird-geeko-theme"
Thu Dec 3 18:40:46 2020 rev:9 rq:851941 version:3.22.11+git2.751e0f3
Changes:
--------
---
/work/SRC/openSUSE:Factory/greybird-geeko-theme/greybird-geeko-theme.changes
2020-08-12 10:55:51.880724463 +0200
+++
/work/SRC/openSUSE:Factory/.greybird-geeko-theme.new.5913/greybird-geeko-theme.changes
2020-12-03 18:41:57.174116599 +0100
@@ -1,0 +2,6 @@
+Sat Nov 28 13:13:10 UTC 2020 - [email protected]
+
+- Update to version 3.22.11+git2.751e0f3:
+ * Rebase parts of the %linked code
+
+-------------------------------------------------------------------
Old:
----
Greybird-Geeko-3.22.11+git1.968e3b5.tar.xz
New:
----
Greybird-Geeko-3.22.11+git2.751e0f3.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ greybird-geeko-theme.spec ++++++
--- /var/tmp/diff_new_pack.5ln8x2/_old 2020-12-03 18:41:57.854117028 +0100
+++ /var/tmp/diff_new_pack.5ln8x2/_new 2020-12-03 18:41:57.858117031 +0100
@@ -21,7 +21,7 @@
%define _name Greybird-Geeko
Name: greybird-geeko-theme
-Version: 3.22.11+git1.968e3b5
+Version: 3.22.11+git2.751e0f3
Release: 0
URL: https://github.com/shimmerproject/Greybird-Geeko
Summary: A grey theme for GNOME, XFCE, GTK+ 2 and 3
++++++ Greybird-Geeko-3.22.11+git1.968e3b5.tar.xz ->
Greybird-Geeko-3.22.11+git2.751e0f3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Greybird-Geeko-3.22.11+git1.968e3b5/light/gtk-3.0/_common.scss
new/Greybird-Geeko-3.22.11+git2.751e0f3/light/gtk-3.0/_common.scss
--- old/Greybird-Geeko-3.22.11+git1.968e3b5/light/gtk-3.0/_common.scss
2020-08-03 09:43:12.000000000 +0200
+++ new/Greybird-Geeko-3.22.11+git2.751e0f3/light/gtk-3.0/_common.scss
2020-11-26 04:56:13.000000000 +0100
@@ -6,6 +6,7 @@
$asset_suffix: if($variant=='dark', '-dark', '');
$backdrop_transition: 200ms ease-out;
$button_transition: all 200ms $ease-out-quad;
+$button_radius: 3px;
* {
padding: 0;
@@ -869,65 +870,105 @@
}
// More inline toolbar buttons
-toolbar.inline-toolbar toolbutton,
-toolbar.inline-toolbar toolbutton:backdrop {
+toolbar.inline-toolbar toolbutton {
> button.flat { @extend %linked_middle; }
- &:first-child > button.flat { @extend %linked:first-child; }
+ &:first-child > button.flat { @extend %linked_left; }
- &:last-child > button.flat { @extend %linked:last-child; }
+ &:last-child > button.flat { @extend %linked_right; }
- &:only-child > button.flat { @extend %linked:only-child; }
+ &:only-child > button.flat { @extend %linked_only_child; }
}
%linked_middle {
- border-radius: 0;
border-right-style: none;
+ border-radius: 0;
+ -gtk-outline-radius: 0;
+}
+
+%linked_left {
+ border-top-left-radius: $button_radius;
+ border-bottom-left-radius: $button_radius;
+ -gtk-outline-top-left-radius: $button_radius;
+ -gtk-outline-bottom-left-radius: $button_radius;
+}
+
+%linked_right {
+ border-right-style: solid;
+ border-top-right-radius: $button_radius;
+ border-bottom-right-radius: $button_radius;
+ -gtk-outline-top-right-radius: $button_radius;
+ -gtk-outline-bottom-right-radius: $button_radius;
+}
+
+%linked_only_child {
+ border-style: solid;
+ border-radius: $button_radius;
+ -gtk-outline-radius: $button_radius;
}
+// .linked assumes Box, which reverses nodes in RTL, so 1st child is always
left
%linked {
@extend %linked_middle;
- &:first-child {
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px;
- }
+ &:first-child { @extend %linked_left; }
+ &:last-child { @extend %linked_right; }
- &:last-child {
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
- border-right-style: solid;
+ &:only-child { @extend %linked_only_child; }
+}
+
+// Other widgets use widget child order, so 1st/last child are at text
start/end
+%linked_flippable {
+ @extend %linked_middle;
+
+ &:dir(ltr) {
+ &:first-child { @extend %linked_left; }
+ &:last-child { @extend %linked_right; }
}
- &:only-child {
- border-radius: 3px;
- border-style: solid;
+ &:dir(rtl) {
+ &:first-child { @extend %linked_right; }
+ &:last-child { @extend %linked_left; }
}
+
+ &:only-child { @extend %linked_only_child; }
}
%linked_vertical_middle {
border-style: solid solid none solid;
border-radius: 0;
+ -gtk-outline-radius: 0;
+}
+
+%linked_vertical_top {
+ border-top-left-radius: $button_radius;
+ border-top-right-radius: $button_radius;
+ -gtk-outline-top-left-radius: $button_radius;
+ -gtk-outline-top-right-radius: $button_radius;
+}
+
+%linked_vertical_bottom {
+ border-bottom-style: solid;
+ border-bottom-left-radius: $button_radius;
+ border-bottom-right-radius: $button_radius;
+ -gtk-outline-bottom-left-radius: $button_radius;
+ -gtk-outline-bottom-right-radius: $button_radius;
}
-%linked_vertical{
+%linked_vertical_only_child {
+ border-style: solid;
+ border-radius: $button_radius;
+ -gtk-outline-radius: $button_radius;
+}
+
+%linked_vertical {
@extend %linked_vertical_middle;
- &:first-child {
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
- }
+ &:first-child { @extend %linked_vertical_top; }
- &:last-child {
- border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
- border-style: solid;
- }
+ &:last-child { @extend %linked_vertical_bottom; }
- &:only-child {
- border-radius: 3px;
- border-style: solid;
- }
+ &:only-child { @extend %linked_vertical_only_child; }
}
%undecorated_button {
++++++ Greybird-Geeko.obsinfo ++++++
--- /var/tmp/diff_new_pack.5ln8x2/_old 2020-12-03 18:42:00.250118539 +0100
+++ /var/tmp/diff_new_pack.5ln8x2/_new 2020-12-03 18:42:00.254118541 +0100
@@ -1,5 +1,5 @@
name: Greybird-Geeko
-version: 3.22.11+git1.968e3b5
-mtime: 1596440592
-commit: 968e3b56f794efb7bc2ba06ac3eca0b4a0927408
+version: 3.22.11+git2.751e0f3
+mtime: 1606362973
+commit: 751e0f378cfc9b1138279f50e7f117f7b9a1c230
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.5ln8x2/_old 2020-12-03 18:42:00.306118574 +0100
+++ /var/tmp/diff_new_pack.5ln8x2/_new 2020-12-03 18:42:00.310118576 +0100
@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://github.com/shimmerproject/Greybird-Geeko.git</param>
- <param
name="changesrevision">968e3b56f794efb7bc2ba06ac3eca0b4a0927408</param></service></servicedata>
\ No newline at end of file
+ <param
name="changesrevision">53e104cb2ce616c185047d67e42609940d390aa6</param></service></servicedata>
\ No newline at end of file
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives:
https://lists.opensuse.org/archives/list/[email protected]