From 646955be47e8fdf470554ee17803119528f315fa Mon Sep 17 00:00:00 2001 From: winston Date: Wed, 22 Mar 2023 10:32:07 +0100 Subject: [PATCH] fix: text color for "Signed by" commit header --- deps.ts | 2 +- src/_theme.scss | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/deps.ts b/deps.ts index b76c539..010b57a 100644 --- a/deps.ts +++ b/deps.ts @@ -1,2 +1,2 @@ export * as path from "https://deno.land/std@0.180.0/path/mod.ts"; -export * as sass from "npm:sass-embedded"; +export * as sass from "npm:sass-embedded@1.59.3"; diff --git a/src/_theme.scss b/src/_theme.scss index 0ee4400..98d77c6 100644 --- a/src/_theme.scss +++ b/src/_theme.scss @@ -244,6 +244,11 @@ background-color: $base; } +// link color for signed commits +.ui.commit-header-row .svg.gitea-lock ~ a { + color: $crust; +} + ::selection { background: color.change($rosewater, $alpha: 0.3) !important; }