Skip to content

Commit 7cd5a76

Browse files
committed
Merge remote-tracking branch 'origin/v1/contrib' into release/1.8.0
2 parents 0bb9009 + 5a1fea7 commit 7cd5a76

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

packages/uui-button/lib/uui-button.element.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,26 @@ export class UUIButtonElement extends UUIFormControlMixin(
348348
a:not([href]):active {
349349
animation: ${UUIHorizontalShakeAnimationValue};
350350
}
351+
352+
/* ANIMATIONS */
353+
@keyframes fadeIn {
354+
0% {
355+
opacity: 0;
356+
}
357+
100% {
358+
opacity: 1;
359+
}
360+
}
361+
362+
@keyframes fadeOut {
363+
0% {
364+
opacity: 1;
365+
}
366+
100% {
367+
opacity: 0;
368+
}
369+
}
370+
351371
#icon-check,
352372
#icon-wrong {
353373
display: grid;

packages/uui-modal/lib/uui-modal.element.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export class UUIModalElement extends LitElement {
9595
max-width: unset;
9696
max-height: unset;
9797
border: none;
98+
background: none;
9899
}
99100
dialog::backdrop {
100101
background: none;

0 commit comments

Comments
 (0)