Skip to content
Snippets Groups Projects
Commit 02cc040c authored by HJ's avatar HJ :fire:
Browse files

show marker when hovering on button intself, not container

parent 7f9fe6b6
No related branches found
No related tags found
1 merge request!2013Fixes Roundup 3
Pipeline #51553 passed
......@@ -51,6 +51,26 @@
grid-auto-flow: column;
grid-auto-columns: max-content;
align-items: center;
@include unfocused-style {
.focus-marker {
visibility: hidden;
}
.active-marker {
visibility: visible;
}
}
@include focused-style {
.focus-marker {
visibility: visible;
}
.active-marker {
visibility: hidden;
}
}
}
}
......@@ -82,24 +102,4 @@
}
}
}
@include unfocused-style {
.focus-marker {
visibility: hidden;
}
.active-marker {
visibility: visible;
}
}
@include focused-style {
.focus-marker {
visibility: visible;
}
.active-marker {
visibility: hidden;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment