저장팝업 텍스트 색상 수정

This commit is contained in:
Macbook
2026-05-26 23:50:13 +09:00
parent 94e96b9a9b
commit fe812389cc
13 changed files with 728 additions and 62 deletions
+198 -3
View File
@@ -1105,6 +1105,7 @@ html.theme-blue {
/* 패널 본체 */
.ind-panel {
position: relative;
width: min(520px, 95vw);
max-height: calc(100vh - 48px);
background: var(--bg2);
@@ -1173,19 +1174,60 @@ html.theme-blue {
.ind-panel-close:hover { background: var(--bg4); color: var(--text); }
/* 카테고리 탭 */
.ind-panel-cats-row {
display: flex;
align-items: stretch;
gap: 6px;
padding: 7px 10px;
border-bottom: 1px solid var(--border);
flex-shrink: 0;
min-height: 0;
}
.ind-panel-cats {
display: flex;
gap: 2px;
padding: 7px 10px;
border-bottom: 1px solid var(--border);
overflow-x: auto;
overflow-y: hidden;
flex-shrink: 0;
flex: 1;
min-width: 0;
flex-wrap: nowrap;
scrollbar-width: thin;
scrollbar-color: var(--bg4) transparent;
-webkit-overflow-scrolling: touch;
}
.ind-panel-cats-actions {
display: flex;
align-items: center;
gap: 4px;
flex-shrink: 0;
padding-left: 4px;
border-left: 1px solid var(--border);
}
.ind-panel-cat-action {
padding: 4px 8px;
background: var(--bg3);
color: var(--text2);
border: 1px solid var(--border);
border-radius: 4px;
cursor: pointer;
font-size: 11px;
font-weight: 500;
white-space: nowrap;
transition: all 0.1s;
}
.ind-panel-cat-action:hover:not(:disabled) {
background: var(--bg4);
color: var(--text);
}
.ind-panel-cat-action:disabled {
opacity: 0.35;
cursor: not-allowed;
}
.ind-panel-cat-action.danger:hover:not(:disabled) {
background: rgba(239, 68, 68, 0.15);
color: #ef4444;
border-color: rgba(239, 68, 68, 0.35);
}
.ind-panel-cats::-webkit-scrollbar {
height: 5px;
}
@@ -1210,6 +1252,159 @@ html.theme-blue {
.ind-panel-cat.active { background: var(--accent); color: #fff; }
.ind-panel-cat-cnt { font-size: 10px; opacity: 0.75; }
/* 사용자 정의 탭 편집 */
.ind-tab-editor-overlay {
position: absolute;
inset: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.55);
border-radius: inherit;
}
.ind-tab-editor {
display: flex;
flex-direction: column;
width: min(420px, calc(100% - 24px));
max-height: calc(100% - 24px);
background: var(--bg2);
border: 1px solid var(--border);
border-radius: 8px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
overflow: hidden;
}
.ind-tab-editor-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 12px;
border-bottom: 1px solid var(--border);
flex-shrink: 0;
}
.ind-tab-editor-title {
font-size: 14px;
font-weight: 600;
color: var(--text);
}
.ind-tab-editor-body {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
gap: 10px;
padding: 12px;
overflow: hidden;
}
.ind-tab-editor-field {
display: flex;
flex-direction: column;
gap: 6px;
flex-shrink: 0;
}
.ind-tab-editor-label-row {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.ind-tab-editor-label {
font-size: 11px;
font-weight: 600;
color: var(--text2);
flex: 1;
}
.ind-tab-editor-link {
background: none;
border: none;
color: var(--accent);
font-size: 11px;
cursor: pointer;
padding: 0;
}
.ind-tab-editor-link:hover { text-decoration: underline; }
.ind-tab-editor-input {
width: 100%;
padding: 7px 10px;
background: var(--bg3);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text);
font-size: 13px;
box-sizing: border-box;
}
.ind-tab-editor-input:focus {
outline: none;
border-color: var(--accent);
}
.ind-tab-editor-list {
flex: 1;
min-height: 120px;
overflow-y: auto;
border: 1px solid var(--border);
border-radius: 4px;
background: var(--bg1);
}
.ind-tab-editor-item {
display: flex;
align-items: flex-start;
gap: 8px;
padding: 8px 10px;
cursor: pointer;
border-bottom: 1px solid var(--border);
transition: background 0.1s;
}
.ind-tab-editor-item:last-child { border-bottom: none; }
.ind-tab-editor-item:hover { background: var(--bg3); }
.ind-tab-editor-item.checked { background: #2962ff12; }
.ind-tab-editor-item input {
margin-top: 3px;
flex-shrink: 0;
accent-color: var(--accent);
}
.ind-tab-editor-item-info {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
}
.ind-tab-editor-item-name {
font-size: 13px;
font-weight: 500;
color: var(--text);
}
.ind-tab-editor-item-desc {
font-size: 11px;
color: var(--text2);
}
.ind-tab-editor-footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding: 10px 12px;
border-top: 1px solid var(--border);
flex-shrink: 0;
}
.ind-tab-editor-btn {
padding: 7px 16px;
border-radius: 4px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
border: 1px solid var(--border);
}
.ind-tab-editor-btn.cancel {
background: var(--bg3);
color: var(--text2);
}
.ind-tab-editor-btn.cancel:hover { color: var(--text); }
.ind-tab-editor-btn.save {
background: var(--accent);
color: #fff;
border-color: var(--accent);
}
.ind-tab-editor-btn.save:hover { filter: brightness(1.08); }
/* 목록 */
.ind-panel-list {
flex: 1;