]> git.proxmox.com Git - proxmox-widget-toolkit.git/commitdiff
PendingObjectGrid: mark pending changes as orange
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 22 May 2020 07:37:51 +0000 (09:37 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 22 May 2020 07:38:30 +0000 (09:38 +0200)
as red is commonly associated with an error, which pending changes
ain't. But, they should be clearly visible - so use darkorange

grid/PendingObjectGrid.js

index 8163468244ab67fe9bb7e43cb68aca75c12c55c0..b281f443ba96c3c1511af33594c50ddb92040554 100644 (file)
@@ -85,7 +85,7 @@ Ext.define('Proxmox.grid.PendingObjectGrid', {
        }
 
        if (pending) {
-           return current + '<div style="color:red">' + pending + '</div>';
+           return current + '<div style="color:darkorange">' + pending + '</div>';
        } else {
            return current;
        }