-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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 #4833: prevents text overflow in answer statistics page #6137
Conversation
|
Codecov Report
@@ Coverage Diff @@
## develop #6137 +/- ##
========================================
Coverage 45.33% 45.33%
========================================
Files 525 525
Lines 30869 30869
Branches 4615 4615
========================================
Hits 13993 13993
Misses 16876 16876 Continue to review full report at Codecov.
|
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.
Looks great, thanks! Just a couple of minor fixes and then I'll merge. Thanks :)
@@ -29,4 +29,19 @@ | |||
width: 60%; | |||
word-wrap: break-word; | |||
} | |||
oppia-visualization-frequency-table table td:last-child { |
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.
nit: combine this with the nth-child
selector.
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.
Done!
.table > thead > tr > td, | ||
.table > tbody > tr > td, | ||
.table > tfoot > tr > td { | ||
padding-left: 0px; |
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.
Just use 0
, no need for px
suffix.
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.
Done!
hi @brianrodri Thanks |
Thanks for merging @brianrodri |
Fixes #4833 prevents text overflow in answer statistics page
Supersedes #6132