- Grüner Hinweis wenn Äquivalent verfügbar (z.B. → Kerachole (SGE)?) - Roter Hinweis "→ Kein Äquivalent!" wenn kein Ersatz vorhanden - Grau-kursiv "→ Job zuordnen" bei Abilities ohne Job-Zuordnung Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
545 lines
14 KiB
CSS
545 lines
14 KiB
CSS
/* ── Planner Layout ──────────────────────────────────────────────────────────── */
|
|
.planner-layout {
|
|
display: grid;
|
|
grid-template-columns: 280px 1fr;
|
|
gap: 16px;
|
|
align-items: start;
|
|
}
|
|
|
|
/* ── Plan Sidebar ────────────────────────────────────────────────────────────── */
|
|
.plan-sidebar {
|
|
background: var(--bgcard);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--rl);
|
|
padding: 18px;
|
|
position: sticky;
|
|
top: 74px;
|
|
}
|
|
|
|
.plan-sidebar-header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 14px;
|
|
}
|
|
.plan-sidebar-header .card-title { margin-bottom: 0; flex: 1; }
|
|
|
|
.plan-new-form {
|
|
background: var(--bg2);
|
|
border: 1px solid var(--borderem);
|
|
border-radius: var(--r);
|
|
padding: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.plan-new-form input {
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
padding: 6px 10px;
|
|
}
|
|
.plan-new-actions {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.plan-list-empty {
|
|
font-size: 13px;
|
|
color: var(--t3);
|
|
text-align: center;
|
|
padding: 24px 0;
|
|
}
|
|
|
|
/* ── Plan Item ───────────────────────────────────────────────────────────────── */
|
|
.plan-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 9px 10px;
|
|
border-radius: var(--r);
|
|
border: 1px solid transparent;
|
|
cursor: pointer;
|
|
transition: all 0.12s;
|
|
margin-bottom: 4px;
|
|
}
|
|
.plan-item:hover { background: var(--bg2); border-color: var(--border); }
|
|
.plan-item.active { background: var(--bg2); border-color: var(--gold); }
|
|
|
|
.plan-item-info { flex: 1; min-width: 0; }
|
|
|
|
.plan-item-name {
|
|
font-size: 14px;
|
|
color: var(--t1);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.plan-item.active .plan-item-name { color: var(--gold); }
|
|
|
|
.plan-item-meta {
|
|
font-size: 12px;
|
|
color: var(--t3);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.plan-item-actions {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
opacity: 0;
|
|
transition: opacity 0.12s;
|
|
}
|
|
.plan-item:hover .plan-item-actions { opacity: 1; }
|
|
|
|
.plan-btn {
|
|
background: none;
|
|
border: 1px solid var(--borderem);
|
|
border-radius: var(--r);
|
|
color: var(--t2);
|
|
font-size: 13px;
|
|
padding: 2px 7px;
|
|
cursor: pointer;
|
|
transition: all 0.12s;
|
|
line-height: 1.6;
|
|
}
|
|
.plan-btn:hover { background: var(--bg3); color: var(--t1); }
|
|
.plan-btn.plan-btn-danger { color: var(--red); border-color: rgba(224,92,92,0.3); }
|
|
.plan-btn.plan-btn-danger:hover { background: var(--redbg); }
|
|
|
|
/* ── Plan Detail ─────────────────────────────────────────────────────────────── */
|
|
.plan-detail-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.plan-name-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.plan-name-text {
|
|
font-family: var(--font-d);
|
|
font-size: 18px;
|
|
color: var(--gold);
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.plan-name-input {
|
|
font-size: 18px !important;
|
|
font-family: var(--font-d) !important;
|
|
padding: 2px 8px !important;
|
|
width: auto !important;
|
|
min-width: 200px;
|
|
color: var(--gold) !important;
|
|
}
|
|
|
|
.plan-detail-meta {
|
|
font-size: 13px;
|
|
color: var(--t3);
|
|
}
|
|
|
|
/* ── Job Slots ────────────────────────────────────────────────────────────────── */
|
|
.job-slots-grid {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.job-slot {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.job-slot select {
|
|
width: 100%;
|
|
font-size: 13px;
|
|
padding: 5px 6px;
|
|
border-left: 2px solid var(--border);
|
|
}
|
|
|
|
.job-slot--tank select { border-left-color: var(--blue); }
|
|
.job-slot--healer select { border-left-color: var(--green); }
|
|
.job-slot--dps select { border-left-color: rgba(200,168,75,.5); }
|
|
|
|
/* ── Mechanic Cards ──────────────────────────────────────────────────────────── */
|
|
.mechanic-card {
|
|
display: grid;
|
|
grid-template-columns: 52px 1fr auto;
|
|
gap: 14px;
|
|
padding: 12px 6px;
|
|
border-bottom: 1px solid var(--border);
|
|
align-items: start;
|
|
cursor: pointer;
|
|
transition: background 0.12s;
|
|
border-radius: var(--r);
|
|
margin: 0 -6px;
|
|
}
|
|
.mechanic-card:last-child { border-bottom: none; }
|
|
.mechanic-card:hover { background: var(--bg2); }
|
|
|
|
.mechanic-delete-btn {
|
|
opacity: 0;
|
|
transition: opacity 0.12s;
|
|
margin-top: 2px;
|
|
}
|
|
.mechanic-card:hover .mechanic-delete-btn { opacity: 1; }
|
|
|
|
.mechanic-edit-hint {
|
|
font-size: 11px;
|
|
color: var(--t3);
|
|
margin-top: 2px;
|
|
opacity: 0;
|
|
transition: opacity 0.12s;
|
|
}
|
|
.mechanic-card:hover .mechanic-edit-hint { opacity: 1; }
|
|
|
|
.mechanic-time {
|
|
font-family: var(--font-d);
|
|
font-size: 14px;
|
|
color: var(--gold);
|
|
letter-spacing: 0.03em;
|
|
padding-top: 3px;
|
|
}
|
|
|
|
.mechanic-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.mechanic-phase {
|
|
font-size: 11px;
|
|
color: var(--blue);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.07em;
|
|
}
|
|
|
|
.mechanic-name {
|
|
font-size: 15px;
|
|
color: var(--t1);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.mechanic-dmg {
|
|
font-size: 13px;
|
|
color: var(--t2);
|
|
}
|
|
|
|
.mechanic-assignments {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 4px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.mechanic-no-assign {
|
|
font-size: 12px;
|
|
color: var(--t3);
|
|
}
|
|
|
|
.badge-assign {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
background: var(--bg2);
|
|
border: 1px solid var(--borderem);
|
|
border-radius: var(--r);
|
|
padding: 4px 10px;
|
|
font-size: 13px;
|
|
color: var(--t2);
|
|
}
|
|
.badge-assign-buff { background: rgba(200,168,75,.08); border-color: rgba(200,168,75,.4); color: var(--gold); }
|
|
.badge-assign-debuff { background: rgba(224,92,92,.08); border-color: rgba(224,92,92,.4); color: var(--red); }
|
|
.badge-assign-shield { background: rgba(74,158,255,.08); border-color: rgba(74,158,255,.4); color: var(--blue); }
|
|
|
|
.badge-assign--missing-job {
|
|
border-style: dashed;
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.badge-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
object-fit: contain;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.badge-remove {
|
|
background: none;
|
|
border: none;
|
|
color: inherit;
|
|
padding: 0;
|
|
margin-left: 2px;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
line-height: 1;
|
|
opacity: 0;
|
|
transition: opacity 0.12s;
|
|
}
|
|
.badge-assign:hover .badge-remove { opacity: 0.6; }
|
|
.badge-remove:hover { opacity: 1 !important; }
|
|
|
|
.mechanic-notes {
|
|
font-size: 12px;
|
|
color: var(--t3);
|
|
font-style: italic;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* ── Import Modal ────────────────────────────────────────────────────────────── */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.72);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 200;
|
|
padding: 20px;
|
|
}
|
|
|
|
.modal-box {
|
|
background: var(--bgcard);
|
|
border: 1px solid var(--borderem);
|
|
border-radius: var(--rl);
|
|
padding: 28px 32px;
|
|
max-width: 480px;
|
|
width: 100%;
|
|
}
|
|
|
|
.modal-title {
|
|
font-family: var(--font-d);
|
|
font-size: 15px;
|
|
color: var(--gold);
|
|
letter-spacing: 0.07em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.modal-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.modal-label {
|
|
font-size: 12px;
|
|
color: var(--t2);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.modal-radio-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
color: var(--t1);
|
|
user-select: none;
|
|
}
|
|
/* Override global input styles that break radio button layout */
|
|
.modal-radio-label input[type="radio"] {
|
|
width: auto;
|
|
min-width: 0;
|
|
padding: 0;
|
|
background: none;
|
|
border: none;
|
|
border-radius: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.modal-subsection {
|
|
margin-left: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
.modal-subsection input,
|
|
.modal-subsection select {
|
|
font-size: 14px;
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
.modal-hint {
|
|
font-size: 12px;
|
|
color: var(--t3);
|
|
}
|
|
|
|
.modal-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
/* ── Ability Assignment Modal ────────────────────────────────────────────────── */
|
|
.ability-modal-box {
|
|
max-width: 640px;
|
|
max-height: 80vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.ability-job-group {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.ability-job-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.ability-chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ability-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
background: none;
|
|
border: 1px solid var(--borderem);
|
|
border-radius: var(--r);
|
|
padding: 4px 10px;
|
|
font-size: 12px;
|
|
color: var(--t2);
|
|
cursor: pointer;
|
|
transition: all 0.12s;
|
|
}
|
|
.ability-chip:hover { background: var(--bg3); color: var(--t1); }
|
|
|
|
.ability-chip.badge-assign-buff.ability-chip--active { background: rgba(200,168,75,.18); border-color: rgba(200,168,75,.6); color: var(--gold); }
|
|
.ability-chip.badge-assign-debuff.ability-chip--active { background: rgba(224,92,92,.18); border-color: rgba(224,92,92,.6); color: var(--red); }
|
|
.ability-chip.badge-assign-shield.ability-chip--active { background: rgba(74,158,255,.18); border-color: rgba(74,158,255,.6); color: var(--blue); }
|
|
|
|
.ability-chip--other-job { opacity: 0.45; }
|
|
|
|
/* ── Equivalents hint ────────────────────────────────────────────────────────── */
|
|
.badge-with-hint {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 2px;
|
|
}
|
|
|
|
.badge-equiv-hint {
|
|
font-size: 11px;
|
|
color: var(--green);
|
|
white-space: nowrap;
|
|
padding: 0 2px;
|
|
cursor: default;
|
|
}
|
|
|
|
.badge-no-equiv-hint {
|
|
font-size: 11px;
|
|
color: var(--red);
|
|
white-space: nowrap;
|
|
padding: 0 2px;
|
|
cursor: default;
|
|
}
|
|
|
|
.badge-job-hint {
|
|
font-size: 11px;
|
|
color: var(--t3);
|
|
white-space: nowrap;
|
|
padding: 0 2px;
|
|
cursor: default;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* ── Folder Sidebar ──────────────────────────────────────────────────────────── */
|
|
.folder-section { margin-bottom: 2px; }
|
|
|
|
.folder-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 7px 10px;
|
|
border-radius: var(--r);
|
|
cursor: pointer;
|
|
transition: background 0.12s;
|
|
user-select: none;
|
|
}
|
|
.folder-row:hover { background: var(--bg2); }
|
|
|
|
.folder-chevron {
|
|
font-size: 9px;
|
|
color: var(--t3);
|
|
transition: transform 0.15s;
|
|
display: inline-block;
|
|
width: 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
.folder-chevron.open { transform: rotate(90deg); }
|
|
|
|
.folder-name-text {
|
|
font-size: 13px;
|
|
color: var(--t1);
|
|
font-weight: 500;
|
|
flex: 1;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.folder-name-input {
|
|
font-size: 13px !important;
|
|
padding: 2px 6px !important;
|
|
flex: 1;
|
|
width: auto !important;
|
|
min-width: 80px;
|
|
}
|
|
|
|
.folder-count {
|
|
font-size: 11px;
|
|
color: var(--t3);
|
|
background: var(--bg3);
|
|
border-radius: 10px;
|
|
padding: 1px 6px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.folder-actions {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
opacity: 0;
|
|
transition: opacity 0.12s;
|
|
}
|
|
.folder-row:hover .folder-actions { opacity: 1; }
|
|
|
|
.folder-plans { padding-left: 10px; }
|
|
.folder-plans.collapsed { display: none; }
|
|
|
|
.folder-empty {
|
|
font-size: 12px;
|
|
color: var(--t3);
|
|
padding: 5px 10px;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* ── Folder Picker Dropdown ──────────────────────────────────────────────────── */
|
|
.folder-picker {
|
|
background: var(--bgcard);
|
|
border: 1px solid var(--borderem);
|
|
border-radius: var(--r);
|
|
box-shadow: 0 4px 16px rgba(0,0,0,0.5);
|
|
min-width: 160px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.folder-picker-option {
|
|
padding: 7px 14px;
|
|
font-size: 13px;
|
|
color: var(--t2);
|
|
cursor: pointer;
|
|
transition: background 0.1s;
|
|
white-space: nowrap;
|
|
}
|
|
.folder-picker-option:hover { background: var(--bg2); color: var(--t1); }
|
|
.folder-picker-option.active { color: var(--gold); }
|