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

Only make column headers bold, not row headers #483

Merged
merged 1 commit into from
Jul 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Only make column headers bold, not row headers
Having row headers is very important for accessibility.
But all of our table headers are bold,
and that often doesn't look good with long row headers.
People who understand table semantics would need to overwrite that.
And people who don't understand semantics might choose not to use them.
selfthinker committed Jun 2, 2017
commit 2c25fe4a80a2122c82f997c5117c2758f7f56244
2 changes: 1 addition & 1 deletion assets/sass/elements/_tables.scss
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ table {
border-bottom: 1px solid $border-colour;
}

th {
thead th {
font-weight: 700;
}