MDL-10549 css fixes - alignment in popup grading in ff still not ok, hmmm

This commit is contained in:
skodak
2007-08-03 14:32:26 +00:00
parent 90a36f8cdf
commit 38f4c3fc4b
2 changed files with 3 additions and 2 deletions
+3 -1
View File
@@ -871,6 +871,8 @@ class assignment_base {
choose_from_menu(make_grades_menu($this->assignment->grade), 'grade', $submission->grade, get_string('nograde'), '', -1);
echo '</div>';
echo '<div class="clearer"></div>';
if (!empty($CFG->enableoutcomes) and $outcomes_data = grade_get_outcomes($this->course->id, 'mod', 'assignment', $this->assignment->id, $userid)) {
foreach($outcomes_data as $n=>$data) {
echo '<div class="outcome"><label for="menuoutcome_'.$n.'">'.format_string($data->name).'</label> ';
@@ -882,10 +884,10 @@ class assignment_base {
choose_from_menu($options, 'outcome_'.$n.'['.$userid.']', $data->grade, get_string('nooutcome', 'grades'), '', 0, false, false, 0, 'menuoutcome_'.$n);
}
echo '</div>';
echo '<div class="clearer"></div>';
}
}
echo '<div class="clearer"></div>';
$this->preprocess_submission($submission);
-1
View File
@@ -20,7 +20,6 @@
.mod-assignment .feedback .outcome {
float: right;
clear:both;
}
.mod-assignment .feedback .from {