difficult to click the buttom #388
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Please share config and styles.css |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
About which widget are you talking? Is that problem with the apps widget? |
Beta Was this translation helpful? Give feedback.
About which widget are you talking? Is that problem with the apps widget?
If yes, then there is a problem because you have a fully transparent widget, and if something is fully transparent, your click will go through to whatever is below the widget. To prevent this, you can simply add
background-color: rgba(0, 0, 0, 0.01)
to.apps-widget
or.apps-widget .label
, and the click should work fine.