You have not written from where you coming. Was that an update within 17.1 or from 16.1?
One problem with a CSS include statement is the browser cache. Even if we changed something in the included file, you wont get it, unless you (and all your user) clear the browser cache.
Better to use a less file to included these dependencies and create a single CSS file, to which EGroupware will add a cache-buster.
A good example/start-point is to use the import statements from
and then add your own calendar modification, starting with nothing at first, to see your setup is correct.
To compile the less file to a css file you can either use your IDE eg. Netbeans or use the toolchain we use and documented on the Readme page for a Git installation:
- to get minified JavaScript and CSS you need to install nodejs and grunt, if you have not already done so
- install nodejs from your distribution package manager
- npm install -g grunt-cli # installs grunt command globally, if you have not already done so
- npm install # installs required npm/grunt modules into node_modules/ dir
- run grunt manually after every update, or better uncomment grunt steps in .mrconfig
Ralf