Compare commits

...
This repository has been archived on 2026-01-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

4 commits

Author SHA1 Message Date
Till Maas
a94058e933 2017-02-17: Retired orphaned package, because it was orphaned for
more than six weeks.
2017-02-17 21:30:38 +01:00
leigh123linux
8bc895a1ac obsolete gnome-shell theme 2015-12-04 10:26:36 +00:00
leigh123linux
eab941d30f Revert "mainly cinnamon-settings tweaks"
This reverts commit 1a7e59edee.
2015-08-25 16:29:57 +01:00
leigh123linux
1a7e59edee mainly cinnamon-settings tweaks 2015-08-25 16:27:27 +01:00
9 changed files with 3 additions and 532 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
/zukitwo_by_lassekongo83-d3df2ot.zip

3
dead.package Normal file
View file

@ -0,0 +1,3 @@
2017-02-17: Retired orphaned package, because it was orphaned for
more than six weeks.

View file

@ -1,12 +0,0 @@
--- a/Zukitwo/gtk-3.0/gtk-widgets.css 2014-10-22 09:04:18.000000000 +0100
+++ b/Zukitwo/gtk-3.0/gtk-widgets.css 2015-04-01 13:52:00.725895000 +0100
@@ -134,7 +134,8 @@ GtkTextView {
/************
* Tooltips *
************/
-.tooltip {
+.tooltip,
+.tooltip.background {
padding: 4px;
border-style: solid;
border-width: 1px;

View file

@ -1,209 +0,0 @@
From 0b8043ccdcfd689820d2bc492e1880f1d17a99f0 Mon Sep 17 00:00:00 2001
From: leigh123linux <leigh123linux@googlemail.com>
Date: Fri, 3 Jul 2015 17:06:30 +0100
Subject: [PATCH] make overshoot look good
---
Zukitwo/gtk-3.0/gtk-widgets.css | 184 +++++++++++++++++++++++++++++++++++++++-
1 file changed, 181 insertions(+), 3 deletions(-)
diff --git a/Zukitwo/gtk-3.0/gtk-widgets.css b/Zukitwo/gtk-3.0/gtk-widgets.css
index cc44908..2ae3ede 100644
--- a/Zukitwo/gtk-3.0/gtk-widgets.css
+++ b/Zukitwo/gtk-3.0/gtk-widgets.css
@@ -183,11 +183,189 @@ GtkTextView {
border-radius: 0px;
}
-.overshoot,
-.sidebar.overshoot {
- background-color: alpha (@theme_selected_bg_color, 0.35);
+/************************
+ * overshoot/undershoot *
+ ************************/
+
+/* displays at end of mouse scrolling */
+.overshoot.top {
+ background-image: -gtk-gradient(radial,
+ center top, 0,
+ center top, 0.5,
+ to(@overshoot_bg_color),
+ to(rgba(137, 158, 179, 0))),
+ -gtk-gradient(radial,
+ center top, 0,
+ center top, 0.6,
+ from(rgba(56, 73, 87, 0.17)),
+ to(rgba(56, 73, 87, 0)));
+ background-size: 100% 5%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: center top;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+.overshoot.top:backdrop {
+ background-image: -gtk-gradient(radial,
+ center top, 0,
+ center top, 0.5,
+ to(@overshoot_backdrop_bg_color),
+ to(rgba(131, 137, 145, 0)));
+ background-size: 100% 5%;
+ background-repeat: no-repeat;
+ background-position: center top;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+.overshoot.bottom {
+ background-image: -gtk-gradient(radial,
+ center bottom, 0,
+ center bottom, 0.5,
+ to(@overshoot_bg_color),
+ to(rgba(137, 158, 179, 0))),
+ -gtk-gradient(radial,
+ center bottom, 0,
+ center bottom, 0.6,
+ from(rgba(56, 73, 87, 0.17)),
+ to(rgba(56, 73, 87, 0)));
+ background-size: 100% 5%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: center bottom;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+.overshoot.bottom:backdrop {
+ background-image: -gtk-gradient(radial,
+ center bottom, 0,
+ center bottom, 0.5,
+ to(@overshoot_backdrop_bg_color),
+ to(rgba(131, 137, 145, 0)));
+ background-size: 100% 5%;
+ background-repeat: no-repeat;
+ background-position: center bottom;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+.overshoot.left {
+ background-image: -gtk-gradient(radial,
+ left center, 0,
+ left center, 0.5,
+ to(@overshoot_bg_color),
+ to(rgba(137, 158, 179, 0))),
+ -gtk-gradient(radial,
+ left center, 0,
+ left center, 0.6,
+ from(rgba(56, 73, 87, 0.07)),
+ to(rgba(56, 73, 87, 0)));
+ background-size: 5% 100%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: left center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+.overshoot.left:backdrop {
+ background-image: -gtk-gradient(radial,
+ left center, 0,
+ left center, 0.5,
+ to(@overshoot_backdrop_bg_color),
+ to(rgba(131, 137, 145, 0)));
+ background-size: 5% 100%;
+ background-repeat: no-repeat;
+ background-position: left center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+.overshoot.right {
+ background-image: -gtk-gradient(radial,
+ right center, 0,
+ right center, 0.5,
+ to(@overshoot_bg_color),
+ to(rgba(137, 158, 179, 0))),
+ -gtk-gradient(radial,
+ right center, 0,
+ right center, 0.6,
+ from(rgba(56, 73, 87, 0.07)),
+ to(rgba(56, 73, 87, 0)));
+ background-size: 5% 100%, 100% 100%;
+ background-repeat: no-repeat;
+ background-position: right center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+.overshoot.right:backdrop {
+ background-image: -gtk-gradient(radial,
+ right center, 0,
+ right center, 0.5,
+ to(@overshoot_backdrop_bg_color),
+ to(rgba(131, 137, 145, 0)));
+ background-size: 5% 100%;
+ background-repeat: no-repeat;
+ background-position: right center;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
+}
+
+/* result is disable undershoot */
+.undershoot.top {
+ background-color: transparent;
+ background-image: linear-gradient(to left,
+ rgba(255, 255, 255, 0.2) 50%,
+ rgba(0, 0, 0, 0.2) 50%);
+ background-size: 10px 0px;
+ background-repeat: repeat-x;
+ background-origin: content-box;
+ background-position: center top;
+}
+
+.undershoot.bottom {
+ background-color: transparent;
+ background-image: linear-gradient(to left,
+ rgba(255, 255, 255, 0.2) 50%,
+ rgba(0, 0, 0, 0.2) 50%);
+ background-size: 10px 0px;
+ background-repeat: repeat-x;
+ background-origin: content-box;
+ background-position: center bottom;
+}
+
+.undershoot.left {
+ background-color: transparent;
+ background-image: linear-gradient(to top,
+ rgba(255, 255, 255, 0.2) 50%,
+ rgba(0, 0, 0, 0.2) 50%);
+ background-size: 0px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: left center;
+}
+
+.undershoot.right {
+ background-color: transparent;
+ background-image: linear-gradient(to top,
+ rgba(255, 255, 255, 0.2) 50%,
+ rgba(0, 0, 0, 0.2) 50%);
+ background-size: 0px 10px;
+ background-repeat: repeat-y;
+ background-origin: content-box;
+ background-position: right center;
}
+
GtkStatusbar {
padding: 5px;
color: @theme_fg_color;
--
2.4.3

View file

@ -1,12 +0,0 @@
--- a/Zukitwo/gtk-3.0/gtk-widgets.css 2015-07-04 06:00:02.000000000 +0100
+++ b/Zukitwo/gtk-3.0/gtk-widgets.css 2015-07-15 15:42:18.862738729 +0100
@@ -2020,8 +2020,8 @@ GtkFileChooserButton GtkImage:last-child
background-image: none;
border-style: solid;
-GtkRange-trough-border: 0;
- -GtkScrollbar-has-backward-stepper: false;
- -GtkScrollbar-has-forward-stepper: false;
+ -GtkScrollbar-has-backward-stepper: true;
+ -GtkScrollbar-has-forward-stepper: true;
-GtkRange-slider-width: 13;
-GtkScrollbar-min-slider-length: 42; /* minimum size for the slider. sadly can't be in '.slider' where it belongs */

View file

@ -1,22 +0,0 @@
--- a/Zukitwo/gtk-3.0/gtk-widgets.css 2015-04-07 13:54:37.432443000 +0100
+++ b/Zukitwo/gtk-3.0/gtk-widgets.css 2015-04-07 13:57:10.805998436 +0100
@@ -183,7 +183,8 @@ GtkTextView {
border-radius: 0px;
}
-.overshoot {
+.overshoot,
+.sidebar.overshoot {
background-color: alpha (@theme_selected_bg_color, 0.35);
}
@@ -2552,8 +2553,7 @@ GtkMessageDialog {
* Sidebar *
***********/
.sidebar,
-.sidebar .view,
-.sidebar GtkScrolledWindow {
+.sidebar .view {
background-color: @sidebar_bg;
}

View file

@ -1 +0,0 @@
1e573dbe63407aaa607d2d1e8e11839b zukitwo_by_lassekongo83-d3df2ot.zip

View file

@ -1,8 +0,0 @@
--- a/Zukitwo/gtk-3.0/gtk-main.css 2014-10-17 09:49:30.000000000 +0100
+++ b/Zukitwo/gtk-3.0/gtk-main.css 2015-01-21 18:47:32.164666791 +0000
@@ -219,5 +219,4 @@
@import url("gtk-widgets.css");
/*@import url("gnome-applications.css");*/
@import url("other-applications.css");
-@import url("unity.css");
@import url("window-controls.css");

View file

@ -1,267 +0,0 @@
%global theme_name Zukitwo
%global shell_name ZukiShell
%global deviantart_id 203936861
%global author lassekongo83
%global tag d3df2ot
Name: zukitwo
Version: 20141022
Release: 9%{?dist}
Summary: Themes for GTK+2, GTK+3, Metacity, GNOME Shell and Xfwm4
Group: User Interface/Desktops
License: GPLv3
URL: http://%{author}.deviantart.com/art/%{theme_name}-%{deviantart_id}
Source0: http://www.deviantart.com/download/%{deviantart_id}/%{name}_by_%{author}-%{tag}.zip
# This patch removes two references to Unity-related stuff from
# Zukitwo/gtk-3.0/gtk.css
Patch0: %{name}-rm_unity.patch
Patch1: firefox_tooltip.patch
Patch2: sidebar_fix.patch
Patch3: make-overshoot-look-good.patch
Patch4: readd_scrollbar_stepper.patch
BuildArch: noarch
%description
The %{theme_name} themes for GTK+2, GTK+3, Metacity, GNOME Shell and Xfwm4,
created by %{author}.
%package common
Summary: Files common to %{theme_name} themes
Group: User Interface/Desktops
%description common
Files which are common to all %{theme_name} themes.
%package gtk2-theme
Summary: %{theme_name} GTK+2 themes
Group: User Interface/Desktops
Requires: %{name}-common = %{version}-%{release}, gtk-murrine-engine >= 0.98.1.1, gtk2-engines
%description gtk2-theme
Themes for GTK+2 as part of the %{theme_name} theme.
%package gtk3-theme
Summary: %{theme_name} GTK+3 themes
Group: User Interface/Desktops
Requires: %{name}-common = %{version}-%{release}
%description gtk3-theme
Themes for GTK+3 as part of the %{theme_name} theme.
%package metacity-theme
Summary: %{theme_name} Metacity themes
Group: User Interface/Desktops
Requires: %{name}-common = %{version}-%{release}, metacity
%description metacity-theme
Themes for Metacity as part of the %{theme_name} theme.
%package -n gnome-shell-theme-%{name}
Summary: %{theme_name} GNOME Shell theme
Group: User Interface/Desktops
Requires: %{name}-common = %{version}-%{release}, gnome-shell-extension-user-theme >= 3.10, google-droid-sans-fonts
%description -n gnome-shell-theme-%{name}
%{theme_name} GNOME Shell theme.
%package xfwm4-theme
Summary: %{theme_name} Xfwm4 themes
Group: User Interface/Desktops
Requires: %{name}-common = %{version}-%{release}, xfwm4
%description xfwm4-theme
Themes for Xfwm4 as part of the %{theme_name} theme.
%prep
%setup -q -c -n %{name}_by_%{author}-%{tag}
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
# Remove "Thumbs.db" files
find . -name Thumbs.db -type f -exec rm -f '{}' \;
# Fix end-of-line encoding of "README"
sed -i 's/\r//' README
# Fix text encoding of "README"
iconv -f iso8859-1 -t utf-8 README > README.conv && mv -f README.conv README
# Remove Unity stuff
rm %{theme_name}/gtk-3.0/unity.css
rm -r %{theme_name}/unity/
%build
# Nothing to build
%install
mkdir -p -m755 %{buildroot}%{_datadir}/themes/%{theme_name}
cp -pr %{theme_name}/* %{buildroot}%{_datadir}/themes/%{theme_name}
mkdir -p -m755 %{buildroot}%{_datadir}/themes/%{theme_name}/gnome-shell
cp -pr %{shell_name}/gnome-shell/* %{buildroot}%{_datadir}/themes/%{theme_name}/gnome-shell
%files common
%doc COPYING README
%dir %{_datadir}/themes/%{theme_name}/
%{_datadir}/themes/%{theme_name}/index.theme
%files gtk2-theme
%{_datadir}/themes/%{theme_name}/gtk-2.0/
%files gtk3-theme
%{_datadir}/themes/%{theme_name}/gtk-3.0/
%files metacity-theme
%{_datadir}/themes/%{theme_name}/metacity-1/
%files -n gnome-shell-theme-%{name}
%{_datadir}/themes/%{theme_name}/gnome-shell/
%files xfwm4-theme
%{_datadir}/themes/%{theme_name}/xfwm4/
%changelog
* Wed Jul 15 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-9
- revert last change
* Wed Jul 15 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-8
- more scrollbar tweaks
* Wed Jul 15 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-7
- readd scrollbar stepper
* Sat Jul 04 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-6
- add patch to make overshoot look good
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20141022-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Thu May 14 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-4
- readd index.theme
* Thu May 14 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-3
- fix sidebar
* Thu Apr 02 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-2
- fix firefox tooltip
* Wed Jan 21 2015 Leigh Scott <leigh123linux@googlemail.com> - 20141022-1
- Update to latest upstream version
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20131210-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sat Dec 14 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20131210-1
- Update to latest upstream version
* Sun Nov 24 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20131107-1
- Update to latest upstream version
* Wed Oct 16 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20131012-1
- Update to latest upstream version (compatible with Gnome >= 3.10)
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20130424-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Sat May 11 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20130424-1
- Update to latest upstream version
* Fri Apr 19 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20130418-1
- Update to latest upstream version
* Sat Apr 13 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20130329-1
- Update to latest upstream version (compatible with Gnome >= 3.8)
* Sat Feb 16 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20130207-1
- Update to latest upstream version
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20121216-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Sun Jan 13 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20121216-2
- Correct Spec file
* Sun Jan 13 2013 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20121216-1
- Update to latest upstream version
* Thu Dec 13 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20121211-1
- Update to latest upstream version
- Change font package required by gnome-shell-theme-zukitwo from liberation-sans-fonts to google-droid-sans-fonts
* Sat Dec 08 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20121207-1
- Update to latest upstream version
- Remove everything related to "Zukitwo-Dark"
- Remove fields "Provides" and "Obsoletes"
- Update requirements
* Tue Nov 20 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120817-3
- Add fields "Provides" and "Obsoletes" to the "common" subpackage
* Sun Nov 04 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120817-2
- Package the GNOME Shell theme only for Fedora up to 17
* Fri Aug 17 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120817-1
- Update to latest upstream version
* Sun Aug 05 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120708-5
- Correct an error in .spec file
* Sat Aug 04 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120708-4
- Replace a copy of the directory containing the Gnome Shell theme with a symbolic link to the other
* Sat Aug 04 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120708-3
- Add a "common" subpackage which owns files and directories that are common to all themes
- Change directory structure
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120708-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Sun Jul 15 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120708-1
- Update to latest upstream version
* Sat Jul 07 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120702-1
- Update to latest upstream version
* Mon Jun 18 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120612-1
- Update to latest upstream version
* Sat Jun 09 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120607-1
- Update to latest upstream version
- Add a patch to remove "Ubuntu" and "Trebuchet MS" from "font-family" in gnome-shell.css and two references to Unity-related stuff.
* Tue Jun 05 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120602-2
- Add google-droid-sans-fonts as a requirement for gnome-shell-theme-zukitwo
- Add a patch to remove "Ubuntu" from "font-family" in gnome-shell.css
* Sun Jun 03 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120602-1
- Update to latest upstream version
- Change "License" from "GPLv3+" to "GPLv3" in Spec file
* Sat May 26 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120526-1
- Update to latest upstream version
* Fri May 25 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120523-1
- Update to latest upstream version
* Sat May 19 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120516-1
- Update to latest upstream version
* Sat May 12 2012 Mattia Meneguzzo <odysseus@fedoraproject.org> - 20120511-1
- Initial package for Fedora (thanks to Tim Lauridsen and Mohamed El Morabity for their precious help)