-
-
Notifications
You must be signed in to change notification settings - Fork 333
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
[Modal] Blur doesn't work in modal without background #3061
Comments
If you use the backdrop filter on the dropdown menu and also have the dropdown menu background set to "none", it seems like what you want to achieve. |
@lubber-de When I add .ui.modal, .content {
background: none !important;
} it works in Firefox: but doesn't work in Chrome: |
@lubber-de Also weird thing happens when I toggle Screencast.from.24-06-24.14.53.29.webm |
This might be the first time I see something working in firefox, but not in chrome XD. Maybe something deep down has the properties set for mozilla only props? Just suggesting, might be wrong since I haven't taken a look. cc @gamersi |
Yeah that's possible. Another possibility is that Blink just screws up |
@gamersi I have already checked blink since @staniel359 reported it, it does have a lot of weirdness around but it doesn't skip stuff, it should render fine. I couldn't even find any bugs in the memory maps. Moreover the weirdness is because blink is very sensitive to performance. So it does use some very complicated methods to keep it performant. Also checked the DOM tree mapper and it seems fine. I couldn't find any possible chances of missing an entire css property out. I did suspect that something mght be wrong with blink in the discord server but after investigating, it doesn't look like it. If this is a bug within blink, it has got to be an edge case bug. If I had to guess, the props are rendered fine (as we see the minor blur) but something is wrong with the DOM tree handler which determines relevant to which element the blur should be applied. It's probably messing up there. All of this suspects bugs within chromium. Might be an internal problem in this repo. Just ruling out the possibilities. Don't take this way too seriously guys, I haven't checked out any source code for fonmatic UI :) |
@lubber-de can you add back |
When you reset Yes, it's a bug, but a bug in chromium, not Fomantic. |
Bug Report
Blur doesn't work in modal without background.
The element is just transparent like its parent.
But somehow it works in transparent segment. (See
Expected result
).Steps to reproduce
background: none
<div class="content">
place a child element withbackdrop-filter: blur(0.5rem)
Expected result
To have a blur.
Actual result
Testcase
See
Steps to reproduce
Screenshot (if possible)
See above.
Version
2.9.3
The text was updated successfully, but these errors were encountered: