feature: Added custom css and include directories which are ignored by git (#4871)

This commit is contained in:
Neil Lathwood
2016-10-28 06:55:40 +01:00
committed by Daniel Preussker
parent 1504c04fee
commit b5be6e9271
5 changed files with 16 additions and 3 deletions

View File

@@ -131,9 +131,11 @@ $config['site_style'] = "light";
Currently we have a number of styles which can be set which will alter the navigation bar look. dark, light and mono with light being the default.
```php
$config['stylesheet'] = "css/styles.css";
$config['webui']['custom_css'][] = "css/custom/styles.css";
```
You can override a large number of visual elements by creating your own css stylesheet and referencing it here.
You can override a large number of visual elements by creating your own css stylesheet and referencing it here, place any custom css files into
`html/css/custom` so they will be ignored by auto updates. You can specify as many css files as you like, the order they are within your config
will be the order they are loaded in the browser.
```php
$config['page_refresh'] = "300";