refactor
This commit is contained in:
parent
0a6148c73f
commit
e8f1d1db1e
60 changed files with 2417 additions and 612 deletions
|
|
@ -469,7 +469,7 @@
|
|||
.selected-category[data-selected-category="family"] { background: rgba(246, 226, 236, 0.28); }
|
||||
.selected-category[data-selected-category="records"] { background: rgba(242, 238, 226, 0.30); }
|
||||
|
||||
/* v15.20.6: color-blind safe panel themes and alternating inner tones. */
|
||||
/* Color-blind safe panel themes and alternating inner tones. */
|
||||
.card.tool-card,
|
||||
.card.selected-card,
|
||||
.card.colony-card,
|
||||
|
|
@ -550,3 +550,74 @@
|
|||
background: rgba(var(--ui-theme-rgb), 0.11);
|
||||
border-color: rgba(var(--ui-theme-rgb), 0.28);
|
||||
}
|
||||
|
||||
|
||||
.save-dialog-panel {
|
||||
width: min(760px, calc(100vw - 32px));
|
||||
max-height: min(86vh, 760px);
|
||||
overflow: auto;
|
||||
}
|
||||
.save-slot-list {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
margin: 14px 0;
|
||||
}
|
||||
.save-slot-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(86px, 0.7fr) minmax(180px, 2fr) auto;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
padding: 9px 10px;
|
||||
border: 1px solid rgba(115, 91, 62, 0.20);
|
||||
border-radius: 12px;
|
||||
background: rgba(255, 255, 255, 0.56);
|
||||
}
|
||||
.save-slot-title {
|
||||
font-weight: 800;
|
||||
color: #4f3928;
|
||||
}
|
||||
.save-slot-meta {
|
||||
color: #6d5a46;
|
||||
font-size: 13px;
|
||||
}
|
||||
.save-slot-actions {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
justify-content: flex-end;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.save-slot-actions .btn[disabled] {
|
||||
opacity: 0.42;
|
||||
pointer-events: none;
|
||||
}
|
||||
.save-export-panel {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
.save-export-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.save-hash-text {
|
||||
width: 100%;
|
||||
min-height: 118px;
|
||||
resize: vertical;
|
||||
padding: 10px;
|
||||
border: 1px solid rgba(115, 91, 62, 0.26);
|
||||
border-radius: 12px;
|
||||
background: rgba(255,255,255,0.78);
|
||||
color: #3e3023;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.save-slot-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.save-slot-actions {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue