Hi there! I was trying to play around with adding some custom CSS and ran into an issue. Specifically, I wanted to add some icons to our SiteServices app (example below) to improve the UX since there are a lot of fields in this app.
I tried adding the .css file (script below) directly to my app to accomplish this, but the style changes are not rendering into the page. I tested the changes in Chrome dev tools, and I’m familiar enough to know that it should work, unless I’m missing something. Do you happen to know if only certain CSS selectors are supported and if the ::before pseudo element specifically is supported in kintone?
Furthermore, if you have kintone specific CSS documentation, that will also help a lot. Thanks!
Icon Example:
Script:
.control-gaia.control-group-field-gaia.field-5324360::before {
content: url(http://www.mywebsitexyz.com/wp- content/uploads/2017/04/003-cloud-computing.png);
position: relative;
top: 11px;
}
.control-gaia.control-group-field-gaia.field-5324486::before {
content: url(http://www.mywebsitexyz.com/wp-content/uploads/2017/04/wifi.png);
position: relative;
top: 10px;
}
.control-gaia.control-group-field-gaia.field-5324748::before {
content: url(http://www.mywebsitexyz.com/wp-content/uploads/2017/04/002-television.png);
position: relative;
top: 9px;
}
.control-gaia.control-group-field-gaia.field-5324361::before {
content: url(http://www.mywebsitexyz.com/wp-content/uploads/2017/04/001-diploma.png);
position: relative;
top: 10px;
}