To enable the editing of system styles you have to enable system style management in the ILIAS setup. This will only work when lessc is installed.
Robert
- Open the ILIAS setup. (/setup/setup.php )
- Go to 'Basisc Settings'
- Check 'Manage System Styles'
- Set the path to lessc (probably /usr/local/bin/lessc )
- If lessc is not installed, install it through NPM:
apt-get install nodejs-dev node-gyp libssl1.0-dev
apt install npm
npm install -g less
- If lessc is not installed, install it through NPM:
- In the webroot create the skin folder in Customizing:
mkdir -p Customizing/global/skin - Change ownership of the folder to www-data (or the apache server)
chown -R www-data:www-data Customizing
Robert