service2.js: Fix status icon and port status popup

However, status popup was disabled as deemed excessive for our use case.
This commit is contained in:
Simon Rozman
2024-05-15 12:27:52 +02:00
parent 5e339566f3
commit e05abce7d9
2 changed files with 171 additions and 26 deletions

View File

@@ -1,3 +1,5 @@
/* TODO: Dark mode theme */
/* Mistake types styles */
.bes-typo-mistake {
border-bottom: 2px solid red;
@@ -79,17 +81,17 @@
}
.bes-status-icon.bes-status-success {
background-image: url('/images/checkmark-svgrepo-com.svg');
background-image: url('images/checkmark-svgrepo-com.svg');
}
.bes-status-icon.bes-status-loading {
background-image: url('/images/loading-svgrepo-com.svg');
background-image: url('images/loading-svgrepo-com.svg');
}
.bes-status-icon.bes-status-error {
background-image: url('/images/error-svgrepo-com.svg');
background-image: url('images/error-svgrepo-com.svg');
}
.bes-status-icon.bes-status-mistakes {
background-image: url('/images/mistake-svgrepo-com.svg');
background-image: url('images/mistake-svgrepo-com.svg');
}