From 252e4006d71c7cb1444d4bd11789b32b33dbc650 Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Thu, 30 Jan 2020 19:06:19 +0100 Subject: [PATCH] B #3450: Fix highlighting states for images (#4141) (cherry picked from commit 7493c9b25aa990715237e200499d1fe57da851b3) --- src/sunstone/public/app/utils/status.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/sunstone/public/app/utils/status.js b/src/sunstone/public/app/utils/status.js index 431a74c72d..65706bd949 100644 --- a/src/sunstone/public/app/utils/status.js +++ b/src/sunstone/public/app/utils/status.js @@ -17,14 +17,17 @@ define(function(require) { var resource_states = { IMAGES:{ - CLONE:"#4DBBD3", - INIT:"#4DBBD3", + CLONE:"#8A8A8A", + INIT:"#8A8A8A", READY:"#3adb76", USED:"#3adb76", ERROR:"#ec5840", - DELETE:"#ec5840", - LOCKED:"lightsalmon", - DISABLED:"lightsalmon" + DELETE:"#8A8A8A", + LOCKED:"#8A8A8A", + DISABLED:"#8A8A8A", + USED_PERS: "#3adb76", + LOCKED_USED: "#8A8A8A", + LOCKED_USED_PERS: "#8A8A8A", }, HOST:{ INIT:"#4DBBD3", @@ -103,7 +106,7 @@ define(function(require) { if (lock){ show_lock = "border-left: 3px solid #373537;"; } - + return '' } }) \ No newline at end of file