mirror of https://github.com/Chocobozzz/PeerTube
Fix: disable vertical scroll instead of hide on desktop browsers
parent
2291a412d2
commit
8110705d02
|
@ -57,6 +57,10 @@ body {
|
|||
color: pvar(--mainForegroundColor);
|
||||
background-color: pvar(--mainBackgroundColor);
|
||||
font-size: 14px;
|
||||
// On desktop browsers, make sure vertical scroll bar is always visible
|
||||
// Allow to disable the scrollbar instead of hide it when the content fit the body
|
||||
// And not move the content and header horizontally sticked to right when the content is updating
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
::selection {
|
||||
|
|
|
@ -143,6 +143,14 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// On desktop browsers, make the content and header horizontally sticked to right not move when modal open and close
|
||||
.modal-open {
|
||||
overflow-y: scroll !important; // Make sure vertical scroll bar is always visible on desktop browsers to get disabled scrollbar effect
|
||||
position: fixed; // Fix the body position to disable any scroll content
|
||||
width: 100vw; // Make sure the content fits all the available width when position: fixed
|
||||
}
|
||||
|
||||
// Nav customizations
|
||||
.nav .nav-link {
|
||||
display: flex !important;
|
||||
|
|
Loading…
Reference in New Issue