From 4c8374801df3252f51e10a9aeb565baed651f495 Mon Sep 17 00:00:00 2001 From: byte Date: Thu, 1 May 2025 16:23:14 +0000 Subject: [PATCH] changed css to remove and add some stuffs --- content | 2 +- quartz.layout.ts | 9 +++++---- quartz/styles/custom.scss | 14 ++++++++++++++ 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/content b/content index 545140b..0e08875 160000 --- a/content +++ b/content @@ -1 +1 @@ -Subproject commit 545140b92e47568b0a14268c8923301034d7f593 +Subproject commit 0e0887535b6658adb965cb575c683bcc1fabb882 diff --git a/quartz.layout.ts b/quartz.layout.ts index cd89d60..981d91a 100644 --- a/quartz.layout.ts +++ b/quartz.layout.ts @@ -6,7 +6,11 @@ export const sharedPageComponents: SharedLayout = { head: Component.Head(), header: [], afterBody: [], - footer: Component.Spacer(), + footer: Component.Footer({ + links: { + Code: "https://git.schaffenburg.org/byte/speisekarten-quartz", + }, + }), } // components for pages that display a single page (e.g. a single note) @@ -29,14 +33,11 @@ export const defaultContentPageLayout: PageLayout = { Component: Component.Search(), grow: true, }, - { Component: Component.Darkmode() }, - { Component: Component.ReaderMode() }, ], }), Component.Explorer(), ], right: [ - Component.Graph(), Component.DesktopOnly(Component.TableOfContents()), Component.Backlinks(), ], diff --git a/quartz/styles/custom.scss b/quartz/styles/custom.scss index ef46855..5d4a1d5 100644 --- a/quartz/styles/custom.scss +++ b/quartz/styles/custom.scss @@ -38,3 +38,17 @@ display: none; body:has(.page-header ~ article.hideDate) .content-meta { display: none; } + +.popover-hint div.table-container table thead tr { +color: var(--secondary); +} +.popover-hint div.table-container table tbody tr { +border-bottom: 1px solid var(--secondary); +} + +.popover-hint div.table-container table thead tr th { +border-bottom: 2px solid var(--secondary); +} +.popover-hint h2 { +color: var(--secondary); +}