From fec03138c23258cf772f52e0f08f166781fa2bfe Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 3 Mar 2024 13:58:51 +0100 Subject: [PATCH] refactor(ui): refine simulator button style MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- ui/web/src/views/ChargingStationsView.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ui/web/src/views/ChargingStationsView.vue b/ui/web/src/views/ChargingStationsView.vue index 9db389a2..f5ba1f92 100644 --- a/ui/web/src/views/ChargingStationsView.vue +++ b/ui/web/src/views/ChargingStationsView.vue @@ -323,11 +323,20 @@ const stopSimulator = (): void => { background-color: green; } +.simulator-start-button:hover { + color: ivory; + background-color: rgb(0, 98, 0); +} + .simulator-stop-button { color: ivory; background-color: red; } +.simulator-stop-button:hover { + background-color: rgb(225, 0, 0); +} + #action-button { flex: none; } -- 2.34.1