Skip to content

Commit

Permalink
MDL-18004 Fixed problem of duplicate entries in the drop-down
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasconnault committed Feb 27, 2009
1 parent da6cec8 commit 34f0062
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grade/lib.php
Expand Up @@ -334,7 +334,7 @@ function print_grade_plugin_selector($plugin_info, $return=false) {

if (empty($plugins['id'])) {
foreach ($plugins as $plugin) {
$menu[$plugin['link']] = '    ' . $plugin['string'];
$menu[$plugin['link']] = $plugin['string'];
$count++;
}
}
Expand Down
2 changes: 1 addition & 1 deletion theme/standard/styles_fonts.css
Expand Up @@ -618,7 +618,7 @@ body#grade-index .grades .header {
#grade-aggregation-help code {
font-style: normal;
}
option.optionheader {
#choosepluginreport_jump option.optionheader {
font-weight: bold;
}

Expand Down
10 changes: 9 additions & 1 deletion theme/standard/styles_layout.css
Expand Up @@ -2615,6 +2615,14 @@ div.allcoursegrades {
margin-top: 7px;
}

#choosepluginreport_jump option {
margin-left: 20px;
}

#choosepluginreport_jump option.optionheader {
margin-left: 0px;
}

/***
*** Login
***/
Expand Down Expand Up @@ -5015,7 +5023,7 @@ table.quizreviewsummary td.cell {
margin-top:0.4em;
position:relative;
display:inline-block;

}

#mod-quiz-edit .editq div.question div.content .randomquestioncategory a{
Expand Down

0 comments on commit 34f0062

Please sign in to comment.