From 6565270648bf3bbede9aa447a6fc66c08bd65b29 Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Sat, 27 Feb 2021 13:22:40 -0500 Subject: [PATCH] Change Menu Item Highlight color This change the hover color for the menu item of the menu bar previously it was blue-cyan as the selected entities which was visually annoying when we used the menu over a selection of entities in the list. This hover color is now a grey tonality. --- scripts/system/html/css/edit-style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/system/html/css/edit-style.css b/scripts/system/html/css/edit-style.css index efbb531124..f9eb6e6060 100644 --- a/scripts/system/html/css/edit-style.css +++ b/scripts/system/html/css/edit-style.css @@ -1987,12 +1987,12 @@ button.menu-button { } button.menu-button:hover { - background-color: #00B4EF; + background-color: #919191; border: none; } button.menu-button:active { - background-color: #00B4EF; + background-color: #919191; border: none; }