Skip to content

Commit 1dab744

Browse files
authored
fix: Open Responses Styling and Layout (#33717)
* fix: table styling on Instructor Dashboard Ref: openedx/wg-build-test-release#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
1 parent 8a2c3ff commit 1dab744

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lms/static/sass/course/instructor/_instructor_2.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1858,6 +1858,16 @@
18581858
.instructor-dashboard-wrapper-2 section.idash-section#open_response_assessment {
18591859
.open-response-assessment {
18601860
padding-top: 20px;
1861+
1862+
.open-response-assessment-content {
1863+
.open-response-assessment-summary, .open-response-assessment-main-table {
1864+
line-height: 1;
1865+
1866+
table tr td {
1867+
padding-right: 20px;
1868+
}
1869+
}
1870+
}
18611871
}
18621872
}
18631873

0 commit comments

Comments
 (0)