Skip to content

Commit

Permalink
Add remaster table class to _globals.css (#16750)
Browse files Browse the repository at this point in the history
  • Loading branch information
ammalagonc authored Oct 16, 2024
1 parent 41d2770 commit ee96124
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions src/styles/_globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,30 @@ table.pf2-table {
background-color: var(--color-pf-primary-dark);
color: var(--text-light);
font-weight: bold;
padding: 0.5rem 0.25rem;
padding: var(--space-8) var(--space-4);
}

td {
padding: 0.25rem;
padding: var(--space-4);
}

&.remaster {
tr:nth-child(odd) {
background-color: #eee3c8;
}

tr:nth-child(even) {
background-color: #f5efe0;
}

th,
td {
border-color: var(--color-border-light-tertiary);
}

th {
background-color: #002a17;
}
}
}

Expand Down

0 comments on commit ee96124

Please sign in to comment.