mirror of
https://github.com/flarum/framework.git
synced 2025-01-19 18:12:59 +08:00
Ensure that the sidepane positions correctly with custom layout
This commit is contained in:
parent
a9d4be8c0b
commit
639c37f34a
|
@ -71,11 +71,11 @@
|
|||
.DiscussionPage-list {
|
||||
left: -@pane-width;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
z-index: @zindex-pane;
|
||||
overflow: auto;
|
||||
top: @header-height;
|
||||
bottom: 0;
|
||||
height: ~"calc(100vh - @{header-height})";
|
||||
width: @pane-width;
|
||||
background: @body-bg;
|
||||
padding-bottom: 40px;
|
||||
|
@ -83,6 +83,11 @@
|
|||
.box-shadow(2px 2px 6px -2px @shadow-color);
|
||||
.transition(left 0.2s);
|
||||
|
||||
.affix & {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
height: auto;
|
||||
}
|
||||
.paneShowing & {
|
||||
left: 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user