Merge branch '8784-dir-listings'
[arvados.git] / services / api / app / assets / stylesheets / nodes.css
1 /* Copyright (C) The Arvados Authors. All rights reserved.
2
3 SPDX-License-Identifier: AGPL-3.0 */
4
5 /*
6   Place all the styles related to the matching controller here.
7   They will automatically be included in application.css.
8 */
9 .node-status {
10     /* unknown status - might be bad */
11     background: #ff8888;
12 }
13 .node-status-running .node-status {
14     background: #88ff88;
15 }
16 .node-status-missing .node-status {
17     background: #ff8888;
18 }
19 .node-status-terminated .node-status {
20     background: #ffffff;
21 }
22
23 .node-slurm-state {
24     /* unknown status - might be bad */
25     background: #ff8888;
26 }
27 .node-status-missing .node-slurm-state {
28     background: #ffffff;
29 }
30 .node-status-terminated .node-slurm-state {
31     background: #ffffff;
32 }
33 .node-status-running .node-slurm-state-alloc {
34     background: #88ff88;
35 }
36 .node-status-running .node-slurm-state-idle {
37     background: #ffbbbb;
38 }
39 .node-status-running .node-slurm-state-down {
40     background: #ff8888;
41 }