disable pointer events on shown UI element when showing clues
This commit is contained in:
parent
d1bb610924
commit
e208573f44
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,6 @@ blockquote {
|
||||||
}
|
}
|
||||||
|
|
||||||
.u-clickable {
|
.u-clickable {
|
||||||
pointer-events: auto;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
@ -931,6 +930,7 @@ textarea,
|
||||||
|
|
||||||
.selected-clue {
|
.selected-clue {
|
||||||
@extend .zIndex-9;
|
@extend .zIndex-9;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal--clue {
|
.modal--clue {
|
||||||
|
@ -3689,6 +3689,7 @@ footer {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-top: 1px solid hsl(202,12%,87%);
|
border-top: 1px solid hsl(202,12%,87%);
|
||||||
@extend .u-clickable;
|
@extend .u-clickable;
|
||||||
|
pointer-events: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -4849,7 +4850,6 @@ label + .wizard-buttonList {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
box-shadow: 0 1px 5px rgba(0,0,0,.05);
|
box-shadow: 0 1px 5px rgba(0,0,0,.05);
|
||||||
|
|
||||||
@extend .u-clickable;
|
@extend .u-clickable;
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
|
|
Loading…
Reference in a new issue