앱 위젯추가 팝업 수정
This commit is contained in:
@@ -1241,17 +1241,92 @@
|
||||
max-height: none;
|
||||
}
|
||||
|
||||
/* Tauri 네이티브 위젯 창 — OS 창 확대 후 팝업이 거의 전체를 채움 */
|
||||
html.fw-native-widget .app-popup-shell--widget-picker-native {
|
||||
width: calc(100vw - 12px) !important;
|
||||
max-width: calc(100vw - 12px) !important;
|
||||
max-height: calc(100vh - 12px);
|
||||
min-height: calc(100vh - 16px);
|
||||
/* Tauri 네이티브 위젯 창 — 전체 창 picker (AppPopup draggable 미사용) */
|
||||
html.fw-native-widget .wd-picker-native-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 13200;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
html.fw-native-widget .app-popup-shell--widget-picker-native .wd-picker-popup-body {
|
||||
html.fw-native-widget .wd-picker-native-shell {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-radius: 12px;
|
||||
border: 1px solid color-mix(in srgb, var(--accent, #3f7ef5) 45%, var(--border));
|
||||
background: var(--bg2, #1e222d);
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
html.fw-native-widget .wd-picker-native-header {
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
padding: 10px 14px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
color-mix(in srgb, var(--accent, #3f7ef5) 14%, var(--bg2)) 0%,
|
||||
var(--bg2, #1e222d) 100%
|
||||
);
|
||||
}
|
||||
|
||||
html.fw-native-widget .wd-picker-native-title {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
html.fw-native-widget .wd-picker-native-title-ko {
|
||||
font-size: 12px;
|
||||
font-weight: 400;
|
||||
color: var(--text2);
|
||||
}
|
||||
|
||||
html.fw-native-widget .wd-picker-native-close {
|
||||
flex-shrink: 0;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 6px;
|
||||
background: var(--bg3);
|
||||
color: var(--text2);
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
html.fw-native-widget .wd-picker-native-close:hover {
|
||||
color: var(--text);
|
||||
border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
|
||||
}
|
||||
|
||||
html.fw-native-widget .wd-picker-native-body {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
html.fw-native-widget .wd-picker-native-loading {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 13199;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(0, 0, 0, 0.35);
|
||||
color: var(--text2);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.bps-page--wd-no-left .bps-side-wrap--left,
|
||||
|
||||
Reference in New Issue
Block a user