Skip to content

allow panel labels to be fully configurable #110

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build/system24.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ body {
/* panel labels */
--panel-labels: on; /* off: default, on: add labels to panels */
--label-color: var(--text-muted); /* color of labels */
--label-hover-color: var(--accent-2); /* color of labels when hovered */
--label-font-weight: 500; /* font weight of labels */
}

Expand Down Expand Up @@ -269,7 +270,7 @@ body {
/* panel-labels.css */
body {
--label-color: var(--text-muted);
--label-hover-color: var(--brand-360);
--label-hover-color: var(--accent-2);
--label-font-weight: 500;
}

Expand Down
1 change: 1 addition & 0 deletions src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ body {
/* panel labels */
--panel-labels: on; /* off: default, on: add labels to panels */
--label-color: var(--text-muted); /* color of labels */
--label-hover-color: var(--accent-2); /* color of labels when hovered */
--label-font-weight: 500; /* font weight of labels */
}

Expand Down
2 changes: 1 addition & 1 deletion src/panel-labels.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
body {
--label-color: var(--text-muted);
--label-hover-color: var(--brand-360);
--label-hover-color: var(--accent-2);
--label-font-weight: 500;
}

Expand Down
1 change: 1 addition & 0 deletions theme/system24.theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ body {
/* panel labels */
--panel-labels: on; /* off: default, on: add labels to panels */
--label-color: var(--text-muted); /* color of labels */
--label-hover-color: var(--accent-2); /* color of labels when hovered */
--label-font-weight: 500; /* font weight of labels */
}

Expand Down