From 39d271316e510a04060b462ad0045b8c5b317b34 Mon Sep 17 00:00:00 2001 From: thismoon <107642606+thismoon@users.noreply.github.com> Date: Mon, 19 Aug 2024 08:13:16 +0100 Subject: [PATCH] fix(stylus): unthemed elements (#1215) * fix(stylus): unthemed elements * fix(stylus): increase version number * fix(stylus): invalid input colors --- styles/stylus/catppuccin.user.css | 39 ++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/styles/stylus/catppuccin.user.css b/styles/stylus/catppuccin.user.css index 07627d338b..036c56b1fa 100644 --- a/styles/stylus/catppuccin.user.css +++ b/styles/stylus/catppuccin.user.css @@ -2,7 +2,7 @@ @name Stylus Catppuccin @namespace github.com/catppuccin/userstyles/styles/stylus @homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/stylus -@version 1.2.2 +@version 1.2.3 @updateURL https://github.com/catppuccin/userstyles/raw/main/styles/stylus/catppuccin.user.css @supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Astylus @description Soothing pastel theme for Stylus @@ -92,6 +92,10 @@ --color-on: fade(@accent-color, 25%); --color-off: @surface2; } + :focus { + --focus-color1: @accent-color !important; + --focus-color2: fade(@accent-color, 25%) !important; + } } .active #filters-stats, @@ -243,6 +247,39 @@ .CodeMirror-activeline-background { background: @mantle; } + #live-reload-install-hint { + color: @teal; + } + #menu.delete header { + background: fade(@red, 25%); + } + #menu.delete > div, + #menu.delete [data-cmd="delete"] { + border-color: @red; + } + .entry.odd { + background-color: fade(@surface0, 25%); + } + .updater-icons > :not(.check-update)::after { + border-color: @yellow; + background: @base; + } + .split-btn-menu { + border-color: @accent-color; + } + .split-btn-menu > :hover { + background: fade(@accent-color, 25%); + } + #help-popup .title { + background: @mantle; + } + #toc li:hover { + background: fade(@accent-color, 20%); + } + input:invalid { + background: fade(@red, 10%); + color: @red; + } } }