Skip to content

Commit 098d557

Browse files
authored
Merge pull request #35 from minervaproject/unsubmitted-makeup-work-highlight
Add highlight to unsubmitted makeup work in FDS tables
2 parents 6f72bcc + 38c4b7d commit 098d557

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

dist/forum-design-system.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1799,6 +1799,8 @@ a.underlined-link, .underlined-links a {
17991799
font-style: normal;
18001800
font-weight: var(--font-weight-normal);
18011801
line-height: calc(10 / 7); }
1802+
.fds-table tbody tr:nth-child(n).makeup-work-unsubmitted, .fds-table .tbody tr:nth-child(n).makeup-work-unsubmitted {
1803+
background-color: var(--orange-tint-90); }
18021804
.fds-table tbody tr:nth-child(2n+1), .fds-table tbody .tr:nth-child(2n+1), .fds-table .tbody tr:nth-child(2n+1), .fds-table .tbody .tr:nth-child(2n+1) {
18031805
background-color: var(--black-tint-97); }
18041806
.fds-table td, .fds-table .td {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "forum-design-system",
3-
"version": "0.1.31",
3+
"version": "0.1.32",
44
"description": "",
55
"style": "src/index.css",
66
"main": "src/index.css",

src/components/_table.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
tbody, .tbody {
2323
@include body-s;
2424

25+
tr:nth-child(n).makeup-work-unsubmitted {
26+
background-color: var(--orange-tint-90);
27+
}
28+
2529
tr:nth-child(2n+1), .tr:nth-child(2n+1) {
2630
background-color: var(--black-tint-97);
2731
}

0 commit comments

Comments
 (0)