Lock flashes on protected robot interaction

This commit is contained in:
PeekabooSteam
2023-11-16 23:08:01 +00:00
parent 0c50141be6
commit 4e13daa270
2 changed files with 18 additions and 1 deletions

View File

@@ -687,6 +687,19 @@ nav.ol-panel> :last-child {
width:10px;
}
@keyframes lock-prompt {
100% {
opacity: 1;
}
0% {
opacity: 0;
}
}
.ol-navbar-buttons-group > .protectable > button[data-protected].lock.prompt svg {
animation: lock-prompt .25s alternate infinite;
}
.ol-navbar-buttons-group > .protectable > button.lock svg.locked * {
fill:white !important;
}