Skip to content
Snippets Groups Projects
Commit 2d0b228a authored by Simon Künzel's avatar Simon Künzel
Browse files

Disable scrolling background when modal is open

parent 206e85f5
No related branches found
No related tags found
No related merge requests found
...@@ -89,6 +89,11 @@ $link-decoration: none; ...@@ -89,6 +89,11 @@ $link-decoration: none;
} }
} }
// Prevent background scrolling while modal is open
html:has(> body.modal-open) {
overflow: hidden;
}
// table td, tr // table td, tr
.table> :not(caption)>*>* { .table> :not(caption)>*>* {
background-color: inherit; // this fixes tables messing up background colors of parent elements background-color: inherit; // this fixes tables messing up background colors of parent elements
...@@ -152,6 +157,14 @@ $link-decoration: none; ...@@ -152,6 +157,14 @@ $link-decoration: none;
--toastify-toast-width: 600px; --toastify-toast-width: 600px;
} }
.tooltip {
--bs-tooltip-max-width: 30em;
}
.white-space-pre-wrap {
white-space: pre-wrap !important;
}
.sneak-100-input { .sneak-100-input {
border: 0; border: 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment