From 4539bb1289beda998ededffeb02b75f151162172 Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@mailbox.org>
Date: Thu, 13 Mar 2025 17:47:50 +0100
Subject: [PATCH] Fix CSS styling for buttons in customizeSlaveTrade

---
 css/intro/customizeSlaveTrade.css | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/css/intro/customizeSlaveTrade.css b/css/intro/customizeSlaveTrade.css
index 8108fb8b30d..96cf1264882 100644
--- a/css/intro/customizeSlaveTrade.css
+++ b/css/intro/customizeSlaveTrade.css
@@ -25,40 +25,42 @@
 }
 
 
-.plus-button {
+button.plus-button {
     background: rgba(0, 139, 0, 0.2);
     border-color: rgba(0, 139, 0, 0.3);
 }
 
-.minus-button {
+button.minus-button {
     background: rgba(184, 0, 0, 0.2);
     border-color: rgba(184, 0, 0, 0.3);
 }
 
-.zero-button {
+button.zero-button {
     background: rgba(0, 0, 255, 0.2);
     border-color: rgba(0, 0, 255, 0.3);
 }
-.set-button {
+
+button.set-button {
     background: rgba(255, 210, 0, 0.2);
     border-color: rgba(255, 210, 0, 0.3);
 }
 
-.plus-button:hover {
+button.plus-button:hover {
     background: rgba(0, 139, 0, 0.4);
     border-color: rgba(0, 139, 0, 0.3);
 }
 
-.minus-button:hover {
+button.minus-button:hover {
     background: rgba(184, 0, 0, 0.4);
     border-color: rgba(184, 0, 0, 0.3);
 }
 
-.zero-button:hover {
+button.zero-button:hover {
     background: rgba(0, 0, 255, 0.4);
     border-color: rgba(0, 0, 255, 0.3);
 }
-.set-button:hover {
+
+button.set-button:hover {
     background: rgba(255, 210, 0, 0.4);
     border-color: rgba(255, 210, 0, 0.3);
 }
-- 
GitLab