Skip to content

Commit

Permalink
refactor(button): some missing changes from spectrum-two rebase
Browse files Browse the repository at this point in the history
Some changes around the pending state were missing after rebasing with
the latest spectrum-two branch. Manual resolution of differences.
  • Loading branch information
jawinn committed Mar 20, 2024
1 parent aba0679 commit 257530b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion components/button/index.css
Expand Up @@ -915,7 +915,16 @@ governing permissions and limitations under the License.

.spectrum-Icon,
.spectrum-Button-label {
display: none;
visibility: hidden;
opacity: 0%;
transition: opacity var(--mod-button-animation-duration, var(--spectrum-button-animation-duration, 130ms)) ease-in-out,
visibility 0ms linear var(--mod-button-animation-duration, var(--spectrum-button-animation-duration, 130ms));
}

.spectrum-ProgressCircle {
visibility: visible;
opacity: 100%;
transition: opacity var(--mod-button-animation-duration, var(--spectrum-button-animation-duration, 130ms)) ease-in-out;
}
}
}
Expand Down

0 comments on commit 257530b

Please sign in to comment.