status-icon with statuscode, use entire row as link to parameters

This commit is contained in:
Daniel
2025-04-16 13:31:24 +02:00
committed by Markus Zolliker
parent 639949f24b
commit d1ea9225dc
7 changed files with 184 additions and 102 deletions

View File

@ -41,6 +41,20 @@
position: relative;
}
.row-clickable {
cursor: pointer;
}
.row-clickable:hover {
background-color:WhiteSmoke;
opacity: .7;
}
.row-disabled {
opacity: .3;
/* background-color: lightgray; */
}
.clickable:hover {
background-color: lightgray;
}
@ -78,6 +92,10 @@
float: right;
}
.col-right-disabled {
display: none;
}
.modules-title {
display: inline-block;
min-width: 120px;
@ -88,17 +106,25 @@
width: 16px;
height: 16px;
line-height: 16px;
margin-left: 4px;
margin-right: 4px;
opacity: .8;
}
.status-icon {
border-radius: 50%;
background-color: dimgray;
background-color: lightgray;
opacity: .8;
/* box-shadow: -2px -2px 5px inset; */
}
.status-icon-idle {
background-color: lightgray;
}
.status-icon-idle {
background-color: white;
}
.status-icon-busy {
background-color: yellow;
}