-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
changed <strong> from html to css #2699
Conversation
@agjohnson i just learned html /css last night so tell if i can make some corrections.
@ericholscher is this alright or some thing else needs to be done. |
@ericholscher Isn't this what you wanted me to do with the files from #2503 (review). |
Ping @ericholscher . |
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.
Thanks for the patch! I raised a couple of issue with this PR, and I realize you're just learning some of this -- feel free to raise questions if my feedback isn't clear
<th><p class ="strong">Day (UTC)</p></th> | ||
<th><p class ="strong">Views</p></th> | ||
<th><p class ="strong">Clicks</p></th> | ||
<th><p class ="strong">CTR</p></th> |
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.
My feedback to the original approach was that this didn't need to use <strong>
tags on each cell. Instead of applying <strong>
or <p class="strong">
to each <th>
, we should instead be applying a heavier weight to the table tr th
css selector.
p.strong { | ||
font-weight: bold; | ||
} | ||
</style> |
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.
We don't use inline styles, you'll find our css at media/css/core.css
@Riyuzakii Thanks for the work, but this has been open a bit long! You're welcome to keep contributing in the future. :) |
@agjohnson i just learned html /css last night so tell if i can make some corrections.