mirror of
https://github.com/shoelace-style/shoelace.git
synced 2026-01-12 11:09:13 +00:00
* Fix for #2145 * Fixed misleading comment after css adjustments * Use same spacing for all sizes --------- Co-authored-by: Cory LaViska <cory@abeautifulsite.net>
This commit is contained in:
committed by
GitHub
parent
68641480cd
commit
a6d4cea3b7
@@ -12,6 +12,11 @@ Components with the <sl-badge variant="warning" pill>Experimental</sl-badge> bad
|
||||
|
||||
New versions of Shoelace are released as-needed and generally occur when a critical mass of changes have accumulated. At any time, you can see what's coming in the next release by visiting [next.shoelace.style](https://next.shoelace.style).
|
||||
|
||||
## Next
|
||||
|
||||
- Fixed a bug in `<sl-select>` that made the suffix slot collide with the clear button [#2145]
|
||||
|
||||
|
||||
## 2.17.0
|
||||
|
||||
- Added the `fixed-scroll-controls` attribute to `<sl-tab-group>` [#2128]
|
||||
|
||||
@@ -260,20 +260,17 @@ export default css`
|
||||
border-radius: var(--sl-input-height-large);
|
||||
}
|
||||
|
||||
/* Prefix */
|
||||
.select__prefix {
|
||||
/* Prefix and Suffix */
|
||||
.select__prefix,
|
||||
.select__suffix {
|
||||
flex: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
color: var(--sl-input-placeholder-color);
|
||||
}
|
||||
|
||||
/* Suffix */
|
||||
.select__suffix {
|
||||
flex: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
color: var(--sl-input-placeholder-color);
|
||||
.select__suffix::slotted(*) {
|
||||
margin-inline-start: var(--sl-spacing-small);
|
||||
}
|
||||
|
||||
/* Clear button */
|
||||
|
||||
Reference in New Issue
Block a user