We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd8f448 commit 0d05862Copy full SHA for 0d05862
1 file changed
smart-view/smart_view.js
@@ -159,18 +159,6 @@ export class SmartView {
159
`${attributes}\n></div>`;
160
}
161
162
- /**
163
- * Handles the smooth transition effect when opening overlays.
164
- * @param {HTMLElement} overlay_container - The overlay container element.
165
- */
166
- on_open_overlay(overlay_container) {
167
- overlay_container.style.transition = 'background-color 0.5s ease-in-out';
168
- overlay_container.style.backgroundColor = 'var(--bold-color)';
169
- setTimeout(() => {
170
- overlay_container.style.backgroundColor = '';
171
- }, 500);
172
- }
173
-
174
/**
175
* Renders settings from a config, returning a fragment.
176
* @async
0 commit comments