Email or username:

Password:

Forgot your password?
Top-level
silverpill

@tadano

>on the subject of static assets I wonder if there could be an option to ignore file extension when replacing

That could be done by overriding CSS

One way to do that is to add CSS variables to a file with an agreed upon name like theme.css located in web_client_theme_dir. Frontend will try to load this stylesheet and if it is present it will replace default values

1 comment
silverpill

@tadano In Mitra 3.4.0 you can customize appearance by putting assets/custom.css file into your web_client_theme_dir directory

For example, to change background image on the login page:

:root {
  --landing-background-image: url("/assets/login.png");
}
Go Up