Skip to content

Commit

Permalink
Adjust NotificationButton background color (#669)
Browse files Browse the repository at this point in the history
* Adjust button background color

* Prettier
  • Loading branch information
lindskogen authored Nov 10, 2023
1 parent 8ff926e commit 04fb992
Showing 1 changed file with 11 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@

transition: 0.5s width;

&.unread,
&:hover {
--current-background-color: var(--lhds-color-red-500);
--current-outline-color: var(--lhds-color-red-500);
}

&:active {
--current-background-color: var(--lhds-color-red-600);
--current-outline-color: var(--lhds-color-red-600);
}
&:active {
--current-background-color: var(--lhds-color-red-600);
--current-outline-color: var(--lhds-color-red-600);
}

&.unread .icon {
Expand All @@ -27,17 +26,17 @@
var(--swui-nav-bar-notification-shake-count);
}

&.unread.hasCount {
--current-background-color: var(--lhds-color-red-600);
--current-outline-color: var(--lhds-color-red-600);
&.unread {
--current-background-color: var(--lhds-color-red-500);
--current-outline-color: var(--lhds-color-red-500);

&:hover {
--current-background-color: var(--lhds-color-red-700);
--current-outline-color: var(--lhds-color-red-700);
--current-background-color: var(--lhds-color-red-600);
--current-outline-color: var(--lhds-color-red-600);
}
&:active {
--current-background-color: var(--lhds-color-red-800);
--current-outline-color: var(--lhds-color-red-800);
--current-background-color: var(--lhds-color-red-700);
--current-outline-color: var(--lhds-color-red-700);
}
}

Expand Down

0 comments on commit 04fb992

Please sign in to comment.