I was able to restore the Opal theme, but I found that the panel headers came out light blue and it was suboptimal. I worked with Grok for some over-riding css but could not get anything to work, perhaps you can. I’ve been using Classic Silver and it’s pretty close. What I care about most is that the new Kendo library does not render the full group box or page sides. I think that is a terrible decision because a group box helps the user understand the context of a set of controls or presentations. I was able to restore that as follows:
Restore Group Box Rendering
- Create a folder under C:\AwareIM\Tomcat\webapps\AwareIM\Custom\CSS\ [your app name].
- In that folder create a .css file (or add to one that you have there) with the following:
/* Global override for group box borders */
fieldset {
border: 1px solid #cccccc !important; /* Light gray border; adjust color as needed */
border-radius: 4px; /* Optional: slight rounding for modern look */
padding: 10px 15px 15px 15px; /* Space inside the box */
margin: 10px 0; /* Space around the box */
background-color: #f9f9f9; /* Optional: subtle background for contrast */
}
legend {
padding: 0 10px; /* Space around the title */
font-weight: bold; /* Optional: make title stand out */
}
- Name the file custom.css or add this code to any custom css file you already have. Note that this affects all themes in your application but in my view, it’s for the best.
- Restart the AwareIM server.
If you want to restore Blue Opal:
- Go to https://kendo.cdn.telerik.com/2020.3.1021/styles/kendo.blueopal.min.css
- Copy the page contents to C:\AwareIM\Tomcat\webapps\AwareIM\aware_kendo\resources\css\aware_classic-opal.css (create the file)
- Restart the AwareIM server (not really needed as the file is read upon login).