Commit f753a09f by Brian Talbot Committed by cahrens

LMS: revises membership UI layout on instructor dashboard

parent 9e366fe2
...@@ -329,16 +329,12 @@ section.instructor-dashboard-content-2 { ...@@ -329,16 +329,12 @@ section.instructor-dashboard-content-2 {
.instructor-dashboard-wrapper-2 section.idash-section#membership { .instructor-dashboard-wrapper-2 section.idash-section#membership {
$half_width: $baseline * 20; $half_width: $baseline * 20;
.vert-left, .membership-section {
.vert-right { margin-bottom: $baseline;
display: inline-block;
vertical-align: top;
width: 48%;
margin-right: 2%;
}
.vert-right { &:last-child {
margin-right: 0; margin-bottom: 0; // last child!
}
} }
.batch-enrollment, .batch-beta-testers { .batch-enrollment, .batch-beta-testers {
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
</div> </div>
</script> </script>
<div class="batch-enrollment"> <section class="batch-enrollment membership-section">
<h2> ${_("Batch Enrollment")} </h2> <h2> ${_("Batch Enrollment")} </h2>
<p> <p>
<label for="student-ids"> <label for="student-ids">
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<label for="auto-enroll">${_("Auto Enroll")}</label> <label for="auto-enroll">${_("Auto Enroll")}</label>
<div class="hint auto-enroll-hint"> <div class="hint auto-enroll-hint">
<span class="hint-caret"></span> <span class="hint-caret"></span>
<p> <p>
${_("If this option is <em>checked</em>, users who have not yet registered for {platform_name} will be automatically enrolled.").format(platform_name=settings.PLATFORM_NAME)} ${_("If this option is <em>checked</em>, users who have not yet registered for {platform_name} will be automatically enrolled.").format(platform_name=settings.PLATFORM_NAME)}
${_("If this option is left <em>unchecked</em>, users who have not yet registered for {platform_name} will not be enrolled, but will be allowed to enroll once they make an account.").format(platform_name=settings.PLATFORM_NAME)} ${_("If this option is left <em>unchecked</em>, users who have not yet registered for {platform_name} will not be enrolled, but will be allowed to enroll once they make an account.").format(platform_name=settings.PLATFORM_NAME)}
<br /><br /> <br /><br />
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<label for="email-students">${_("Notify users by email")}</label> <label for="email-students">${_("Notify users by email")}</label>
<div class="hint email-students-hint"> <div class="hint email-students-hint">
<span class="hint-caret"></span> <span class="hint-caret"></span>
<p> <p>
${_("If this option is <em>checked</em>, users will receive an email notification.")} ${_("If this option is <em>checked</em>, users will receive an email notification.")}
</p> </p>
</div> </div>
...@@ -66,10 +66,10 @@ ...@@ -66,10 +66,10 @@
</div> </div>
<div class="request-response"></div> <div class="request-response"></div>
<div class="request-response-error"></div> <div class="request-response-error"></div>
</div> </section>
%if section_data['access']['instructor']: %if section_data['access']['instructor']:
<div class="batch-beta-testers"> <section class="batch-beta-testers membership-section">
<h2> ${_("Batch Beta Tester Addition")} </h2> <h2> ${_("Batch Beta Tester Addition")} </h2>
<p> <p>
<label for="student-ids-for-beta"> <label for="student-ids-for-beta">
...@@ -109,10 +109,10 @@ ...@@ -109,10 +109,10 @@
<div class="request-response"></div> <div class="request-response"></div>
<div class="request-response-error"></div> <div class="request-response-error"></div>
</div> </section>
%endif %endif
<div class="member-lists-management"> <section class="member-lists-management membership-section">
## Translators: an "Administration List" is a list, such as Course Staff, that users can be added to. ## Translators: an "Administration List" is a list, such as Course Staff, that users can be added to.
<h2> ${_("Administration List Management")} </h2> <h2> ${_("Administration List Management")} </h2>
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
></div> ></div>
%endif %endif
</div> </section>
%if course.is_cohorted: %if course.is_cohorted:
<hr class="divider" /> <hr class="divider" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment