ui: Fixes an issue with the version footer when scrolling (#11850)
This commit is contained in:
parent
62967ece3d
commit
ad0afe3f60
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:bugfix
|
||||||
|
ui: Fixes an issue with the version footer wandering when scrolling
|
||||||
|
```
|
|
@ -4,9 +4,6 @@
|
||||||
.app .notifications {
|
.app .notifications {
|
||||||
@extend %app-notifications;
|
@extend %app-notifications;
|
||||||
}
|
}
|
||||||
.app footer {
|
|
||||||
@extend %footer;
|
|
||||||
}
|
|
||||||
%app-notifications {
|
%app-notifications {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -31,6 +28,9 @@
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[role='contentinfo'] {
|
||||||
|
@extend %footer;
|
||||||
|
}
|
||||||
[role='banner'] {
|
[role='banner'] {
|
||||||
@extend %main-header-horizontal;
|
@extend %main-header-horizontal;
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ main {
|
||||||
@extend %transition-pushover;
|
@extend %transition-pushover;
|
||||||
}
|
}
|
||||||
%footer {
|
%footer {
|
||||||
position: absolute;
|
position: fixed;
|
||||||
z-index: 50;
|
z-index: 50;
|
||||||
|
|
||||||
color: rgb(var(--tone-gray-400));
|
color: rgb(var(--tone-gray-400));
|
||||||
|
@ -77,11 +77,11 @@ main {
|
||||||
width: 250px;
|
width: 250px;
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
}
|
}
|
||||||
.app footer {
|
%footer {
|
||||||
top: calc(100vh - 42px);
|
top: calc(100vh - 42px);
|
||||||
top: calc(max(100vh, 460px) - 42px);
|
top: calc(max(100vh, 460px) - 42px);
|
||||||
}
|
}
|
||||||
html.has-partitions.has-nspaces .app footer {
|
html.has-partitions.has-nspaces .app [role='contentinfo'] {
|
||||||
top: calc(100vh - 42px);
|
top: calc(100vh - 42px);
|
||||||
top: calc(max(100vh, 640px) - 42px);
|
top: calc(max(100vh, 640px) - 42px);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue