Merge pull request #2230 from cisagov/nl/2135-status-table-border-color

Issue #2135 - Updated table rows outside header row to use "var(--hairline color)"
This commit is contained in:
CuriousX 2024-06-03 13:50:28 -06:00 committed by GitHub
commit ba3f2a8ab2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -163,6 +163,7 @@ html[data-theme="dark"] {
}
}
#branding h1 a:link, #branding h1 a:visited {
color: var(--primary-fg);
}
@ -194,6 +195,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 td {
border-bottom: 1px solid var(--hairline-color);
}
}
#nav-sidebar {
padding-top: 20px;
}