Log In
Bug Weather Castform Don't have an account yet? Register now!
.

Forum Thread

Mini notifications in the way [+solve]

Forum-Index Bugs/Complaints Confirmed Bugs Mini notifications in the way [+solve]
SwampFall
OFFLINE
Trainerlevel: 59

Forum Posts: 604
Posted: Mon, 03/09/2018 13:15 (5 Years ago)
Currently the wrapper of the mini notifications has 100% width and has pointer events so you can't click on anything underneath it, which is anything that's under or next to the mini notifications. This can be prevented by adding two lines to the CSS.

#mini_notif_wrapper {
pointer-events: none;
}
#mini_notif_wrapper .mini_notif {
pointer-events: auto;
}

Another point I'd like to make is that they're fixed over the page, even when there's space to the side of it. Wouldn't it be better that they're as far left as they can be?
To achieve this remove the lines of the CSS that are commented out:

#mini_notif_wrapper {
position: fixed;
/* margin: auto; */
bottom: 8px;
left: 8px;
/* right: 0; */
/* width: 100%; */
max-width: 900px;
z-index: 20;
pointer-events: none;
}

This would be the result, notice that the Preview button is clickable.



If the screen is smaller, so it hasn't got the space on the side, the notifications will remain the way they're now.
SwampFall
OFFLINE
Trainerlevel: 59

Forum Posts: 604
Posted: Sun, 31/01/2021 22:07 (3 Years ago)
Bumping this

It can be annoying that some button does not seem to work until you realize that all the way over to the left is a notification popup, with an invisible wall all the way to the right so nothing is clickable anymore.
More often than not, I want to continue doing the thing I was doing, and only later do things like putting pokemon away in my storage system.