Notification (check mark)

Is there any way to take out the check-mark in the Notification screen?

Good question. It uses an unnamed class, so not really…
Screen Shot 2021-09-05 at 7.01.30 PM

Is there a way to adjust the time the notification stays on the screen?

Let’s try this. I don’t guarantee it does not break anything else on the screen though as I use a pretty “high up” level (app-root).

<pre><span><style>

div[id="app-root"] >div >div svg {
display: none;
}
1 Like

There isn’t one. Glide already optimizes the time it stays on the screen based on the length of the message, but as of now we don’t have a native way to do a modal with more control on its on-screen visibility.

it worked
thank you!

1 Like

Thank you!
I will try it.

Humm… seems to me that it break icons of tabs and floating buttons too

Hmm. Might need an additional action like setting a column to the current timestamp to set the visibility for this CSS.

1 Like

May be, you right.
Meanwhile seems that this don’t break other icons:

div[id="app-root"] >div >div svg  >path {
display: none;
}

And with this we can change animation duration:

div[id="app-root"] > div >div {
animation-duration: 10s;
}

All to be evaluated very well before using these above, because these too could impact other components. :face_with_monocle:

2 Likes