Fix sidebar transition issue #69

This commit is contained in:
EliverLara
2020-04-05 12:40:38 -05:00
parent b12f7de05a
commit 603b6266dc
4 changed files with 2 additions and 6 deletions

View File

@@ -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;
* {

View File

@@ -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; }

View File

@@ -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; }

View File

@@ -28,7 +28,6 @@
&:backdrop {
background-color: $backdrop_sidebar_bg_color;
border-color: $backdrop_borders_color;
transition: $sidebar_backdrop_transition;
}