Adding workflow management
I
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user