-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[FIX] Report Table: Make Table Headers Bold #2668
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default HTML style sheets must have changed. I'm sure headers were bold before.
I like the change. But what if we changed the style definition for the |
e996094
to
aa50fb3
Compare
Codecov Report
@@ Coverage Diff @@
## master #2668 +/- ##
=======================================
Coverage 75.51% 75.51%
=======================================
Files 332 332
Lines 58014 58014
=======================================
Hits 43812 43812
Misses 14202 14202 |
aa50fb3
to
46d0f7f
Compare
I agree. Please, check again. |
Could we avoid
What if we had
and then replace Another benefit from this would be that our HTML would look a small tad less like it was generated by Word. :) |
46d0f7f
to
8cd1b24
Compare
8cd1b24
to
41f4f8f
Compare
Fixed, please check again. |
Issue
When reporting a view (or model?) through
report_table
header column and row is printed in the same format as the data values. Although there is a code that mark header columns as<th>
(and not as<td>
) this is invalidated by thefont-weight
attribute.E.g. in
Test & Score
before:and after:
Description of changes
Set
font-weight
tobold
when inside header so<th>
is not invalidated.Includes