add color for active monitoring button

This commit is contained in:
smanylov
2026-02-18 18:29:21 +07:00
parent c658721333
commit 67bf12c11f
3 changed files with 11 additions and 4 deletions
+9 -3
View File
@@ -388,7 +388,7 @@
transition: all 0.3s ease-in;
&.done {
border-color: #00a63e;
border-color: v.$green;
}
&-file-info {
@@ -423,8 +423,8 @@
min-width: 120px;
&.active {
background: #00a63e;
border: 2px solid #00a63e;
background: v.$green;
border: 2px solid v.$green;
color: v.$white;
}
}
@@ -4119,6 +4119,12 @@
border: 2px solid v.$p-color;
cursor: pointer;
background: #fff;
&.active {
background: v.$green;
border: 2px solid v.$green;
color: v.$white;
}
}
}
}