위젯 추가버튼 사라짐 문제

This commit is contained in:
Macbook
2026-06-14 01:24:03 +09:00
parent a3dcfe5cb2
commit f0de69dc95
+28
View File
@@ -106,6 +106,8 @@
.fw-window-body-wrap { .fw-window-body-wrap {
position: relative; position: relative;
display: flex;
flex-direction: column;
flex: 1; flex: 1;
min-height: 0; min-height: 0;
min-width: 0; min-width: 0;
@@ -115,6 +117,8 @@
.fw-window-body { .fw-window-body {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
width: 100%;
height: 100%;
display: grid; display: grid;
gap: 1px; gap: 1px;
padding: 0; padding: 0;
@@ -129,15 +133,19 @@
flex-direction: column; flex-direction: column;
background: var(--se-center-bg, var(--bg2)); background: var(--se-center-bg, var(--bg2));
overflow: hidden; overflow: hidden;
position: relative;
z-index: 1;
} }
.fw-window-cell .wd-slot { .fw-window-cell .wd-slot {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
height: 100%;
border: none; border: none;
border-radius: 0; border-radius: 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden;
} }
.fw-window-cell .wd-slot-body { .fw-window-cell .wd-slot-body {
@@ -145,16 +153,20 @@
min-height: 0; min-height: 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden;
} }
.fw-window-cell .wd-slot-empty { .fw-window-cell .wd-slot-empty {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
gap: 8px; gap: 8px;
padding: 12px;
overflow: auto;
} }
.fw-window-cell .wd-widget-host { .fw-window-cell .wd-widget-host {
@@ -277,6 +289,7 @@
min-height: 0; min-height: 0;
height: 100%; height: 100%;
width: 100%; width: 100%;
overflow: hidden;
} }
.fw-window-cell .wd-widget-host > *:only-child { .fw-window-cell .wd-widget-host > *:only-child {
@@ -321,14 +334,29 @@
} }
.fw-window-cell .wd-widget-host--market .market-panel { .fw-window-cell .wd-widget-host--market .market-panel {
position: relative !important;
width: 100% !important;
min-width: 0 !important;
max-width: none !important;
height: 100% !important; height: 100% !important;
flex: 1; flex: 1;
transform: none !important;
box-shadow: none;
border: none;
overflow: hidden;
}
.fw-window-cell .wd-widget-host--market .market-panel--open {
width: 100% !important;
} }
.fw-window-cell .wd-widget-host--market .mp-body, .fw-window-cell .wd-widget-host--market .mp-body,
.fw-window-cell .wd-widget-host--market .mp-list { .fw-window-cell .wd-widget-host--market .mp-list {
width: 100% !important;
min-width: 0 !important;
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow: auto;
} }
.fw-window-cell .wd-widget-host--trade, .fw-window-cell .wd-widget-host--trade,