Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(codesnippet): inline button should be width of content #17301

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,6 @@ module.exports = {
'declaration-property-unit-allowed-list': {
'/^animation/': ['ms'],
},
// Specify a blacklist of disallowed property and value pairs within
// declarations.
'declaration-property-value-disallowed-list': {
// Disallow unset as it is unsupported in IE11
'/.*/': ['unset'],
},
// Specify a whitelist of allowed property and value pairs within
// declarations.
'declaration-property-value-allowed-list': OFF,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ $copy-btn-feedback: $background-inverse !default;
.#{$prefix}--snippet--inline.#{$prefix}--btn {
block-size: 1.25rem;
inline-size: initial;
max-inline-size: unset;
min-block-size: 1.25rem;
padding-inline: 0;
}
Expand Down
1 change: 0 additions & 1 deletion packages/styles/scss/components/slider/_slider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@
.#{$prefix}--slider__thumb--lower,
.#{$prefix}--slider__thumb--upper {
position: absolute;
/* stylelint-disable-next-line declaration-property-value-disallowed-list */
border-radius: unset;
background-color: transparent;
box-shadow: none;
Expand Down
Loading