Adding workflow management

I
This commit is contained in:
2025-07-01 22:07:12 +02:00
parent 9e1133c7fb
commit 4b06a0fe9b
17 changed files with 303 additions and 4 deletions

View File

@@ -28,6 +28,21 @@
transition: opacity 0.3s ease; /* No delay when becoming visible */
}
.mmt-visible-on-hover {
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
/* When parent is hovered, show the child elements with this class */
*:hover > .mmt-visible-on-hover {
opacity: 1;
visibility: visible;
transition: opacity 0.2s ease;
}
.icon-32 {
width: 32px;
height: 32px;
@@ -65,7 +80,6 @@
padding-top: 4px;
}
.icon-16 {
width: 16px;
min-width: 16px;
@@ -82,7 +96,6 @@
padding-top: 5px;
}
.icon-bool {
display: block;
width: 20px;