8784: Fix test for latest firefox.
[arvados.git] / services / api / app / assets / stylesheets / nodes.css
1 /*
2   Place all the styles related to the matching controller here.
3   They will automatically be included in application.css.
4 */
5 .node-status {
6     /* unknown status - might be bad */
7     background: #ff8888;
8 }
9 .node-status-running .node-status {
10     background: #88ff88;
11 }
12 .node-status-missing .node-status {
13     background: #ff8888;
14 }
15 .node-status-terminated .node-status {
16     background: #ffffff;
17 }
18
19 .node-slurm-state {
20     /* unknown status - might be bad */
21     background: #ff8888;
22 }
23 .node-status-missing .node-slurm-state {
24     background: #ffffff;
25 }
26 .node-status-terminated .node-slurm-state {
27     background: #ffffff;
28 }
29 .node-status-running .node-slurm-state-alloc {
30     background: #88ff88;
31 }
32 .node-status-running .node-slurm-state-idle {
33     background: #ffbbbb;
34 }
35 .node-status-running .node-slurm-state-down {
36     background: #ff8888;
37 }