Skip to content

Commit

Permalink
style(next): turn green the shield icon when the protected session is…
Browse files Browse the repository at this point in the history
… active
  • Loading branch information
adoriandoran committed Dec 6, 2024
1 parent 164b3df commit 74e561a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/public/stylesheets/theme-next.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@
--launcher-pane-button-hover-background: white;
--launcher-pane-button-hover-shadow: 4px 4px 4px rgba(0, 0, 0, .075);

--protected-session-active-icon-color: #16b516;
--sync-status-error-pulse-color: #ff5528;

--root-background: var(--left-pane-background-color);
Expand Down Expand Up @@ -300,6 +301,7 @@
--launcher-pane-button-hover-background: #ffffff1c;
--launcher-pane-button-hover-shadow: 4px 4px 4px rgba(0, 0, 0, .2);

--protected-session-active-icon-color: #8edd8e;
--sync-status-error-pulse-color: #f47871;

--root-background: var(--left-pane-background-color);
Expand Down Expand Up @@ -480,6 +482,16 @@
align-items: center;
}

/* Protected session enabled button */

#launcher-pane button.bx-check-shield,
#launcher-pane button.bx-check-shield:hover {
color: var(--protected-session-active-icon-color);
transition: color 500ms ease-in-out;
}

/* Sync status button */

#launcher-pane .sync-status .sync-status-icon {
top: 3px;
}
Expand Down

0 comments on commit 74e561a

Please sign in to comment.