In the legacy dashboard, I use the HSM to control access, but I changed the icon behavior w/ CSS fade-inout animation for when the system is disarmed. When I click on it after the update, the opening frame now blinks with the CSS change, whereas it did not before.
Here's an example of the code:
#tile-20 .Disarmed {animation: fade-inout 1s linear; animation-direction: alternate; animation-iteration-count: infinite;} @keyframes fade-inout {0% {opacity: 1;} 100% {opacity: 0;}}