improve trigger border color in dark mode

This commit is contained in:
Cory LaViska
2021-10-29 14:35:57 -04:00
parent 639533662d
commit aec17da6b0
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
- Added eye dropper to `<sl-color-picker>` when the browser supports the [EyeDropper API](https://wicg.github.io/eyedropper-api/)
- Fixed a bug in `<sl-button-group>` where buttons groups with only one button would have an incorrect border radius
- Improved the `<sl-color-picker>` trigger's border in dark mode
- Updated to Lit 2.0.2
## 2.0.0-beta.58

View File

@@ -302,7 +302,7 @@ export default css`
height: 100%;
border-radius: inherit;
background-color: currentColor;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 0 0 1px rgb(var(--sl-color-neutral-1000) / 25%);
transition: inherit;
}