Make button disappear and handle context menu states
This commit is contained in:
parent
6023f9ab6a
commit
d4e598e36b
2 changed files with 12 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
||||||
font-size: $font-button;
|
font-size: $font-button;
|
||||||
font-weight: $normal;
|
font-weight: $normal;
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
|
transition: 0.18s opacity ease-in-out;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&.Blended:hover,
|
&.Blended:hover,
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,17 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.Button {
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover .Button,
|
||||||
|
.Button.Clicked {
|
||||||
|
pointer-events: initial;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
h3,
|
h3,
|
||||||
ul {
|
ul {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue