Merge pull request #28399 from edx/mohtamba/adjust-special-exam-dropdown-spacing
Fixed spacing on special exam dropdown headers
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
$(function() {
|
||||
var icons = {
|
||||
header: 'ui-icon-carat-1-e',
|
||||
activeHeader: 'ui-icon-carat-1-s'
|
||||
header: 'ui-icon-carat-1-s',
|
||||
activeHeader: 'ui-icon-carat-1-n'
|
||||
};
|
||||
var $proctoringAccordionPane = $('#proctoring-accordion');
|
||||
$proctoringAccordionPane.accordion(
|
||||
|
||||
@@ -2584,6 +2584,10 @@ input[name="subject"] {
|
||||
font-size: em(13);
|
||||
}
|
||||
}
|
||||
|
||||
.special-exam-header {
|
||||
padding-left: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.special-allowance-container,
|
||||
|
||||
@@ -10,22 +10,22 @@ import pytz
|
||||
% endif
|
||||
<div id="proctoring-accordion">
|
||||
<div class="wrap">
|
||||
<h3 class="hd hd-3">${_('Allowance Section')}</h3>
|
||||
<h3 class="hd hd-3 special-exam-header">${_('Allowance Section')}</h3>
|
||||
<div class="special-allowance-container" data-course-id="${ section_data['course_id'] }"data-enable-bulk-allowance="${ section_data['enable_bulk_allowance'] }"></div>
|
||||
</div>
|
||||
% if section_data['show_onboarding']:
|
||||
<div class="wrap">
|
||||
<h3 class="hd hd-3">${_('Student Onboarding Status')}</h3>
|
||||
<h3 class="hd hd-3 special-exam-header">${_('Student Onboarding Status')}</h3>
|
||||
<div class="student-onboarding-status-container" data-course-id="${ section_data['course_id'] }"></div>
|
||||
</div>
|
||||
% endif
|
||||
<div class="wrap">
|
||||
<h3 class="hd hd-3">${_('Student Special Exam Attempts')}</h3>
|
||||
<h3 class="hd hd-3 special-exam-header">${_('Student Special Exam Attempts')}</h3>
|
||||
<div class="student-proctored-exam-container" data-course-id="${ section_data['course_id'] }"></div>
|
||||
</div>
|
||||
% if section_data['show_dashboard']:
|
||||
<div class="wrap">
|
||||
<h3 class="hd hd-3">${_('Review Dashboard')}</h3>
|
||||
<h3 class="hd hd-3 special-exam-header">${_('Review Dashboard')}</h3>
|
||||
<div class="student-review-dashboard-container" data-course-id="${ section_data['course_id'] }"></div>
|
||||
</div>
|
||||
% endif
|
||||
|
||||
Reference in New Issue
Block a user