Skip to content

Commit

Permalink
css: fix pointer event interception
Browse files Browse the repository at this point in the history
  • Loading branch information
ozyx committed Mar 12, 2024
1 parent 18a6b47 commit 5791c20
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/styles/_controls.scss
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,9 @@ select {
color: $colorSelectFg;
box-shadow: $shdwSelect;
background-repeat: no-repeat, no-repeat;
background-position: right 0.4em top 80%, 0 0;
background-position:
right 0.4em top 80%,
0 0;
border: none;
border-radius: $controlCr;
padding: 2px 20px 2px $interiorMargin;
Expand Down Expand Up @@ -718,15 +720,15 @@ select {
.c-super-menu__item-description {
flex: 1 1 70%;

[class*="__icon"] {
[class*='__icon'] {
display: none !important;
}

[class*="__name"] {
[class*='__name'] {
margin-top: 0 !important;
}

[class*="__item-description"] {
[class*='__item-description'] {
min-width: 200px;
}
}
Expand Down Expand Up @@ -1133,7 +1135,7 @@ input[type='range'] {
// Hidden by default; requires a hover 1 - 3 levels above to display
@include transition(opacity, $transOutTime);
opacity: 0;
pointer-events: none;
pointer-events: auto;
}
}

Expand Down

0 comments on commit 5791c20

Please sign in to comment.