From 2c25fe4a80a2122c82f997c5117c2758f7f56244 Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Fri, 2 Jun 2017 16:19:08 +0100 Subject: [PATCH] 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. --- assets/sass/elements/_tables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/sass/elements/_tables.scss b/assets/sass/elements/_tables.scss index 87e9143ae..cc6e43d94 100644 --- a/assets/sass/elements/_tables.scss +++ b/assets/sass/elements/_tables.scss @@ -16,7 +16,7 @@ table { border-bottom: 1px solid $border-colour; } - th { + thead th { font-weight: 700; }