New dot icon

This commit is contained in:
Jose Gonzalez 2023-03-17 08:58:25 +01:00
parent c219ad91c7
commit 0bbf8d0344
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<circle cx="10" cy="10" r="10" fill="#3F3F3F"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 237 B

View File

@ -10553,6 +10553,18 @@ button div.cog.rotation {
animation: rotation 4s infinite linear;
}
div.status_dot {
mask: url(../../images/status_dot.svg) no-repeat center / contain;
-webkit-mask: url(../../images/status_dot.svg) no-repeat center / contain;
}
.status_dot.ok {
background-color: #82b92e;
}
.status_dot.critical {
background-color: #e63c52;
}
@keyframes rotation {
from {
transform: rotate(0deg);