Skip to content

Commit

Permalink
Fix color of tertiary button on dark theme (#22739) (#22744)
Browse files Browse the repository at this point in the history
Backport #22739

Before:
<img width="266" alt="Screenshot 2023-02-03 at 14 07 34"
src="https://user-images.githubusercontent.com/115237/216611151-92e98305-c4b5-42f3-b2e2-8b1b805fa644.png">

After:
<img width="271" alt="Screenshot 2023-02-03 at 14 07 52"
src="https://user-images.githubusercontent.com/115237/216611156-878a8a75-39a1-415b-9b6d-4f035985444e.png">

This is the only instance of such a button in all templates.

Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
  • Loading branch information
4 people committed Feb 8, 2023
1 parent 37bbf2c commit 3647e62
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions web_src/less/_base.less
Original file line number Diff line number Diff line change
Expand Up @@ -2126,9 +2126,7 @@ a.ui.label:hover {
border: 1px solid var(--color-light-border);
color: var(--color-text);
}
.ui.tertiary.button {
border: none;
}

.page-content .ui.button {
box-shadow: none !important;
}
Expand Down Expand Up @@ -2244,6 +2242,15 @@ a.ui.label:hover {
color: var(--color-secondary-dark-8) !important;
}

.ui.tertiary.button {
color: var(--color-text-light);
border: none;
}

.ui.tertiary.button:hover {
color: var(--color-text);
}

.ui.primary.label,
.ui.primary.labels .label {
background-color: var(--color-primary) !important;
Expand Down

0 comments on commit 3647e62

Please sign in to comment.