Skip to content

Commit

Permalink
pkp/pkp-lib#9890 Add link color override in DropdownActions component
Browse files Browse the repository at this point in the history
  • Loading branch information
blesildaramirez committed Sep 11, 2024
1 parent 6180de9 commit 2682b2b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/DropdownActions/DropdownActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,14 @@ const isValidAction = (action) => {
return action?.label && (action?.url || action?.name);
};
</script>
<style lang="less" scoped>
@import '../../styles/_import';
/* Override legacy styles for: a:hover, a:focus, where the color is being set to #008acb */
a.text-on-dark:hover,
a.text-on-dark:focus,
a.text-on-dark:active {
color: rgb(255 255 255 / var(--tw-text-opacity));
}
</style>

0 comments on commit 2682b2b

Please sign in to comment.