- ErrorBoundary에 에러 유형/메시지 표시 + 다시 시도/새로고침 버튼 추가 - admin 컴포넌트 CSS Modules 전환 (클래스명 충돌 방지) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
378 lines
6.0 KiB
CSS
378 lines
6.0 KiB
CSS
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
}
|
|
|
|
.sectionTitle {
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
margin: 0;
|
|
padding-bottom: 12px;
|
|
border-bottom: 1px solid rgba(186, 205, 176, 0.12);
|
|
}
|
|
|
|
/* Form */
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding: 20px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid rgba(186, 205, 176, 0.1);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.label {
|
|
font-size: 0.8rem;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.input {
|
|
padding: 10px 14px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(186, 205, 176, 0.15);
|
|
border-radius: 6px;
|
|
color: #fff;
|
|
font-size: 0.9rem;
|
|
outline: none;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.input:focus {
|
|
border-color: rgba(186, 205, 176, 0.5);
|
|
}
|
|
|
|
.textarea {
|
|
padding: 10px 14px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(186, 205, 176, 0.15);
|
|
border-radius: 6px;
|
|
color: #fff;
|
|
font-size: 0.9rem;
|
|
outline: none;
|
|
resize: vertical;
|
|
transition: border-color 0.2s;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.textarea:focus {
|
|
border-color: rgba(186, 205, 176, 0.5);
|
|
}
|
|
|
|
.error {
|
|
font-size: 0.85rem;
|
|
color: rgba(229, 115, 115, 0.9);
|
|
margin: 0;
|
|
}
|
|
|
|
.formActions {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btnPrimary {
|
|
padding: 10px 24px;
|
|
background: #BACDB0;
|
|
color: #2E2C2F;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: opacity 0.2s;
|
|
}
|
|
|
|
.btnPrimary:hover { opacity: 0.9; }
|
|
.btnPrimary:disabled { opacity: 0.5; cursor: not-allowed; }
|
|
|
|
.btnSecondary {
|
|
padding: 10px 20px;
|
|
background: transparent;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
border-radius: 6px;
|
|
font-size: 0.9rem;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.btnSecondary:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
/* List */
|
|
.list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.listItem {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 12px 16px;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.listInfo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.listTitle {
|
|
font-size: 0.9rem;
|
|
color: rgba(255, 255, 255, 0.85);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.listDate {
|
|
font-size: 0.8rem;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.listActions {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.btnEdit {
|
|
padding: 6px 14px;
|
|
background: transparent;
|
|
color: rgba(186, 205, 176, 0.8);
|
|
border: 1px solid rgba(186, 205, 176, 0.25);
|
|
border-radius: 5px;
|
|
font-size: 0.8rem;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.btnEdit:hover {
|
|
background: rgba(186, 205, 176, 0.08);
|
|
}
|
|
|
|
.btnDelete {
|
|
padding: 6px 14px;
|
|
background: transparent;
|
|
color: rgba(229, 115, 115, 0.8);
|
|
border: 1px solid rgba(229, 115, 115, 0.25);
|
|
border-radius: 5px;
|
|
font-size: 0.8rem;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.btnDelete:hover {
|
|
background: rgba(229, 115, 115, 0.08);
|
|
}
|
|
|
|
/* Deploy block */
|
|
.deployBlock {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.deployHeader {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.deployLabel {
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
/* File input */
|
|
.inputFile {
|
|
padding: 8px 0;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-size: 0.875rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inputFile:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* Field hint */
|
|
.fieldHint {
|
|
font-size: 0.75rem;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
/* Upload progress */
|
|
.uploadProgress {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.uploadBar {
|
|
flex: 1;
|
|
height: 6px;
|
|
background: #BACDB0;
|
|
border-radius: 3px;
|
|
transition: width 0.2s;
|
|
}
|
|
|
|
.uploadPct {
|
|
font-size: 0.8rem;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
min-width: 36px;
|
|
text-align: right;
|
|
}
|
|
|
|
/* Current build info */
|
|
.currentBuild {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
padding: 14px 16px;
|
|
background: rgba(186, 205, 176, 0.05);
|
|
border: 1px solid rgba(186, 205, 176, 0.12);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.metaRow {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.metaItem {
|
|
font-size: 0.78rem;
|
|
color: rgba(186, 205, 176, 0.8);
|
|
background: rgba(186, 205, 176, 0.08);
|
|
padding: 3px 10px;
|
|
border-radius: 4px;
|
|
border: 1px solid rgba(186, 205, 176, 0.15);
|
|
}
|
|
|
|
.metaHash {
|
|
composes: metaItem;
|
|
font-family: monospace;
|
|
cursor: help;
|
|
}
|
|
|
|
/* Role badge */
|
|
.listEmpty {
|
|
font-size: 0.9rem;
|
|
color: rgba(255, 255, 255, 0.35);
|
|
padding: 12px 16px;
|
|
margin: 0;
|
|
}
|
|
|
|
.roleBadge {
|
|
font-size: 0.7rem;
|
|
padding: 2px 8px;
|
|
border-radius: 4px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.roleBadgeAdmin {
|
|
composes: roleBadge;
|
|
background: rgba(186, 205, 176, 0.15);
|
|
color: #BACDB0;
|
|
}
|
|
|
|
.roleBadgeUser {
|
|
composes: roleBadge;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.45);
|
|
}
|
|
|
|
.errorBlock {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.loading {
|
|
font-size: 0.9rem;
|
|
color: rgba(255, 255, 255, 0.35);
|
|
padding: 12px 16px;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Mobile responsive */
|
|
@media (max-width: 768px) {
|
|
.form {
|
|
padding: 16px 12px;
|
|
}
|
|
|
|
.input,
|
|
.textarea {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.listItem {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.listInfo {
|
|
width: 100%;
|
|
}
|
|
|
|
.listActions {
|
|
width: 100%;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.formActions {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.formActions button {
|
|
width: 100%;
|
|
min-height: 44px;
|
|
}
|
|
|
|
.btnPrimary,
|
|
.btnSecondary,
|
|
.btnEdit,
|
|
.btnDelete {
|
|
min-height: 44px;
|
|
}
|
|
|
|
.metaRow {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.deployHeader {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|