]> git.proxmox.com Git - pve-manager.git/commitdiff
css: tree: add some classes for specific locks
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 13 Jun 2019 19:32:46 +0000 (21:32 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 13 Jun 2019 19:32:49 +0000 (21:32 +0200)
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>
www/css/ext6-pve.css

index b5dbd4f675a8daed973d0ffadf7c37615817e205..d4754a5c5a58ea044163c6978c222a50a5a89569 100644 (file)
     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;
-}
\ No newline at end of file
+}