Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI Disappears and Reloads When Opening Extension #162

Closed
B1ack3ye opened this issue Nov 26, 2024 · 2 comments
Closed

UI Disappears and Reloads When Opening Extension #162

B1ack3ye opened this issue Nov 26, 2024 · 2 comments

Comments

@B1ack3ye
Copy link

When clicking on an extension icon to open it, the entire Firefox UI disappears and the browser reloads.

New.Issue.datguypiko_Firefox-Mod-Blur.Mozilla.Firefox.2024-11-26.18-23-10.mp4
@datguypiko
Copy link
Owner

datguypiko commented Nov 26, 2024

So the problem is animation. I removed it until I can fix it. Redownload userChrome.css or zip https://github.com/datguypiko/Firefox-Mod-Blur/releases/tag/v2.14

Or you can remove this from end of UserChrome.css

/* Menu panels open animation */
panel[type="arrow"][animate][animate="open"] {
  animation: mod-panel-animation 0.2s ease-in-out;
}

@keyframes mod-panel-animation {
  0% {
    transform: scale3d(0.8, 0.8, 0.8);
  }

  60% {
    transform: scale3d(1.02, 1.02, 1.02);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@datguypiko
Copy link
Owner

Re-added and fixed menu panels popup animation.
https://github.com/datguypiko/Firefox-Mod-Blur/blob/master/userChrome.css

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants