From 185d9642637a0bf054e99656f7867a78f9656565 Mon Sep 17 00:00:00 2001 From: Iris Nebula <6500579+milroneth@users.noreply.github.com> Date: Tue, 11 Oct 2022 14:23:45 +0300 Subject: [PATCH] Make Rounded Keyboard compatible with other themes Adds the `!important` rule to specific declarations to override other themes, so that they can be used in conjuction, without the user needing to manually disable and re-enable this one on every boot to force load it last. --- Rounded Keyboard/shared.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rounded Keyboard/shared.css b/Rounded Keyboard/shared.css index be5eec4..d5a198c 100644 --- a/Rounded Keyboard/shared.css +++ b/Rounded Keyboard/shared.css @@ -3,8 +3,8 @@ } .DefaultTheme .virtualkeyboard_KeyboardKey_2KhPX { - border-radius: var(--keyboard-rounding-amount); - box-shadow: 0px 0px 2.5px #1d1d1dcf; + border-radius: var(--keyboard-rounding-amount) !important; + box-shadow: 0px 0px 2.5px #1d1d1dcf !important; transform: scale(0.98); }