Increase transition speed for sidebars

This commit is contained in:
Sebastian Serth
2021-05-14 12:08:57 +02:00
parent 4d00d4f911
commit 6f084afe1c

View File

@ -102,8 +102,8 @@ button i.fa-spin {
} }
.sidebar-col-collapsed { .sidebar-col-collapsed {
-webkit-transition: width 2s; -webkit-transition: width .2s;
transition: width 2s; transition: width .2s;
width:67px; width:67px;
float:left; float:left;
min-height: 1px; min-height: 1px;
@ -112,8 +112,8 @@ button i.fa-spin {
} }
.sidebar-col { .sidebar-col {
-webkit-transition: width 2s; -webkit-transition: width .2s;
transition: width 2s; transition: width .2s;
width:20%; width:20%;
float:left; float:left;
min-height: 1px; min-height: 1px;
@ -129,8 +129,8 @@ button i.fa-spin {
} }
.output-col { .output-col {
-webkit-transition: width 2s; -webkit-transition: width .2s;
transition: width 2s; transition: width .2s;
width:40%; width:40%;
float:right; float:right;
min-height: 1px; min-height: 1px;
@ -141,8 +141,8 @@ button i.fa-spin {
} }
.output-col-collapsed { .output-col-collapsed {
-webkit-transition: width 2s; -webkit-transition: width .2s;
transition: width 2s; transition: width .2s;
width:67px; width:67px;
float:right; float:right;
min-height: 1px; min-height: 1px;
@ -173,16 +173,12 @@ button i.fa-spin {
} }
.description-card-collapsed { .description-card-collapsed {
-webkit-transition: width 2s;
transition: width 2s;
height: 0px; height: 0px;
visibility: hidden; visibility: hidden;
} }
.description-card { .description-card {
height: auto; height: auto;
-webkit-transition: height 2s;
transition: height 2s;
visibility: visible; visibility: visible;
} }