From 7a4f32f79397a058c2fbe85b9d8961c57849fb8b Mon Sep 17 00:00:00 2001 From: MasssiveJuice Date: Mon, 23 Sep 2024 22:45:03 +1200 Subject: [PATCH] Fix: Infobox table bg color sucks on light-mode Removed Infobox table background color: Tables in Infobox Callouts (set to `rgb(30, 30, 30)`) look good on darkmode, but terrible in lightmode. None of the built-in Quartz color variables are suitable substitutes. I could create a variable, but TBH it looks fine without a background color. --- mmw-content/.obsidian/snippets/mmw-infobox-callout.css | 1 - quartz/styles/custom/infobox-callout.scss | 1 - 2 files changed, 2 deletions(-) diff --git a/mmw-content/.obsidian/snippets/mmw-infobox-callout.css b/mmw-content/.obsidian/snippets/mmw-infobox-callout.css index 70d1486..7886feb 100644 --- a/mmw-content/.obsidian/snippets/mmw-infobox-callout.css +++ b/mmw-content/.obsidian/snippets/mmw-infobox-callout.css @@ -72,7 +72,6 @@ width: 100%; font-size: 16px; border: 1px, solid, rgba(255, 255, 255, 0.1); - background-color: rgb(30, 30, 30); } .callout[data-callout="infobox"] th { diff --git a/quartz/styles/custom/infobox-callout.scss b/quartz/styles/custom/infobox-callout.scss index 7d68019..d62d4a1 100644 --- a/quartz/styles/custom/infobox-callout.scss +++ b/quartz/styles/custom/infobox-callout.scss @@ -80,7 +80,6 @@ width: 100%; font-size: 16px; border: 1px solid rgba(255, 255, 255, 0.1); - background-color: rgb(30, 30, 30); } .callout[data-callout="infobox"] th {