33465bbf52
Replace inline style.display with CSS class toggling. Changes: - Add .visible class to CSS module - Use classList.add/remove instead of style.display
14 lines
203 B
CSS
14 lines
203 B
CSS
.wrapper {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 2147483641; /* 确保在所有元素之上,除了 panel */
|
|
cursor: wait;
|
|
overflow: hidden;
|
|
|
|
display: none;
|
|
}
|
|
|
|
.wrapper.visible {
|
|
display: block;
|
|
}
|