mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2025-11-03 11:39:34 +00:00
| .. | ||
| bs4 | ||
| bs5 | ||
| README.md | ||
SCSS
bs<4/5>-jf.scsscontains the source for the customizations to bootstrap. To customize the UI, you can make modifications to this file and then compile it.
Note: For BS5, it is assumed that bootstrap is installed in ../../node_modules/bootstrap relative to itself.
For BS4, it assumes that bootstrap is installed in ../../node_modules/bootstrap4 relative to itself (npm install bootstrap4@npm:bootstrap).
- Compilation requires a sass compiler of your choice, and
postcss-cli,autoprefixer+clean-css-clifrom npm. - If you're using
sassc, run./compile.sh bs<4/5>-jf.scssin this directory. This will create a .css file, and minified .css file. - For
node-sass, replace thesasscline incompile.shwith
node-sass --output-style expanded --precision 6 $1 $css_file
and run as above.
- If you're building from source, copy the minified css to
<jf-accounts git directory>/jellyfin_accounts/data/static/bs<4/5>-jf.css. - If you're just customizing your install, set
custom_cssin your config as the path to your minified css and change thethemeoption toCustom CSS.