css: tree: add some classes for specific locks

Add classes for suspended, suspending and migration.

They use the same symbol as in the buttons for consitency, size is a
bit smaller to fit better for the tree.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-06-13 21:32:46 +02:00
parent 82a33d4ef7
commit 9ba642dd0e

View File

@ -183,6 +183,29 @@
color: #000000;
}
.x-tree-icon-custom.lock-migrate:after,
.x-grid-icon-custom.lock-migrate:after {
content: "\f1d9";
#color: #21BF4B;
color: #000000;
font-size: 0.75em;
}
.x-tree-icon-custom.lock-suspending:after,
.x-grid-icon-custom.lock-suspending:after {
content: "\f019";
color: #CC8E00;
font-size: 0.75em;
}
.x-tree-icon-custom.lock-suspended:after,
.x-grid-icon-custom.lock-suspended:after {
content: "\f019";
color: #000000;
font-size: 0.75em;
}
/* yellow ! triangle */
.x-tree-icon-custom.io-error:after,
.x-grid-icon-custom.io-error:after,
@ -607,4 +630,4 @@ table.osds td:first-of-type {
.install-mask {
background-color: rgb(245, 245, 245);
color: #000;
}
}