From 603b6266dc4eaa61c251930bd13c6d3539915a4c Mon Sep 17 00:00:00 2001 From: EliverLara Date: Sun, 5 Apr 2020 12:40:38 -0500 Subject: [PATCH] Fix sidebar transition issue #69 --- gtk-3.0/_common.scss | 1 - gtk-3.0/gtk-dark.css | 3 +-- gtk-3.0/gtk.css | 3 +-- gtk-3.0/widgets/_sidebar.scss | 1 - 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/gtk-3.0/_common.scss b/gtk-3.0/_common.scss index 37e9a9a..e0e9303 100755 --- a/gtk-3.0/_common.scss +++ b/gtk-3.0/_common.scss @@ -9,7 +9,6 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); $asset_suffix: if($variant=='dark', '-dark', ''); $backdrop_transition: 200ms ease-out; -$sidebar_backdrop_transition: 200ms $ease-out-quad; $button_transition: all 200ms $ease-out-quad; * { diff --git a/gtk-3.0/gtk-dark.css b/gtk-3.0/gtk-dark.css index cc3a26f..fc1a78e 100755 --- a/gtk-3.0/gtk-dark.css +++ b/gtk-3.0/gtk-dark.css @@ -4005,8 +4005,7 @@ treeview ~ scrollbar.vertical { border-right-style: none; } .sidebar:backdrop { background-color: #1c2124; - border-color: rgba(14, 16, 23, 0.82); - transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + border-color: rgba(14, 16, 23, 0.82); } .sidebar.source-list { background: #16191b; padding: 4px 0px; } diff --git a/gtk-3.0/gtk.css b/gtk-3.0/gtk.css index cc3a26f..fc1a78e 100755 --- a/gtk-3.0/gtk.css +++ b/gtk-3.0/gtk.css @@ -4005,8 +4005,7 @@ treeview ~ scrollbar.vertical { border-right-style: none; } .sidebar:backdrop { background-color: #1c2124; - border-color: rgba(14, 16, 23, 0.82); - transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + border-color: rgba(14, 16, 23, 0.82); } .sidebar.source-list { background: #16191b; padding: 4px 0px; } diff --git a/gtk-3.0/widgets/_sidebar.scss b/gtk-3.0/widgets/_sidebar.scss index 9f81990..4beb21d 100644 --- a/gtk-3.0/widgets/_sidebar.scss +++ b/gtk-3.0/widgets/_sidebar.scss @@ -28,7 +28,6 @@ &:backdrop { background-color: $backdrop_sidebar_bg_color; border-color: $backdrop_borders_color; - transition: $sidebar_backdrop_transition; }