Skip to content

Commit 873e93b

Browse files
committed
Add a background to build states which are still in flux
The old webui used to set a background to states which suppose to change.
1 parent 25aafab commit 873e93b

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed

src/api/app/assets/stylesheets/webui2/build-results.scss

+21-6
Original file line numberDiff line numberDiff line change
@@ -23,31 +23,46 @@
2323
}
2424

2525
.build-state-building {
26-
color: $blue;
26+
@extend .text-white;
27+
@extend .px-1;
28+
background-color: $blue;
2729
}
2830

2931
.build-state-scheduled {
30-
color: $cyan;
32+
@extend .text-white;
33+
@extend .px-1;
34+
background-color: $cyan;
3135
}
3236

3337
.build-state-signing, .build-state-finished {
34-
color: $dark;
38+
color: black;
39+
@extend .px-1;
40+
background-color: $yellow;
3541
}
3642

3743
.build-state-unresolvable, .build-state-broken, .build-state-failed {
3844
color: $red;
3945
}
4046

4147
.build-state-disabled {
42-
@extend .text-black-50;
48+
@extend .text-white;
49+
@extend .px-1;
50+
background-color: $gray-600;
4351
}
52+
4453
.build-state-blocked {
4554
@extend .text-white;
46-
@extend .bg-secondary;
4755
@extend .px-1;
56+
background-color: $gray-600;
57+
}
58+
59+
.build-state-scheduled-warning {
60+
@extend .text-white;
61+
@extend .px-1;
62+
background-color: $orange;
4863
}
4964

50-
.build-state-scheduled-warning, .build-state-unknown {
65+
.build-state-unknown {
5166
color: $orange;
5267
}
5368

0 commit comments

Comments
 (0)