save before move tabs outside from header
This commit is contained in:
parent
f9397935bd
commit
94d404288f
13 changed files with 116 additions and 64 deletions
|
|
@ -25,9 +25,18 @@ button.toggle.right.open::before {
|
|||
content: "-";
|
||||
}
|
||||
|
||||
.active-tab {
|
||||
margin-top: calc(var(--unit--vertical) * 0.5);
|
||||
overflow: auto;
|
||||
max-height: calc(100vh - 7.5 * var(--unit--vertical));
|
||||
margin-bottom: calc(2 * var(--unit--vertical));
|
||||
#tabs {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.active-tab {
|
||||
position: absolute;
|
||||
overflow: auto;
|
||||
margin-top: calc(var(--unit--vertical) * 0.5);
|
||||
height: 0px;
|
||||
transition: height 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
.page-cover.open .active-tab {
|
||||
height: calc(100vh - 7.5 * var(--unit--vertical));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue