fix(components): [button] style compatible issue with :not (#7914)

downgrade :not(a,b) to :not(a):not(b) for compatiblity
This commit is contained in:
Vincent Guo 2022-05-27 10:10:08 +08:00 committed by GitHub
parent 4177e54964
commit f7b8c33035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ $button-icon-span-gap: map.merge(
vertical-align: middle;
-webkit-appearance: none;
&:not(.is-text, .is-link, .#{$namespace}-button--text) {
&:not(.is-text):not(.is-link):not(.#{$namespace}-button--text) {
background-color: getCssVar('button', 'bg-color');
border: getCssVar('border');
border-color: getCssVar('button', 'border-color');