forked from MarseyWorld/MarseyWorld
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.master
parent
79e338de38
commit
8ae84214a3
|
@ -299,5 +299,8 @@
|
|||
* {
|
||||
animation: unset !important;
|
||||
}
|
||||
.modal-backdrop.show {
|
||||
backdrop-filter: none !important;
|
||||
}
|
||||
</style>
|
||||
{%- endif %}
|
||||
|
|
Loading…
Reference in New Issue