From 408151c9cb7126914be312a4019680645af8dd6c Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 2 May 2024 22:50:07 +0300 Subject: [PATCH] Use menu_button style colors --- public/css/world-info.css | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/public/css/world-info.css b/public/css/world-info.css index df1917504..ef814a104 100644 --- a/public/css/world-info.css +++ b/public/css/world-info.css @@ -197,13 +197,20 @@ display: none; } +#world_info+span.select2-container .select2-selection__choice__remove, #world_info+span.select2-container .select2-selection__choice__display { cursor: pointer; - margin-left: 1px; /* Fix weird alignment on the left side */ + transition: background-color 0.3s; + color: var(--SmartThemeBodyColor); + background-color: var(--black50a); } +#world_info+span.select2-container .select2-selection__choice__display { + /* Fix weird alignment on the left side */ + margin-left: 1px; +} + +#world_info+span.select2-container .select2-selection__choice__remove:hover, #world_info+span.select2-container .select2-selection__choice__display:hover { - background-color: #f1f1f1; - color: #333; - outline: none; - } + background-color: var(--white30a); +}