From 95387eafae5a8641a03a1f88a244b97c986f44fb Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 30 May 2024 12:17:37 +0200 Subject: [PATCH] feat: enhance icon theming flexibility Introduced a new styling rule for `.bs-icon-circle` to apply a subtler background color, improving visual integration across themes. This change complements existing icon styles by offering an alternative option for a less prominent icon appearance, aimed at enhancing UI adaptability and consistency in different contexts. This update is in response to feedback requesting more nuanced design elements for diverse UI backgrounds. --- assets/css/base.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/base.css b/assets/css/base.css index 8481a04..a3dd0ea 100644 --- a/assets/css/base.css +++ b/assets/css/base.css @@ -124,7 +124,11 @@ h5 { } .bs-icon.bs-icon-lg svg { - fill: var(--bs-primary) + fill: var(--bs-primary); +} + +.bs-icon-circle svg { + fill: var(--bs-primary-bg-subtle); } /* Responsive Styles */