mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-62145 theme_boost: Custom menu fixes
Make sure the site navigation element is labelled, actionmenu items have correct role and actionmenu trigger controls the menu.
This commit is contained in:
parent
a986cb4ba1
commit
805f078b19
@ -1068,6 +1068,7 @@ $string['showdetails'] = 'Show details';
|
||||
$string['showuseridentity'] = 'Show user identity';
|
||||
$string['showuseridentity_desc'] = 'When selecting or searching for users, and when displaying lists of users, these fields may be shown in addition to their full name. The fields are only shown to users who have the moodle/site:viewuseridentity capability; by default, teachers and managers. (This option makes most sense if you choose one or two fields that are mandatory at your institution.)';
|
||||
$string['simplexmlrequired'] = 'The SimpleXML PHP extension is now required by Moodle.';
|
||||
$string['sitemenubar'] = 'Site navigation';
|
||||
$string['sitemailcharset'] = 'Character set';
|
||||
$string['sitemaintenance'] = 'The site is undergoing maintenance and is currently not available';
|
||||
$string['sitemaintenancemode'] = 'Maintenance mode';
|
||||
|
@ -1,13 +1,13 @@
|
||||
{{^divider}}
|
||||
{{#haschildren}}
|
||||
<li class="dropdown nav-item">
|
||||
<a class="dropdown-toggle nav-link" id="drop-down-{{uniqid}}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="#">
|
||||
<a class="dropdown-toggle nav-link" id="drop-down-{{uniqid}}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="#" aria-controls="drop-down-menu-{{uniqid}}">
|
||||
{{{text}}}
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="drop-down-{{uniqid}}">
|
||||
<div class="dropdown-menu" role="menu" id="drop-down-menu-{{uniqid}}" aria-labelledby="drop-down-{{uniqid}}">
|
||||
{{#children}}
|
||||
{{^divider}}
|
||||
<a class="dropdown-item" href="{{{url}}}" {{#title}}title="{{{title}}}"{{/title}}>{{{text}}}</a>
|
||||
<a class="dropdown-item" role="menuitem" href="{{{url}}}" {{#title}}title="{{{title}}}"{{/title}}>{{{text}}}</a>
|
||||
{{/divider}}
|
||||
{{#divider}}
|
||||
<div class="dropdown-divider" role="presentation"></div>
|
||||
|
@ -17,7 +17,7 @@
|
||||
{{!
|
||||
Page navbar.
|
||||
}}
|
||||
<nav class="fixed-top navbar navbar-light bg-white navbar-expand moodle-has-zindex">
|
||||
<nav class="fixed-top navbar navbar-light bg-white navbar-expand moodle-has-zindex" aria-label="{{#str}}sitemenubar, admin{{/str}}">
|
||||
|
||||
<div data-region="drawer-toggle" class="d-inline-block mr-3">
|
||||
<button aria-expanded="{{#navdraweropen}}true{{/navdraweropen}}{{^navdraweropen}}false{{/navdraweropen}}" aria-controls="nav-drawer" type="button" class="btn nav-link float-sm-left mr-1 btn-secondary" data-action="toggle-drawer" data-side="left" data-preference="drawer-open-nav">{{#pix}}i/menubars{{/pix}}<span class="sr-only">{{#str}}sidepanel, core{{/str}}</span></button>
|
||||
|
Loading…
x
Reference in New Issue
Block a user