New dot icon
This commit is contained in:
parent
c219ad91c7
commit
0bbf8d0344
|
@ -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 |
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue