Index: trunk/extensions/SideBarMenu/SideBarMenu.i18n.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'sidebarmenu-parser-syntax-error' => 'Could not parse "$1", make sure the syntax is correct.', |
19 | 19 | 'sidebarmenu-js-init-error' => 'Failed loading JavaScript resources.', |
20 | 20 | 'sidebarmenu-parser-menuitem-expanded-null' => '"parser.menuitem.expanded" should be true or false, instead it is null.', |
21 | | - 'sidebarmenu-edit' => 'Edit' |
| 21 | + 'sidebarmenu-edit' => 'Edit menu' |
22 | 22 | ); |
23 | 23 | |
24 | 24 | /** Message documentation (Message documentation) |
Index: trunk/extensions/SideBarMenu/SideBarMenu.hooks.php |
— | — | @@ -22,7 +22,7 @@ |
23 | 23 | return wfMsg('sidebarmenu-parser-input-error', $x->getMessage()); |
24 | 24 | } |
25 | 25 | if ($config[SBM_EDIT_LINK]) { |
26 | | - $output .= Linker::link($frame->getTitle(), wfMsg('sidebarmenu-edit'), array('title' => wfMsg('sidebarmenu-edit')), array('action' => 'edit')); |
| 26 | + $output .= Linker::link($frame->getTitle(), wfMsg('sidebarmenu-edit'), array('title' => wfMsg('sidebarmenu-edit'),'class' => 'sidebar-menu-edit-link'), array('action' => 'edit')); |
27 | 27 | } |
28 | 28 | $output .= '</div>'; |
29 | 29 | |
Index: trunk/extensions/SideBarMenu/css/ext.sidebarmenu.css |
— | — | @@ -63,3 +63,7 @@ |
64 | 64 | user-select: none; |
65 | 65 | } |
66 | 66 | |
| 67 | +.sidebar-menu-edit-link { |
| 68 | + font-size: smaller; |
| 69 | +} |
| 70 | + |