Css files missing on the dashboard of latest source
description
I get a bunch of notfound exceptions when opening the admin page, missing is e.g. "/OrchardLocal/Themes/TheAdmin/styles/menu.settings-admin.cs", "/OrchardLocal/Themes/TheAdmin/styles/menu.widgets-admin.css" and a lot more.
This is because somehow not the stylesheets for admin menus are not always searched for in the module of the menu (like Widgets) but under TheAdmin theme.
Interesting though that e.g. for Blogs the wrong path is used but for Users the right one.
Update:
I managed to fix it by adding a dependency on Navigation to Users: the stylesheet of Users was the first one correctly included. Actually some of the first non-working modules have a dependency on Navigation and no working one has...
Attached is a patch. I've added a dependency on Navigation to every feature there was an admin menu usage. Not sure whether this shouldn't work without the modifications though.