Cms: Unable to click breadcrumb links whilst notification is in an active state

Created on 27 Apr 2017  路  2Comments  路  Source: craftcms/cms

Description

I've noticed that breadcrumbs aren't clickable while there is an active notification, I presume this is due to the notification overlaying the breadcrumbs during it's active state.

image

Steps to reproduce

  1. Save something (an entry type in this case)
  2. Attempt to click a breadcrumb link

Additional info

  • Craft version: 2.6.2974
bug minor

Most helpful comment

I've seen this too. I think it's been like this since 2.5 was released. Anyway, for whoever is able to make this change to the CP CSS I was able to fix that behavior with the following CSS:

#notifications-wrapper {
    pointer-events: none;
}

#notifications .notification {
    pointer-events: auto;
}

This still allows the text in the notification to be selected if that were important. If not then just the first rule would fix it.

And if anyone wanted to make that fix right now to any of their sites they could add the above CSS to their CP with CP CSS

All 2 comments

I've seen this too. I think it's been like this since 2.5 was released. Anyway, for whoever is able to make this change to the CP CSS I was able to fix that behavior with the following CSS:

#notifications-wrapper {
    pointer-events: none;
}

#notifications .notification {
    pointer-events: auto;
}

This still allows the text in the notification to be selected if that were important. If not then just the first rule would fix it.

And if anyone wanted to make that fix right now to any of their sites they could add the above CSS to their CP with CP CSS

Fixed for the next release. Thanks!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

benface picture benface  路  3Comments

angrybrad picture angrybrad  路  3Comments

bitboxfw picture bitboxfw  路  3Comments

RitterKnightCreative picture RitterKnightCreative  路  3Comments

michel-o picture michel-o  路  3Comments