pub / ktistec-tweaks

Tweaks for the ActivityPub server ktistec
git clone https://src.jayvii.de/pub/ktistec-tweaks.git
Home | Log | Files | Exports | Refs | Submodules | README | RSS

commit f4bdedb5e8d2b3d62e0228c6f98ea99305d3ae35
parent 82b8e8f2350977ba3e23513ed5522764cc819a98
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Mon, 15 Jul 2024 18:34:22 +0200

fix: adjustments for various elements

Diffstat:
Mcss/darkmode.css | 32+++++++++++++++++++++++++++++---
1 file changed, 29 insertions(+), 3 deletions(-)

diff --git a/css/darkmode.css b/css/darkmode.css @@ -88,7 +88,6 @@ text-decoration: none !important; } - /* Editor Form */ trix-editor, textarea, @@ -128,6 +127,13 @@ color: var(--fg1) !important; } + /* Post Labels */ + .ui.text.container .ui.feed .detailed.event .content .extra.detail .ui.labels .ui.small.label + { + background-color: var(--bg2) !important; + color: var(--fg1) !important; + } + /* Post Actions */ .ui.button, section.ui.feed .content .meta .ui.inline.form, @@ -173,11 +179,23 @@ } /* Profile Button */ - .ui.button { + .ui.button + { color: var(--fg1) !important; background-color: var(--hl1) !important; } + /* Profile cards */ + .ui.text.container .ui.cards .ui.fluid.actor.card, + .ui.text.container .ui.cards .ui.fluid.actor.card .extra.content + { + color: var(--fg1) !important; + background-color: var(--bg2) !important; + } + .ui.text.container .ui.cards .ui.fluid.actor.card .extra.content a .meta { + color: var(--hl1) !important; + } + /* Code Blocks */ code, pre { @@ -204,6 +222,14 @@ .ui.text.container .ui.basic.very.padded.center.aligned.segment .ui.icon.header .icon { color: var(--fg1) !important; - } + + /* Danger Buttons */ + .ui.dangerous.button, + .ui.text.container .ui.cards .ui.fluid.actor.card .extra.content .ui.form.right.floated .ui.button.dangerous + { + background-color: var(--danger) !important; + color: var(--fg1) !important; + } + }