Skip to content
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Make prerelease self-update confirmation default to `No`.
- `Update-NovaModuleTool`, `Update-NovaModuleTools`, and `% nova update` now require an explicit `Y` before a
prerelease self-update continues, so pressing Enter cancels the update instead of accepting it.
- Render bold text in white across the hosted HTML documentation.
- Emphasized `<strong>` and `<b>` text now stands out more clearly when scanning docs pages.

### Deprecated

Expand Down
8 changes: 7 additions & 1 deletion docs/assets/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
--panel: rgba(255, 255, 255, 0.08);
--panel-strong: rgba(255, 255, 255, 0.12);
--text: #eef3ff;
--text-strong: #ffffff;
--muted: #b8c3df;
--accent: #6ee7b7;
--accent-strong: #22c55e;
Expand Down Expand Up @@ -44,6 +45,11 @@ a {
color: inherit;
}

strong,
b {
color: var(--text-strong);
}

.site-header {
position: sticky;
top: 0;
Expand Down Expand Up @@ -749,7 +755,7 @@ td {
.notice strong {
display: block;
margin-bottom: 0.35rem;
color: var(--text);
color: var(--text-strong);
}

.notice p {
Expand Down
Loading