This commit is contained in:
33333-33333 2026-06-04 16:40:45 +09:00
commit 7fd7ba2e76
8 changed files with 512 additions and 147 deletions

View file

@ -2937,3 +2937,36 @@ body, button, input, select, textarea { font-size: 15px; }
.reportDialog { z-index: 9998; }
.assetStatus.validating { background: #fff2a8; }
.assetStatus.failed { background: #ffe2e2; color: #8b2424; }
/* Shared-only editor polish: five obvious primary draw controls. */
.editorToolRow,
.basicEditorTools,
.studioDrawer.advancedTools .editorToolRow,
.studioDrawer.advancedTools .basicEditorTools {
grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.basicEditorTools #toolBrush {
background: linear-gradient(180deg, #dcfce7, #86efac) !important;
color: #12422a !important;
}
.basicEditorTools #toolErase {
background: linear-gradient(180deg, #fee2e2, #fca5a5) !important;
color: #6f1515 !important;
}
.basicEditorTools #toolFill {
background: linear-gradient(180deg, #dbeafe, #93c5fd) !important;
color: #123f7a !important;
}
.basicEditorTools #toolPick {
background: linear-gradient(180deg, #fef3c7, #fde68a) !important;
color: #70470a !important;
}
.basicEditorTools #clearPaint {
background: linear-gradient(180deg, #ffe4e6, #fb7185) !important;
color: #711827 !important;
}
.basicEditorTools .tool.active {
outline: 4px solid rgba(36, 48, 68, .55) !important;
outline-offset: -6px !important;
color: #111827 !important;
}