Unable to click on certain elements after v1.4.2 #305
-
I came across an issue where picocss doesn't allow you to click on the crisp.chat bot after version 1.4.2 see https://jsfiddle.net/gy3L0qm4/1/ Does anyone know how to get around this? |
Beta Was this translation helpful? Give feedback.
Answered by
lucaslarroche
Jan 29, 2023
Replies: 1 comment
-
Hi @ronaldgrn, It's because Crips Chat creates a link ( You can override this behavior with: a[role=button]:not([href]) {
opacity: .5;
pointer-events: auto;
} This (wrong) behavior will be removed in version 2. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ronaldgrn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @ronaldgrn,
It's because Crips Chat creates a link (
a
) without anhref
, and Pico considers it disabled.You can override this behavior with:
This (wrong) behavior will be removed in version 2.