blob: 2e40f149552c1a276d86c4b393b778b05faecc79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* dev.to - not possible to open social buttons menu
* Bug #1655049 - https://bugzilla.mozilla.org/show_bug.cgi?id=1655049
* WebCompat issue #55782 - https://webcompat.com/issues/55782
*
* Social buttons menu is not opening due to svg receiving the click
* instead of the button. See https://bugzilla.mozilla.org/show_bug.cgi?id=1654934.
* Adding pointer-events: none to the svg allows to open the menu
*/
#article-show-more-button > * {
pointer-events: none;
}
|