Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.9
-
Fix Version/s: None
-
Component/s: Themes
-
Labels:None
-
Affected Branches:MOODLE_19_STABLE
Description
While creating some custom icons for a dark background theme, I noticed that the icon referenced in the course administration menu for restore and import are the same. It seems that icons using different icons (perhaps using different colors) would seem more appropriate.
Attachments
Issue Links
| This issue is duplicated by: | ||||
| MDL-18489 | In admin block the restore and import icon are the same |
|
|
|
Very easy to change this
go to file blocks/admin/block_admin.php, in the function "function get_content()", change the line (+/-147):
$this->content->icons[]='<img src="'.$CFG->pixpath.'/i/restore.gif" class="icon" alt="" />';
to:
$this->content->icons[]='<img src="'.$CFG->pixpath.'/i/import.gif" class="icon" alt="" />';