Skip to content
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
2 changes: 2 additions & 0 deletions build/system24.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ body {
--panel-labels: on; /* off: default, on: add labels to panels */
--label-color: var(--text-muted); /* color of labels */
--label-font-weight: 500; /* font weight of labels */
--label-casing: lowercase; /* lowercase: default, uppercase: make panel labels fully uppercase, capitalize: make panel labels start with a capital letter */
}

/* color options */
Expand Down Expand Up @@ -309,6 +310,7 @@ body {
z-index: 100;
font-size: 16px;
transition: color var(--border-hover-transition);
text-transform: var(--label-casing);
}

&:hover::after {
Expand Down
1 change: 1 addition & 0 deletions src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ body {
--panel-labels: on; /* off: default, on: add labels to panels */
--label-color: var(--text-muted); /* color of labels */
--label-font-weight: 500; /* font weight of labels */
--label-casing: lowercase; /* lowercase: default, uppercase: make panel labels fully uppercase, capitalize: make panel labels start with a capital letter */
}

/* color options */
Expand Down
1 change: 1 addition & 0 deletions src/panel-labels.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ body {
z-index: 100;
font-size: 16px;
transition: color var(--border-hover-transition);
text-transform: var(--label-casing);
}

&:hover::after {
Expand Down