Compare commits

...

6 Commits

Author SHA1 Message Date
557eac9617 Update web/src/app/submissions/[submissionId]/(styles)/page/reviewStatus.scss 2025-06-07 12:12:55 +00:00
f3ee5cbbaa Update web/src/app/submissions/[submissionId]/(styles)/page/reviewStatus.scss 2025-06-07 12:05:34 +00:00
7689001e74 Merge pull request '404 / 500 Thumbnails + Fix Regex Capture Groups' (#168) from staging into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #168
2025-06-07 04:02:26 +00:00
e89abed3d5 Merge pull request 'Thumbnail Fixes + Bypass Submit Button' (#161) from staging into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #161
2025-06-05 01:34:35 +00:00
b792d33164 Merge pull request 'Update Rust Dependencies (Roblox Format Zstd Support)' (#142) from staging into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #142
2025-06-01 23:13:58 +00:00
929b5949f0 Merge pull request 'Snapshot "Working" Code' (#139) from staging into master
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #139
2025-04-27 21:21:05 +00:00

View File

@@ -18,61 +18,61 @@ $Released: "9";
}
&[data-review-status="#{$Released}"] {
background-color: orange;
background-color: rgb(255, 165, 0);
p {
color: white;
}
}
&[data-review-status="#{$Rejected}"] {
background-color: orange;
background-color: rgb(255, 0, 0);
p {
color: white;
}
}
&[data-review-status="#{$Uploading}"] {
background-color: orange;
background-color: rgb(255, 165, 0);
p {
color: white;
}
}
&[data-review-status="#{$Uploaded}"] {
background-color: orange;
background-color: rgb(0, 150, 0);
p {
color: white;
}
}
&[data-review-status="#{$Validated}"] {
background-color: orange;
background-color: rgb(0, 255, 0);
p {
color: white;
}
}
&[data-review-status="#{$Validating}"] {
background-color: orange;
background-color: rgb(255, 165, 0);
p {
color: white;
}
}
&[data-review-status="#{$Accepted}"] {
background-color: rgb(2, 162, 2);
background-color: rgb(0, 150, 0);
p {
color: white;
}
}
&[data-review-status="#{$ChangesRequested}"] {
background-color: orange;
background-color: rgb(255, 125, 0);
p {
color: white;
}
}
&[data-review-status="#{$Submitted}"] {
background-color: orange;
background-color: rgb(255, 165, 0);
p {
color: white;
}
}
&[data-review-status="#{$UnderConstruction}"] {
background-color: orange;
background-color: rgb(0, 150, 255);
p {
color: white;
}