Skip to content

Commit

Permalink
Merge branch 'MDL-62365-master' of git://github.com/bmbrands/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
David Monllao committed May 14, 2018
2 parents 62b94b4 + 04b1bea commit 3558897
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/classes/output/icon_system_fontawesome.php
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public function get_core_icon_map() {
'core:i/mnethost' => 'fa-external-link',
'core:i/moodle_host' => 'fa-graduation-cap',
'core:i/move_2d' => 'fa-arrows',
'core:i/navigationitem' => 'fa-circle-thin',
'core:i/navigationitem' => 'fa-fw',
'core:i/ne_red_mark' => 'fa-remove',
'core:i/new' => 'fa-bolt',
'core:i/news' => 'fa-newspaper-o',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public function category_listitem(coursecat $category, array $subcategories, $to
);
} else {
$icon = $this->output->pix_icon(
'i/navigationitem',
'i/empty',
'',
'moodle',
array('class' => 'tree-icon', 'title' => get_string('showcategory', 'moodle', $text))
Expand Down
2 changes: 1 addition & 1 deletion theme/boost/classes/output/core_renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ protected function build_action_menu_from_navigation(action_menu $menu,
$link = new action_link(new moodle_url('#'), $menuitem->text, null, ['disabled' => true], $menuitem->icon);
}
if ($indent) {
$link->add_class('ml-2');
$link->add_class('ml-4');
}
if (!empty($menuitem->classes)) {
$link->add_class(implode(" ", $menuitem->classes));
Expand Down

0 comments on commit 3558897

Please sign in to comment.