Fix disabled cursor in select

pull/200/head
Cory LaViska 2020-09-03 10:25:14 -04:00
rodzic 3568378975
commit 8b4507cf60
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -3,6 +3,7 @@
## Next
- Fixed a bug where swapping an animated element wouldn't restart the animation in `sl-animation`
- Fixed a bug where the cursor was incorrect when `sl-select` was disabled
- Updated `sl-animation` to stable
- Updated to Stencil 2.0 (you may need to purge `node_modules` and run `npm install` after pulling)
- Updated entry points in `package.json` to reflect new filenames generated by Stencil 2

Wyświetl plik

@ -15,7 +15,7 @@
flex: 1 1 auto;
width: 100%;
&::part(base) {
&:not([disabled])::part(base) {
cursor: pointer;
}