Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
langermank committed Oct 15, 2024
1 parent 25df95a commit dc95ca8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/react/src/Button/ButtonBase.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}

&:disabled,
&[aria-disabled='true'] {
&[aria-disabled='true']:not([data-loading='true']) {
cursor: not-allowed;
box-shadow: none;

Expand Down Expand Up @@ -265,7 +265,7 @@
}

&:disabled,
&[aria-disabled='true'] {
&[aria-disabled='true']:not([data-loading='true']) {
color: var(--control-fgColor-disabled);
background-color: var(--button-default-bgColor-disabled);
border-color: var(--button-default-borderColor-disabled);
Expand Down Expand Up @@ -309,7 +309,7 @@
}

&:disabled,
&[aria-disabled='true'] {
&[aria-disabled='true']:not([data-loading='true']) {
color: var(--button-primary-fgColor-disabled);
background-color: var(--button-primary-bgColor-disabled);
border-color: var(--button-primary-borderColor-disabled);
Expand Down Expand Up @@ -378,7 +378,7 @@
}

&:disabled,
&[aria-disabled='true'] {
&[aria-disabled='true']:not([data-loading='true']) {
color: var(--button-danger-fgColor-disabled);
background-color: var(--button-danger-bgColor-disabled);
border-color: var(--button-default-borderColor-disabled);
Expand Down Expand Up @@ -428,7 +428,7 @@
}

&:disabled,
&[aria-disabled='true'] {
&[aria-disabled='true']:not([data-loading='true']) {
color: var(--button-invisible-fgColor-disabled);
background-color: var(--button-invisible-bgColor-disabled);
border-color: var(--button-invisible-borderColor-disabled);
Expand Down Expand Up @@ -470,7 +470,7 @@
}

&:disabled,
&[aria-disabled='true'] {
&[aria-disabled='true']:not([data-loading='true']) {
color: var(--control-fgColor-disabled);
background-color: transparent;
border-color: transparent;
Expand Down

0 comments on commit dc95ca8

Please sign in to comment.