From c4a7db2fb21ebe18a1511cd0252e845de990a732 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 29 Dec 2022 16:08:15 -0600 Subject: [PATCH] fix styling for active save slot --- src/index.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/index.css b/src/index.css index 13a5f26..ab27245 100644 --- a/src/index.css +++ b/src/index.css @@ -56,6 +56,12 @@ a { -webkit-app-region: drag; z-index: 1000; } +#view-buttons-bar .active { + background-color: rgba(255, 255, 255, 0.3); + color: white; + border: #61c650; + border-style: solid; +} #view-buttons-bar button { background-color: rgba(255, 255, 255, 0.07); width: 26px; @@ -293,10 +299,6 @@ button:hover { button:focus { outline: none; } -button.active { - background-color: rgba(255, 255, 255, 0.3); - color: white; -} button:disabled { background: rgba(255, 255, 255, 0.03); }