From 84ecfc817dc32912b74f580688b8790dfb6961e5 Mon Sep 17 00:00:00 2001 From: kraanzu Date: Mon, 18 Dec 2023 17:08:06 +0530 Subject: [PATCH] ui: add css for `PunctuationStripSetting` --- termtyper/ui/css/themes/nord.sass | 4 ++++ termtyper/ui/css/themes/nord.tcss | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/termtyper/ui/css/themes/nord.sass b/termtyper/ui/css/themes/nord.sass index eeaa9dc0..ad14dc20 100644 --- a/termtyper/ui/css/themes/nord.sass +++ b/termtyper/ui/css/themes/nord.sass @@ -82,6 +82,10 @@ StripSetting &.theme-nord background: $black2 + &.enabled + color: $frost_blue + text-style: bold + &:hover color: $frost_cyan diff --git a/termtyper/ui/css/themes/nord.tcss b/termtyper/ui/css/themes/nord.tcss index 1483ac51..3488031d 100644 --- a/termtyper/ui/css/themes/nord.tcss +++ b/termtyper/ui/css/themes/nord.tcss @@ -61,6 +61,10 @@ Ticker.theme-nord { StripSetting.theme-nord { background: #3b4252; } +StripSetting.theme-nord.enabled { + color: #81a1c1; + text-style: bold; +} StripSetting.theme-nord:hover { color: #88c0d0; }