Skip to content

Commit a10a777

Browse files
committed
fix navbar muted color
fixes #822
1 parent 668a877 commit a10a777

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- Implement parameter deduplication.
1313
Now, when you write `select $x where $x is not null`, the value of `$x` is sent to the database only once. It used to be sent as many times as `$x` appeared in the statement.
1414
- Improve error messages on invalid sqlpage function calls. The messages now contain actionable advice.
15+
- Fix top navigation bar links color. They appeared "muted", with low contrast, since v0.33
1516

1617
## 0.33.0 (2025-02-15)
1718

sqlpage/sqlpage.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
--tblr-code-bg: #e4f1ff;
99
}
1010

11+
.navbar {
12+
/* https://github.com/sqlpage/SQLPage/issues/822 */
13+
--tblr-navbar-color: rgba(var(--tblr-body-color-rgb), 0.8);
14+
}
15+
1116
[data-bs-theme="dark"] .alert:not(.alert-important) {
1217
/* See https://github.com/tabler/tabler/issues/1607 */
1318
background-color: var(--tblr-bg-surface);

0 commit comments

Comments
 (0)