fix: Open Responses Styling and Layout (#33717)

* fix: table styling on Instructor Dashboard

Ref: https://github.com/openedx/wg-build-test-release/issues/223
The Open Responses tab on instructor dashboard on LMS has a few issues with table styling; there isn't enough spacing between some columns which makes the text difficult to read, and the bottom of some numbers in the summary table are cutoff
This change adds padding to the right of each column to ensure longer text is still legible and changes the line height from 1em to 1 (unitless), which looks the same but doesn't cut off the bottom

* fix: remove whitespace
Remove extra whitespace line 1862 for better formatting
This commit is contained in:
tspring5000
2024-03-06 22:37:05 +00:00
committed by GitHub
parent 8a2c3ff145
commit 1dab744ba2

View File

@@ -1858,6 +1858,16 @@
.instructor-dashboard-wrapper-2 section.idash-section#open_response_assessment {
.open-response-assessment {
padding-top: 20px;
.open-response-assessment-content {
.open-response-assessment-summary, .open-response-assessment-main-table {
line-height: 1;
table tr td {
padding-right: 20px;
}
}
}
}
}