Skip to content

Commit 6d74de8

Browse files
authored
Merge pull request #4531 from bjester/delete-account-rebrand
Fix hover color for red delete account button
2 parents 340da6c + ce5db02 commit 6d74de8

File tree

1 file changed

+7
-1
lines changed
  • contentcuration/contentcuration/frontend/settings/pages/Account

1 file changed

+7
-1
lines changed

contentcuration/contentcuration/frontend/settings/pages/Account/index.vue

+7-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,13 @@
100100
:text="$tr('deleteAccountLabel')"
101101
:appearanceOverrides="{
102102
backgroundColor: $themeTokens.error,
103-
color: $themeTokens.textInverted
103+
color: $themeTokens.textInverted,
104+
':hover': {
105+
// Vuetify generates this based on theme colors, but oddly it doesn't make it
106+
// available in the theme tokens
107+
// TODO: Replace with KDS lighten/darken utilities
108+
backgroundColor: 'var(--v-error-darken1)',
109+
},
104110
}"
105111
@click="showDeleteConfirmation = true"
106112
/>

0 commit comments

Comments
 (0)