Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add remaster table class to _globals.css #16750

Merged
merged 11 commits into from
Oct 16, 2024
30 changes: 30 additions & 0 deletions src/styles/_globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,36 @@ table.pf2-table {
td {
padding: 0.25rem;
}

&.remaster {
color: var(--text-dark);
font-size: var(--font-size-13);

ammalagonc marked this conversation as resolved.
Show resolved Hide resolved
tr:nth-child(odd) {
background-color: #eee3c8;
}

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

th,
td {
border: solid 1px var(--color-border-light-tertiary);
text-align: center;
ammalagonc marked this conversation as resolved.
Show resolved Hide resolved
}

th {
background-color: #002a17;
color: var(--text-light);
font-weight: bold;
ammalagonc marked this conversation as resolved.
Show resolved Hide resolved
padding: 0.5rem 0.25rem;
ammalagonc marked this conversation as resolved.
Show resolved Hide resolved
}

td {
padding: 0.25rem;
}
ammalagonc marked this conversation as resolved.
Show resolved Hide resolved
}
}

@mixin inline-link {
Expand Down
Loading