Add custom CSS values to /opt/zammad/app/assets/stylesheets/custom/custom.css like e.g.
.login {
background: #ff00ff;
}
Make zammad the owner with chmod zammad:zammad /opt/zammad/app/assets/stylesheets/custom/custom.css
Precompile assets with zammad run rake assets:precompile
Restart service with systemctl restart zammad-web
I looked at all the posts and found only these steps, but somehow I am not able to make it work.
Also reapplying the same steps as here to hide the private/public note as the same issue:
systemctl stop zammad
systemctl stop zammad-web
vi /opt/zammad/app/assets/stylesheets/custom/custom.css
zammad run rake assets:precompile
systemctl start zammad
systemctl start zammad-web
This is the content of my custom.css
.login {
background: #ff00ff;
}
Maybe I am writing something wrong in the CSS, since it completely borks the website
Could you share a part of your custom.css to see if it is me who is doing something wrong?
First the permissions on the custom.css file were wrong, then I verified also the public/assets directory and found that all *.css files had the wrong permission.