Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ae6740d
Upgrade Bootstrap to 5.3 for dark theme support
yihao03 Mar 9, 2026
e2cbbe5
Refresh CLI functional outputs for dark mode
yihao03 Mar 9, 2026
a06e8dd
Add runtime page theme switching
yihao03 Mar 9, 2026
a1f02db
Add dark mode toggle and component overrides
yihao03 Mar 9, 2026
19d5368
Update tests
yihao03 Mar 11, 2026
78dcb37
Update hard coded mark and blockquote colors
yihao03 Mar 18, 2026
aa1c98f
Merge branch 'master' into feat/dark-mode
yihao03 Mar 18, 2026
403247f
Run npm i
yihao03 Mar 18, 2026
ddb44d9
Update page nav to use bootstrap colours
yihao03 Mar 18, 2026
e419ccb
Use bootstrap adaptive colors instead of hard coded value for nav
yihao03 Mar 18, 2026
60d6df8
Update previous_next colour
yihao03 Mar 18, 2026
81801be
Add adaptive theme for hot reload loading page
yihao03 Mar 18, 2026
c9ac37d
Add adaptive theme for panels
yihao03 Mar 18, 2026
24bb019
Explicitly specify border colors for boxes
yihao03 Mar 18, 2026
317f499
Define mark in markbind.css instead of main.css
yihao03 Mar 19, 2026
bf22300
Build web and update tests
yihao03 Mar 19, 2026
cd774d6
Respect site.json for darkmode config
yihao03 Mar 20, 2026
7260cdb
Update tests
yihao03 Mar 20, 2026
883b5ef
Merge branch 'master' into feat/dark-mode
yihao03 Mar 20, 2026
08491f9
Merge branch 'master' into feat/dark-mode
yihao03 Mar 23, 2026
f109002
Update package lock
yihao03 Mar 23, 2026
c5ad891
Use bs vars instead of theme overrides
yihao03 Mar 23, 2026
c4af618
Refactor panel to stop using isLightBg
yihao03 Mar 23, 2026
81d0684
Remove conditional rendering in toggle vue
yihao03 Mar 23, 2026
462aa72
Merge branch 'master' into feat/dark-mode
yihao03 Mar 26, 2026
f37c491
Merge branch 'master' into feat/dark-mode
yihao03 Mar 27, 2026
2d74dea
Revert light mode highlight behavioural change
yihao03 Mar 27, 2026
e387406
Refactor inline scripts out of page.njk
yihao03 Mar 27, 2026
54ad07b
Update tests
yihao03 Mar 27, 2026
0c02d85
Merge branch 'master' into feat/dark-mode
yihao03 Mar 27, 2026
a0c16a7
Fixed thead divider regression
yihao03 Mar 27, 2026
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
7 changes: 0 additions & 7 deletions docs/css/main.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
mark {
background-color: #ff0;
border-radius: 5px;
padding-top: 0;
padding-bottom: 0;
}

.indented {
padding-left: 20px;
}
Expand Down
4 changes: 2 additions & 2 deletions docs/njk/common.njk
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{% macro previous_next(previous_page, next_page) %}
<div class="clearfix">
{% if previous_page != ''%}
<span class="float-start"><a class="btn btn-light" href="{{ previous_page }}.html"><md>:far-arrow-alt-circle-left: <include src="{{ previous_page }}.md#title" inline /></md></a></span>
<span class="float-start"><a class="btn" href="{{ previous_page }}.html"><md>:far-arrow-alt-circle-left: <include src="{{ previous_page }}.md#title" inline /></md></a></span>
{% endif %}
{% if next_page != ''%}
<span class="float-end"><a class="btn btn-light" href="{{ next_page }}.html"><md><include src="{{ next_page }}.md#title" inline /> :far-arrow-alt-circle-right:</md></a></span>
<span class="float-end"><a class="btn" href="{{ next_page }}.html"><md><include src="{{ next_page }}.md#title" inline /> :far-arrow-alt-circle-right:</md></a></span>
{% endif %}
</div>
<br>
Expand Down
67 changes: 41 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading