-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use function 'getListItems()' to build the menu list items #43
base: master
Are you sure you want to change the base?
Conversation
This fixes the not working "fold/unfold all" button of the folded plugin.
- added classes 'argon-doku-navbar-icon' and 'nav-link' to the user menu - do not show text spans in the user and page menu - do not show SVG in the site menu
Ok, I now applied some simple changes:
The user menu doesn't exactly look the same as before. It would be really cool if the CSS could be adjusted to the code in this PR because the changes for now are really simple. The difference is that |
@lpaulsen93 you mentioned it still doesn't look exactly the same, could you provide some screenshots of what looks different? I haven't had time to take a look at this yet. Maybe we can work some additional CSS magic to correct it. |
I guess this would solve this issue as well: splitbrain/dokuwiki-plugin-dw2pdf#420 |
Looks like this would fix #35 |
This fixes the not working "fold/unfold all" button of the folded plugin. See dokufreaks/plugin-folded#68.
I assume this might break some things. Not everything looks like before but some part of the menu look less broken. But it fixes the issue with the folded plugin and maybe (not tested) issues with other plugins which are triggered by the menu.
The issue with the folded plugin was caused because the a element did not have all attributes properly set. But it works with the standard DokuWiki template which calls
getListItems()
to build the menu and that is the reason why I used that function call in this PR.