Update message severity colors, fix navbar double border (#37019)

- Tweak serverity background and border colors
- Use default text color instead of per-severity text colors.
- Replace `saturate` filter with semibold font weight on message headers.
- Fix navbar double border when a notification is present.

Co-authored-by: Claude (Opus 4.6) <noreply@anthropic.com>
This commit is contained in:
silverwind
2026-03-28 10:05:56 +01:00
committed by GitHub
parent 17b802beae
commit 896e4838cb
4 changed files with 34 additions and 29 deletions

View File

@@ -43,7 +43,7 @@
.ui.message .header {
color: inherit;
filter: saturate(2);
font-weight: var(--font-weight-semibold);
}
.ui.info.message,

View File

@@ -7,6 +7,11 @@
padding: 0 10px;
}
/* When notification message is present after navbar, hide border to avoid double border */
#navbar:has(+ .ui.message) {
border-bottom: none;
}
#navbar .navbar-left,
#navbar .navbar-right {
display: flex;