fix(css): set table heading colours

This commit is contained in:
curben 2019-10-17 12:10:01 +01:00
parent c3ed7a9840
commit 774346e67d
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
1 changed files with 12 additions and 8 deletions

View File

@ -172,12 +172,7 @@ th {
table th,
th {
background: #fbfbfb;
}
table thead th,
thead th {
background: #f1f1f1;
background: #333;
}
em,
@ -842,7 +837,9 @@ svg#link {
code,
kbd,
pre,
samp {
samp,
table th,
th {
background: #333;
}
@ -874,7 +871,9 @@ svg#link {
code,
kbd,
pre,
samp {
samp,
table th,
th {
background: #d8d8d8;
}
@ -890,4 +889,9 @@ svg#link {
background: #333;
color: #f1f1f1;
}
table th,
th {
color: #333;
}
}