ITADN

[Conversation] I found you don't need the javascript to blur the background.

#20Closedpkkid 创建于 2025-01-29
P
pkkidcommented
Thank you for the video tutorial and examples here. I found I do not need the vscode-script.js as the following css seems to work great to detect the .quick-input-widget is present and blurs the .monaco-grid-view element when its visible. ```css .monaco-grid-view { transition: filter 0.3s; } .monaco-workbench:has(> .quick-input-widget):not(:has(> .quick-input-widget[style*="display: none"])) { .monaco-grid-view { filter: blur(2px) !important; } } ```
关闭于 2025-02-10 1 条评论