updated CSS for table to target only tables in change forms. Updated styling for dark mode.

This commit is contained in:
CocoByte 2024-05-29 10:45:37 -06:00
parent 29288aca62
commit 7221e2c0d0
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F

View file

@ -151,9 +151,6 @@ html[data-theme="dark"] {
}
}
.usa-table td {
border-bottom: 1px solid var(--hairline-color);
}
#branding h1 a:link, #branding h1 a:visited {
color: var(--primary-fg);
@ -186,6 +183,18 @@ div#content > h2 {
}
}
.change-form {
.usa-table--striped tbody tr:nth-child(odd) td,
.usa-table--striped tbody tr:nth-child(odd) th,
.usa-table td,
.usa-table th {
background-color: transparent;
}
.usa-table th {
background-color: transparent;
}
}
#nav-sidebar {
padding-top: 20px;
}