Commit Graph

51 Commits (24c9777a5202a9fc9a86525955ba08ec3b2dc6ec)

Author SHA1 Message Date
Adam Brangenberg 614a6222a1
refactor: General performance/style improvements ()
Jacky Zhao e9aa6ae9e7 feat: docker docs, semantic search alpha
SafEight de2b6b9a1b
feat: Replace == with <mark> ()
Co-authored-by: SAF <saf@saf.saf>
Charles Chamberlain 3409a49f15
fix: Apply monospace style to all meta in a popover ()
Jacky Zhao 2145e92b00 fix: make latex rendering size more simialr to obsidian
Jacky Zhao 83e7aec3c9 fix: tag list styling
Youssif Shaaban Alsager 25ba1159ad
feat: Add internationalization (i18n) support ()
Jacky Zhao a78926ede5 feat: link previews to page-list (closes )
Jacky Zhao 5c76d8dad9 fix: make callout detection case-insensitive (closes )
Jacky Zhao ff770927fd
style: _callouts.scss simplification ()
Jacky Zhao 234c707a93 docs: improve scss structure and admonition styling, update docs
Emile Bangma 728d8529ec
Support Admonition callouts () (closes )
Jacky Zhao dff5ae0d4d style: improve header anchor styling
Jacky Zhao b2555ced61 feat: add description section to section/term/taxonomies, fix header margin
Jacky Zhao 7ccff2cf3d fix: styling on page-list for smaller screens
Jacky Zhao e0b6606d50 fix: make section-li scss more generic
Jacky Zhao d7a42a2fd7 feat: improve styling for lists, fix anchor offset
Jacky Zhao 422b6cc25b feat: css typography improvements
Jacky Zhao 22c8981bb9 feat: css refactor for easy font change
Jacky Zhao ffe22689eb feat: use floating-ui for better popover positioning
Jacky Zhao c1b8fe1221 feat: restyle search icon
Jacky Zhao b7a619bbd7 fix: tabsize not being respected
Geoffrey Garrett f54df35767
Copy to clipboard feature for code block ()
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
Jacky Zhao a8137edf24 fix: adjust weird colours for err highlighting
Geoffrey Garrett d3e20b8b94
Added optional rendering of code block titles ()
Jacky Zhao 8b2fba895a feat: image scaling (closes )
Aiden Bai ae240ff82c
Remove redundant CSS rule
Aiden Bai 44984cdaf4
Add support for progress bar
Jacky Zhao 0293c12217 feat: recent posts section/partial
Jacky Zhao 0b6711c218 fix: tag boxes overlapping for content with many tags (closes )
Jacky Zhao ed9a8efd1f fix inline link highlighting, safer latex render
Jacky Zhao e302f6c423 fix: more generic style to match bad nesting generated by popover interp
Jacky Zhao cea0f3eb74 feat: contextual backlinks (closes )
Jacky Zhao fc89ff2680 fix: broken semi and graph min-height
Jacky Zhao b8a660e208 feat: copyable header anchors (fixes )
Jacky Zhao 87b5a7a251 feat: show graph titles on zoom (fixes )
Jacky Zhao c8d390dbc5 fix: always hide popover on mobile (fixes )
Jacky Zhao f05ff5e62d fix: add dropshadow to popover, cleanup animation
Jacky Zhao 12ed9722d8 fix: popover selection wrongly including line breaks
Jacky Zhao 7808c66c4d fix: align footer links
meleu 671fe05312
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
meleu a287d11246 add a collapsible ToC
Jacky Zhao cc86136bcb feat: basic latex support
Jacky Zhao 8e083d4a93
Merge pull request from meleu/patch-2
meleu a469653f75 separate contact links semantically
Jacky Zhao c51573efa9 feat: grey out broken links
Jacky Zhao 3674df48b8 fix pagination styling
Claudio Yanes f70128a3de
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue)  is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
Claudio Yanes b96c60edfc Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo
Claudio Yanes dc9b421e21 Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).

Using paddings prevents this “extra space” from scraping and displacing
the body.

Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.