mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 04:52:36 +02:00
Merge branch 'wip-MDL-35823-master' of git://github.com/phalacee/moodle
This commit is contained in:
commit
3428c00d43
8
help.php
8
help.php
@ -67,7 +67,13 @@ if ($sm->string_exists($identifier.'_help', $component)) {
|
||||
$options->newlines = false;
|
||||
$options->overflowdiv = !$ajax;
|
||||
|
||||
echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 1, 'helpheading');
|
||||
if ($ajax) {
|
||||
// When using AJAX, the header should be H2 as it is in the same DOM as the calling page.
|
||||
echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 2, 'helpheading');
|
||||
} else {
|
||||
// When not using AJAX, the header should be H1 as it is in it's own window.
|
||||
echo $OUTPUT->heading(format_string(get_string($identifier, $component)), 1, 'helpheading');
|
||||
}
|
||||
// Should be simple wiki only MDL-21695
|
||||
echo format_text(get_string($identifier.'_help', $component), FORMAT_MARKDOWN, $options);
|
||||
|
||||
|
@ -494,7 +494,7 @@ div.yui3-widget-bd {
|
||||
background: none;
|
||||
}
|
||||
|
||||
div.yui3-widget-bd h1.helpheading {
|
||||
div.yui3-widget-bd h2.helpheading {
|
||||
font-size: 16px !important;
|
||||
font-weight: 800;
|
||||
margin-top: 5px;
|
||||
|
@ -33,7 +33,8 @@ ul {
|
||||
color:inherit;
|
||||
font-size:inherit;
|
||||
}
|
||||
h1.helpheading {
|
||||
h1.helpheading,
|
||||
h2.helpheading {
|
||||
font-size: 1.6em;
|
||||
}
|
||||
/*extra line abve labels and remove padding right for no icon */
|
||||
|
Loading…
x
Reference in New Issue
Block a user