diff --git a/lms/static/coffee/src/staff_grading/staff_grading.coffee b/lms/static/coffee/src/staff_grading/staff_grading.coffee
index e5fba57710..abcf99e40b 100644
--- a/lms/static/coffee/src/staff_grading/staff_grading.coffee
+++ b/lms/static/coffee/src/staff_grading/staff_grading.coffee
@@ -98,7 +98,7 @@ The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for t
message: 'No more submissions'
- if @mock_cnt % 3 == 0
+ if @mock_cnt % 7 == 0
response =
success: false
error: 'An error for testing'
@@ -340,9 +340,9 @@ class StaffGrading
else if @state == state_grading
@ml_error_info_container.html(@ml_error_info)
meta_list = $("
")
- meta_list.append("- Pending: #{@num_pending}
")
- meta_list.append("- Graded: #{@num_graded}
")
- meta_list.append("- Needed for ML: #{Math.max(@min_for_ml - @num_graded)}
")
+ meta_list.append("- Pending - #{@num_pending}
")
+ meta_list.append("- Graded - #{@num_graded}
")
+ meta_list.append("- Needed for ML - #{Math.max(@min_for_ml - @num_graded)}
")
@problem_meta_info.html(meta_list)
@prompt_container.html(@prompt)
diff --git a/lms/static/sass/course/_staff_grading.scss b/lms/static/sass/course/_staff_grading.scss
index 3de22d40bb..f1b6c5845d 100644
--- a/lms/static/sass/course/_staff_grading.scss
+++ b/lms/static/sass/course/_staff_grading.scss
@@ -1,6 +1,6 @@
div.staff-grading {
textarea.feedback-area {
- height: 100px;
+ height: 75px;
margin: 20px;
}
@@ -53,7 +53,19 @@ div.staff-grading {
{
background-color: #eee;
padding:15px;
- margin-left:0px;
+ h3
+ {
+ font-size:1em;
+ }
+ ul
+ {
+ list-style-type: none;
+ font-size: .85em;
+ li
+ {
+ margin: 5px 0px;
+ }
+ }
}
.message-container
{
diff --git a/lms/templates/instructor/staff_grading.html b/lms/templates/instructor/staff_grading.html
index dd5aa9ae08..f7c0d4d568 100644
--- a/lms/templates/instructor/staff_grading.html
+++ b/lms/templates/instructor/staff_grading.html
@@ -17,14 +17,6 @@
-
Staff grading
@@ -45,6 +37,14 @@