Skip to content

Commit

Permalink
fix(ui5-li-custom): fix pointer-events inheritance (#2196)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifoosid authored Sep 10, 2020
1 parent f746f0d commit bfb9999
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/main/src/themes/BusyIndicator.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
pointer-events: none;
}


:host([active]) :not(.ui5-busyindicator-root--ie) ::slotted(:not([class^="ui5-busyindicator-"])) {
opacity: 0.6;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/main/src/themes/CustomListItem.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

.ui5-li-root.ui5-custom-li-root {
padding: 0;
pointer-events: auto;
pointer-events: inherit;
}

.ui5-li-root.ui5-custom-li-root .ui5-li-content {
pointer-events: auto;
pointer-events: inherit;
}

[ui5-checkbox].ui5-li-singlesel-radiobtn,
Expand Down

0 comments on commit bfb9999

Please sign in to comment.