Skip to content

Commit

Permalink
Fix close buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
obulat committed Oct 17, 2024
1 parent 53d22dd commit c2b30ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/VButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,10 @@ a.button {
@apply border-tx;
}
.transparent-gray {
@apply border-tx bg-tx text-default hover:bg-secondary disabled:text-disabled;
@apply border-tx bg-tx text-default hover:bg-transparent-hover disabled:text-disabled;
}
.transparent-dark {
@apply border-tx bg-tx text-default hover:bg-secondary-hover hover:text-over-dark;
@apply border-tx bg-tx text-default hover:bg-tertiary hover:text-over-dark;
}
.transparent-dark-pressed {
@apply border-tx bg-tertiary text-over-dark hover:border-hover;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/VHeader/VHeaderInternal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ watch(route, () => {
variant="transparent-tx"
size="large"
:icon-props="{ name: 'close' }"
class="text-white focus-slim-tx hover:bg-tertiary"
class="text-white focus-slim-tx hover:bg-tertiary hover:text-over-negative"
:label="$t('modal.closePagesMenu')"
@click="closePageMenu"
/>
Expand Down

0 comments on commit c2b30ed

Please sign in to comment.