Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Cannot Reproduce
-
2.0.0-M8
-
None
Description
Setting icon colors via cssClass() doesn't work anymore.
Compare screen above with
application.css:
.success .title-column .entityLinkSimplePanel { color: green; } .error .title-column .entityLinkSimplePanel { color: red; } .running .title-column .entityLinkSimplePanel { color: orange; }
and Endpoint.java:
public String cssClass() { if (response.startsWith(CheckResult.SUCCESS.getValue())) { return "success"; } if (response.startsWith(CheckResult.ERROR.getValue())) { return "error"; } return "running"; }
c.f. https://the-asf.slack.com/archives/CFC42LWBV/p1651833195371239
Furthermore, after clicking on the column header (for sorting), font and row colors changed.