The links in com_messages are all wrong
Make sure that you have a message in your inbox.
Try and select that message by checking the box and you will be redirected to
index.php?option=com_fields&context=com_users.user
try and select all messages by checking the box in the table header and you will be redirected to
index.php?option=com_users&view=levels
Note also that the redirect is on click but these are checkboxes not submits
Labels |
Added:
?
|
Title |
|
Title |
|
Status | New | ⇒ | Discussion |
Category | ⇒ | com_messages |
@brianteeman @SharkyKZ Not tested the new template so can't confirm, but try adding:
overflow: hidden;
to this line: https://github.com/joomla/joomla-cms/blob/4.0-dev/administrator/templates/atum/scss/blocks/_sidebar-nav.scss#L4
Or find it in the CSS file if you're not set up to compile SCSS
May be the wrong place though as there seem to be 2 SCSS files for the sidebar and I don't know if the one mentioned above it for something else or not.
That menu doesn't user .sidebar-nav
class. I think this could be it:
.main-nav .collapse-level-1:not(.show) {
display: block;
}
.show
is not used also . Instead .open
is added/removed from parent. So this seems to work:
.main-nav .open .collapse-level-1 {
display: block;
}
good spot. - i didnt even think that could be the issue - its likely to effect other components then as well
Labels |
Added:
J4 Issue
|
This issue drove me crazy yesterday. If you go to the Plugins list, try to drag a plugin, you can't. It will drag a submenu item and open that page when you let go.
I had a try at fixing it but my css foo is not strong enough
Closed_By | franz-wohlkoenig | ⇒ | joomla-cms-bot |
Status | Discussion | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-07-31 04:10:59 |
Closed_By | ⇒ | franz-wohlkoenig |
Set to "closed" on behalf of @franz-wohlkoenig by The JTracker Application at issues.joomla.org/joomla-cms/21090
Template issue. Collapsed menu items aren't being hidden.

@C-Lodder @ciar4n can you take a look at this please.