added required field marker

This commit is contained in:
Gani Georgiev
2023-03-27 16:07:20 +03:00
parent b81112f82e
commit 2c40811fac
31 changed files with 104 additions and 95 deletions
+19 -11
View File
@@ -20,17 +20,6 @@
.form-field {
margin: 0;
}
.field-type-icon.new:after {
$size: 4px;
content: "";
position: absolute;
left: -6px;
top: 9px;
width: $size;
height: $size;
border-radius: $size;
background: var(--baseAlt4Color);
}
.options-trigger {
i {
transition: transform var(--baseAnimationSpeed);
@@ -63,6 +52,25 @@
}
}
// markers
.markers {
position: absolute;
z-index: 1;
left: 7px;
top: 6px;
display: inline-flex;
align-items: center;
gap: 5px;
.marker {
$size: 4px;
display: block;
width: $size;
height: $size;
border-radius: $size;
background: var(--baseAlt4Color);
}
}
// states
&:hover,
&:active {