diff --git a/CHANGELOG.md b/CHANGELOG.md index fcdfcb1c..605eb0f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve ### Changed +- Un-bold paragraphs in table headings + - Means that multi-line table headings are unbolded by default - Remove stroke on CDC logo svg - Add CSS class to add bullets to lists - "Adam 👀" is now "Ready for QA" @@ -24,6 +26,7 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve ### Fixed +- H7 elements are properly recognized as subsections - Add migration to fix previous "PRINT..." audit events that were not JSON formatted - Convert literal asterisks to `*` inside of HTML lists in table cells - More left padding on callout box lists that are NOT in the right hand column diff --git a/bloom_nofos/bloom_nofos/static/styles.css b/bloom_nofos/bloom_nofos/static/styles.css index 623f450b..a0e1db2e 100644 --- a/bloom_nofos/bloom_nofos/static/styles.css +++ b/bloom_nofos/bloom_nofos/static/styles.css @@ -491,6 +491,11 @@ details > summary > span:hover { word-break: break-word; } +.nofo-edit-table--subsection--body table thead th p, +.nofo-edit-table--subsection--body table tbody tr:first-of-type th p { + font-weight: 400; +} + .nofo_edit .nofo-edit-table--subsection--body a.nofo_edit--broken-link, .nofo_edit .nofo-edit-table--subsection--name.nofo_edit--heading-error diff --git a/bloom_nofos/bloom_nofos/static/theme-base.css b/bloom_nofos/bloom_nofos/static/theme-base.css index bf265994..50cb3b15 100644 --- a/bloom_nofos/bloom_nofos/static/theme-base.css +++ b/bloom_nofos/bloom_nofos/static/theme-base.css @@ -409,6 +409,11 @@ table tbody tr:first-of-type th { text-align: left; } +table thead th p, +table tbody tr:first-of-type th p { + font-weight: 400; +} + table thead th > p, table tbody tr:first-of-type th > p { margin-top: 0;