Disable modal backdrop when !animations setting.

Some users have complained about performance with the backdrop-filter
on .modal-backdrop.show. Partially as a kludge to avoid adding another
toggle, the 'animations' user setting now also disables the backdrop
filter. In practice, this may turn into a more general setting to
remove performance-intensive UI effects.
remotes/1693045480750635534/spooky-22
Snakes 2022-05-31 21:03:04 -04:00
parent 79e338de38
commit 8ae84214a3
1 changed files with 3 additions and 0 deletions

View File

@ -299,5 +299,8 @@
* {
animation: unset !important;
}
.modal-backdrop.show {
backdrop-filter: none !important;
}
</style>
{%- endif %}