ngx-popper icon indicating copy to clipboard operation
ngx-popper copied to clipboard

Chrome Version 115.0.5790.102 seems to have broken positioning...

Open cosmoKenney opened this issue 1 year ago • 7 comments

@MrFrankel, I am on windows 11, chrome just updated to Version 115.0.5790.102 last night or this morning. Edge and Firefox are okay. Edge: edge-popper Chrome: chrome-popper Oddly, after resizing chrome a few pixels, either horizontally or vertically, the popper jumps back to the left, but goes too far: chrome-popper-after-resize

cosmoKenney avatar Jul 21 '23 21:07 cosmoKenney

Note, I am also using Tippy.js (for tool-tips) which depends on @popperjs/core. The positioning of Tippy not effected as far as I can tell.
Chrome Tippy: chrome-tippy

cosmoKenney avatar Jul 21 '23 21:07 cosmoKenney

I am also facing the same issue

vedd avatar Jul 24 '23 13:07 vedd

this may help

popper-content {
    .ngxp__container {
        display: block!important;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;

        &[aria-hidden="true"] {
            visibility: hidden;
        }
    }
}

gertot avatar Jul 26 '23 11:07 gertot

Thanks @gertot that worked for me.

AkshayTrimbake avatar Jul 28 '23 11:07 AkshayTrimbake

@gertot worked here :)

leonardosuave avatar Aug 02 '23 17:08 leonardosuave

awesome @gertot your hotfix works!

djurango avatar Aug 03 '23 11:08 djurango

@gertot - It worked for me as well, thanks !!!

Sanket-Pati avatar Aug 29 '23 07:08 Sanket-Pati