NRG Got the "fix" to work. One more question tho; would it be possible for something like //'allow_download' => false, ? And this would be in the "puclic" area.
You mean right now, or in a future release? This feature is not clear, because "download" can be triggered in many different ways, including button click, right-click and open in new tab.
There is already an option prevent_right_click, which blocks right-click contextmenu on image, and removes the download button.
As for having an option to toggle download options on/off per login or user, yes I supposed that might be useful. I will look into it.
NRG :root {
--background-image: url('');
}
In this case as a background image in the login-page.
I don't see much point in assigning --background-image
as a CSS variable, if it's only supposed to apply on the login page. You could just add your background-image on the login page through custom CSS, for example:
.page-login-body {
background-image: url(/path/to/image.jpg);
}