Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Customize UI] Can I customize the User Interface of filestash using plugins or any other method. #659

Open
believerHSP opened this issue Jan 8, 2024 · 2 comments

Comments

@believerHSP
Copy link

I want to customize the User Interface of filestash. like I need to add my organization name in the landing page and also put a image in background of landing page.

Is it possible to do. If yes then what are the options available to accomplish it.

If not then, is there any opportunity that I can contribute to make this feature available in filestash?

@Marduc666
Copy link

I would also like to know how to do this.
And is it possible to replace a language file once the app is installed?

@sevmonster
Copy link

sevmonster commented Feb 7, 2024

Log in to the admin interface and use the Custom Css option. The contents of that config option is then available at /config.css, and this file is loaded on every page.

If for some reason that isn't an option or if you also want to style the admin page, you can inject a stylesheet into the head of the document via reverse proxy. For example with Nginx:

# inject custom stylesheet
sub_filter </head>
    '<link rel="stylesheet" href="/some/file.css"></head>';
sub_filter_once on;

NB: You must disable compression from the proxy for sub_filter to work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants