1685 lines
30 KiB
CSS
1685 lines
30 KiB
CSS
html {
|
|
font-size: 15px;
|
|
min-height: 100%;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
:root {
|
|
--plotline-ink: #1e252b;
|
|
--plotline-muted: #66717b;
|
|
--plotline-paper: #fbfaf7;
|
|
--plotline-panel: #ffffff;
|
|
--plotline-line: #d8ddd8;
|
|
--plotline-accent: #2f6f63;
|
|
--plotline-accent-dark: #22534a;
|
|
--plotline-soft: #eef5f2;
|
|
--timeline-label-width: 180px;
|
|
--timeline-scene-width: 220px;
|
|
--timeline-grid-gap: 10px;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
margin-bottom: 0;
|
|
color: var(--plotline-ink);
|
|
background: var(--plotline-paper);
|
|
}
|
|
|
|
a {
|
|
color: var(--plotline-accent-dark);
|
|
}
|
|
|
|
.btn-primary {
|
|
--bs-btn-bg: var(--plotline-accent);
|
|
--bs-btn-border-color: var(--plotline-accent);
|
|
--bs-btn-hover-bg: var(--plotline-accent-dark);
|
|
--bs-btn-hover-border-color: var(--plotline-accent-dark);
|
|
}
|
|
|
|
.btn-outline-primary {
|
|
--bs-btn-color: var(--plotline-accent-dark);
|
|
--bs-btn-border-color: var(--plotline-accent);
|
|
--bs-btn-hover-bg: var(--plotline-accent);
|
|
--bs-btn-hover-border-color: var(--plotline-accent);
|
|
}
|
|
|
|
.plotline-nav {
|
|
background: rgba(255, 255, 255, 0.94);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.plotline-shell {
|
|
max-width: 1480px;
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
}
|
|
|
|
.plotline-shell-wide {
|
|
max-width: none;
|
|
padding-left: clamp(18px, 2vw, 32px);
|
|
padding-right: clamp(18px, 2vw, 32px);
|
|
}
|
|
|
|
.page-heading {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 24px;
|
|
margin: 18px 0 24px;
|
|
}
|
|
|
|
.workspace-heading {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 18px;
|
|
margin: 14px 0 18px;
|
|
}
|
|
|
|
.workspace-heading h1 {
|
|
margin: 0;
|
|
font-size: clamp(1.8rem, 3vw, 2.7rem);
|
|
line-height: 1.05;
|
|
}
|
|
|
|
.page-heading.compact {
|
|
max-width: 980px;
|
|
}
|
|
|
|
.page-heading h1 {
|
|
margin: 0;
|
|
font-size: clamp(2rem, 4vw, 3.2rem);
|
|
line-height: 1.05;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.eyebrow {
|
|
margin: 0 0 6px;
|
|
color: var(--plotline-accent-dark);
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.lead-text {
|
|
max-width: 760px;
|
|
margin: 10px 0 0;
|
|
color: var(--plotline-muted);
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.button-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.content-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.plain-card,
|
|
.empty-panel,
|
|
.edit-panel,
|
|
.list-section {
|
|
background: var(--plotline-panel);
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
box-shadow: 0 10px 24px rgba(30, 37, 43, 0.04);
|
|
}
|
|
|
|
.plain-card h2,
|
|
.empty-panel h2,
|
|
.list-section h2 {
|
|
margin-top: 0;
|
|
font-size: 1.35rem;
|
|
}
|
|
|
|
.plain-card p,
|
|
.empty-panel p,
|
|
.muted {
|
|
color: var(--plotline-muted);
|
|
}
|
|
|
|
.edit-panel {
|
|
max-width: 980px;
|
|
}
|
|
|
|
.scene-editor {
|
|
max-width: 1180px;
|
|
}
|
|
|
|
.table {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.table th {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.78rem;
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.narrow {
|
|
width: 90px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.status-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
width: fit-content;
|
|
border: 1px solid #c8d8d2;
|
|
border-radius: 999px;
|
|
padding: 2px 8px;
|
|
color: var(--plotline-accent-dark);
|
|
background: var(--plotline-soft);
|
|
font-size: 0.78rem;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.order-buttons {
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.purpose-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
|
|
gap: 8px;
|
|
max-height: 260px;
|
|
overflow: auto;
|
|
padding: 10px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
background: #fcfcfb;
|
|
}
|
|
|
|
.purpose-check {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.92rem;
|
|
}
|
|
|
|
.timeline-filter {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-width: min(420px, 100%);
|
|
}
|
|
|
|
.workspace-layout {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
|
|
gap: 18px;
|
|
align-items: start;
|
|
}
|
|
|
|
.timeline-workspace {
|
|
min-width: 0;
|
|
}
|
|
|
|
.pacing-panel {
|
|
margin-top: 14px;
|
|
margin-bottom: 0;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 14px;
|
|
background: #fff;
|
|
box-shadow: 0 10px 24px rgba(30, 37, 43, 0.04);
|
|
}
|
|
|
|
.pacing-heading {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.pacing-heading h2 {
|
|
margin: 0;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.metric-graph-stack {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.metric-graph-row {
|
|
display: grid;
|
|
grid-template-columns: 150px minmax(260px, 1fr);
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.metric-graph-label {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.84rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.metric-graph-points {
|
|
display: grid;
|
|
grid-template-columns: repeat(var(--scene-count), minmax(28px, 1fr));
|
|
gap: 5px;
|
|
align-items: end;
|
|
min-height: 52px;
|
|
border-radius: 8px;
|
|
padding: 6px;
|
|
background: linear-gradient(180deg, #f6faf8 0%, #edf4f1 100%);
|
|
}
|
|
|
|
.metric-point {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
height: 48px;
|
|
min-width: 28px;
|
|
color: var(--plotline-accent-dark);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.metric-point::before {
|
|
content: "";
|
|
display: block;
|
|
width: 100%;
|
|
height: max(8px, var(--metric-height));
|
|
border-radius: 5px 5px 2px 2px;
|
|
background: linear-gradient(180deg, #6fa99b, var(--plotline-accent-dark));
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
|
|
}
|
|
|
|
.metric-point span {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
}
|
|
|
|
.timeline-shell {
|
|
overflow-x: auto;
|
|
padding: 16px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
|
|
}
|
|
|
|
.workspace-timeline {
|
|
min-height: 420px;
|
|
}
|
|
|
|
.timeline-book {
|
|
margin-bottom: 22px;
|
|
width: max-content;
|
|
min-width: 100%;
|
|
}
|
|
|
|
.timeline-book:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.timeline-book-title {
|
|
position: sticky;
|
|
left: 0;
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
width: var(--timeline-label-width);
|
|
min-height: 46px;
|
|
border-radius: 8px;
|
|
padding: 8px 12px;
|
|
color: #fff;
|
|
background: var(--plotline-accent-dark);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.timeline-book-row {
|
|
display: grid;
|
|
grid-template-columns: var(--timeline-label-width) max-content;
|
|
gap: var(--timeline-grid-gap);
|
|
align-items: stretch;
|
|
}
|
|
|
|
.timeline-chapters {
|
|
display: flex;
|
|
gap: var(--timeline-grid-gap);
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.timeline-chapter {
|
|
flex: 0 0 auto;
|
|
width: calc((var(--chapter-scene-count) * var(--timeline-scene-width)) + ((var(--chapter-scene-count) - 1) * var(--timeline-grid-gap)));
|
|
min-width: var(--timeline-scene-width);
|
|
border-radius: 8px;
|
|
background: rgba(238, 245, 242, 0.7);
|
|
outline: 1px solid #d4ded8;
|
|
outline-offset: 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
.timeline-chapter-title {
|
|
display: grid;
|
|
gap: 2px;
|
|
border-bottom: 1px solid #d4ded8;
|
|
padding: 10px 12px;
|
|
color: var(--plotline-accent-dark);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.timeline-chapter-title span {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.76rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.timeline-scenes {
|
|
display: grid;
|
|
grid-template-columns: repeat(var(--chapter-scene-count), var(--timeline-scene-width));
|
|
gap: var(--timeline-grid-gap);
|
|
min-height: 190px;
|
|
padding: 0;
|
|
}
|
|
|
|
.timeline-scene-card,
|
|
.timeline-empty-scene {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
width: var(--timeline-scene-width);
|
|
min-width: var(--timeline-scene-width);
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
background: #fff;
|
|
color: var(--plotline-ink);
|
|
text-decoration: none;
|
|
box-shadow: 0 8px 18px rgba(30, 37, 43, 0.05);
|
|
}
|
|
|
|
.timeline-scene-card:hover {
|
|
border-color: var(--plotline-accent);
|
|
color: var(--plotline-ink);
|
|
}
|
|
|
|
.timeline-scene-card.selected {
|
|
border-color: var(--plotline-accent-dark);
|
|
box-shadow: 0 0 0 3px rgba(47, 111, 99, 0.16), 0 10px 22px rgba(30, 37, 43, 0.08);
|
|
}
|
|
|
|
.scene-badge-row,
|
|
.purpose-chip-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 5px;
|
|
align-items: center;
|
|
}
|
|
|
|
.warning-placeholder {
|
|
display: inline-flex;
|
|
width: fit-content;
|
|
border: 1px dashed #d6b25e;
|
|
border-radius: 999px;
|
|
padding: 2px 8px;
|
|
color: #755715;
|
|
background: #fff8e8;
|
|
font-size: 0.74rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.warning-placeholder.active {
|
|
border-color: rgba(159, 69, 69, 0.36);
|
|
color: #8a3434;
|
|
background: rgba(255, 232, 232, 0.9);
|
|
}
|
|
|
|
.dependency-placeholder {
|
|
display: inline-flex;
|
|
width: fit-content;
|
|
border: 1px solid rgba(47, 111, 99, 0.2);
|
|
border-radius: 999px;
|
|
padding: 2px 8px;
|
|
color: var(--plotline-accent-dark);
|
|
background: rgba(47, 111, 99, 0.08);
|
|
font-size: 0.74rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.purpose-chip {
|
|
display: inline-flex;
|
|
width: fit-content;
|
|
border-radius: 999px;
|
|
padding: 2px 7px;
|
|
color: #38453e;
|
|
background: #edf0eb;
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.future-lane-placeholder {
|
|
border-top: 1px dashed #cbd8d2;
|
|
padding: 8px 12px;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.78rem;
|
|
background: rgba(255, 255, 255, 0.45);
|
|
}
|
|
|
|
.colour-swatch {
|
|
display: inline-block;
|
|
width: 18px;
|
|
height: 18px;
|
|
border: 1px solid rgba(30, 37, 43, 0.18);
|
|
border-radius: 999px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.plot-lane-board {
|
|
display: grid;
|
|
gap: 8px;
|
|
width: max-content;
|
|
min-width: 100%;
|
|
margin-top: 14px;
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding-top: 14px;
|
|
}
|
|
|
|
.plot-lane-board-heading {
|
|
position: sticky;
|
|
left: 0;
|
|
display: grid;
|
|
width: fit-content;
|
|
margin-bottom: 2px;
|
|
color: var(--plotline-accent-dark);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.plot-lane-board-heading small {
|
|
color: var(--plotline-muted);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.plot-lane-row {
|
|
display: grid;
|
|
grid-template-columns: var(--timeline-label-width) repeat(var(--scene-count), var(--timeline-scene-width));
|
|
gap: var(--timeline-grid-gap);
|
|
align-items: stretch;
|
|
}
|
|
|
|
.plot-lane-label {
|
|
position: sticky;
|
|
left: 0;
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-height: 46px;
|
|
border: 1px solid color-mix(in srgb, var(--plot-colour), #ffffff 55%);
|
|
border-left: 5px solid var(--plot-colour);
|
|
border-radius: 8px;
|
|
padding: 8px 10px;
|
|
background: #fff;
|
|
color: var(--plotline-ink);
|
|
text-decoration: none;
|
|
box-shadow: 0 6px 14px rgba(30, 37, 43, 0.04);
|
|
}
|
|
|
|
.plot-lane-label:hover {
|
|
color: var(--plotline-ink);
|
|
border-color: var(--plot-colour);
|
|
}
|
|
|
|
.plot-lane-slots {
|
|
display: contents;
|
|
}
|
|
|
|
.plot-lane-slot {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-content: flex-start;
|
|
gap: 5px;
|
|
min-height: 46px;
|
|
border: 1px dashed #d8ddd8;
|
|
border-radius: 8px;
|
|
padding: 7px;
|
|
background: rgba(255, 255, 255, 0.62);
|
|
}
|
|
|
|
.thread-marker {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 26px;
|
|
height: 24px;
|
|
border: 1px solid color-mix(in srgb, var(--plot-colour), #000000 18%);
|
|
border-radius: 999px;
|
|
padding: 0 7px;
|
|
color: var(--plotline-ink);
|
|
background: color-mix(in srgb, var(--plot-colour), #ffffff 78%);
|
|
font-size: 0.72rem;
|
|
font-weight: 800;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.thread-marker:hover {
|
|
color: var(--plotline-ink);
|
|
background: color-mix(in srgb, var(--plot-colour), #ffffff 58%);
|
|
}
|
|
|
|
.thread-marker.resolved {
|
|
border-color: #5a8c60;
|
|
background: #e6f4e7;
|
|
color: #24512b;
|
|
}
|
|
|
|
.thread-marker.contradicted {
|
|
border-color: #b45c5c;
|
|
background: #fff0f0;
|
|
color: #7a2222;
|
|
}
|
|
|
|
.thread-events-section {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.thread-event-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.thread-event-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
border: 1px solid color-mix(in srgb, var(--plot-colour), #ffffff 55%);
|
|
border-left: 4px solid var(--plot-colour);
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
background: #fff;
|
|
}
|
|
|
|
.thread-event-item > div {
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.thread-event-marker {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: fit-content;
|
|
min-width: 24px;
|
|
height: 22px;
|
|
border-radius: 999px;
|
|
padding: 0 7px;
|
|
background: color-mix(in srgb, var(--plot-colour), #ffffff 72%);
|
|
font-size: 0.72rem;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.thread-event-create {
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.asset-lane-board {
|
|
display: grid;
|
|
gap: 8px;
|
|
width: max-content;
|
|
min-width: 100%;
|
|
margin-top: 14px;
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding-top: 14px;
|
|
}
|
|
|
|
.asset-lane-row {
|
|
display: grid;
|
|
grid-template-columns: var(--timeline-label-width) repeat(var(--scene-count), var(--timeline-scene-width));
|
|
gap: var(--timeline-grid-gap);
|
|
align-items: stretch;
|
|
}
|
|
|
|
.asset-lane-label {
|
|
position: sticky;
|
|
left: 0;
|
|
z-index: 2;
|
|
display: grid;
|
|
gap: 2px;
|
|
min-height: 46px;
|
|
border: 1px solid #d4d7df;
|
|
border-left: 5px solid #6b5b95;
|
|
border-radius: 8px;
|
|
padding: 8px 10px;
|
|
background: #fff;
|
|
color: var(--plotline-ink);
|
|
text-decoration: none;
|
|
box-shadow: 0 6px 14px rgba(30, 37, 43, 0.04);
|
|
}
|
|
|
|
.asset-lane-label span {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.asset-lane-slots {
|
|
display: contents;
|
|
}
|
|
|
|
.asset-lane-slot {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-content: flex-start;
|
|
gap: 5px;
|
|
min-height: 46px;
|
|
border: 1px dashed #d8ddd8;
|
|
border-radius: 8px;
|
|
padding: 7px;
|
|
background: rgba(250, 249, 255, 0.72);
|
|
}
|
|
|
|
.asset-marker,
|
|
.asset-event-marker {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 26px;
|
|
height: 24px;
|
|
border: 1px solid #7f70aa;
|
|
border-radius: 7px;
|
|
padding: 0 7px;
|
|
color: #33284e;
|
|
background: #eee9fb;
|
|
font-size: 0.72rem;
|
|
font-weight: 800;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.asset-marker:hover {
|
|
color: #33284e;
|
|
background: #dfd6f7;
|
|
}
|
|
|
|
.asset-events-section {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.asset-event-list,
|
|
.asset-mini-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.asset-event-item,
|
|
.asset-mini-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
border: 1px solid #ded9ea;
|
|
border-left: 4px solid #6b5b95;
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
background: #fff;
|
|
}
|
|
|
|
.asset-event-item > div,
|
|
.asset-mini-item > div {
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.asset-create-form {
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.asset-card-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.asset-card {
|
|
display: grid;
|
|
gap: 12px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 14px;
|
|
background: #fff;
|
|
box-shadow: 0 8px 18px rgba(30, 37, 43, 0.04);
|
|
}
|
|
|
|
.asset-card h2 {
|
|
margin: 0;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.asset-card-footer {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.asset-detail-grid {
|
|
display: grid;
|
|
grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
|
|
gap: 14px;
|
|
}
|
|
|
|
.character-lane-board {
|
|
display: grid;
|
|
gap: 8px;
|
|
width: max-content;
|
|
min-width: 100%;
|
|
margin-top: 14px;
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding-top: 14px;
|
|
}
|
|
|
|
.character-lane-row {
|
|
display: grid;
|
|
grid-template-columns: var(--timeline-label-width) repeat(var(--scene-count), var(--timeline-scene-width));
|
|
gap: var(--timeline-grid-gap);
|
|
align-items: stretch;
|
|
}
|
|
|
|
.character-lane-label {
|
|
position: sticky;
|
|
left: 0;
|
|
z-index: 2;
|
|
display: grid;
|
|
gap: 2px;
|
|
min-height: 46px;
|
|
border: 1px solid #d7d4ce;
|
|
border-left: 5px solid #8a6f3d;
|
|
border-radius: 8px;
|
|
padding: 8px 10px;
|
|
background: #fff;
|
|
color: var(--plotline-ink);
|
|
text-decoration: none;
|
|
box-shadow: 0 6px 14px rgba(30, 37, 43, 0.04);
|
|
}
|
|
|
|
.character-lane-label span {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.character-lane-slots {
|
|
display: contents;
|
|
}
|
|
|
|
.character-lane-slot {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-content: flex-start;
|
|
gap: 5px;
|
|
min-height: 46px;
|
|
border: 1px dashed #d8ddd8;
|
|
border-radius: 8px;
|
|
padding: 7px;
|
|
background: rgba(255, 252, 246, 0.72);
|
|
}
|
|
|
|
.character-marker {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 26px;
|
|
height: 24px;
|
|
border: 1px solid #9a7a3f;
|
|
border-radius: 999px;
|
|
padding: 0 7px;
|
|
color: #4f3810;
|
|
background: #fff2d7;
|
|
font-size: 0.72rem;
|
|
font-weight: 800;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.character-card {
|
|
border-left: 4px solid #8a6f3d;
|
|
}
|
|
|
|
.character-section {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.character-item {
|
|
border-left-color: #8a6f3d;
|
|
}
|
|
|
|
.scene-number,
|
|
.time-label {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.82rem;
|
|
}
|
|
|
|
.location-pill,
|
|
.location-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
width: fit-content;
|
|
border: 1px solid rgba(47, 111, 99, 0.18);
|
|
border-radius: 999px;
|
|
padding: 2px 7px;
|
|
color: var(--plotline-accent-dark);
|
|
background: rgba(47, 111, 99, 0.08);
|
|
font-size: 0.74rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.scene-summary {
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.88rem;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 4;
|
|
}
|
|
|
|
.timeline-empty-scene {
|
|
justify-content: center;
|
|
color: var(--plotline-muted);
|
|
background: rgba(255, 255, 255, 0.58);
|
|
}
|
|
|
|
.form-control:focus,
|
|
.form-select:focus,
|
|
.form-check-input:focus {
|
|
border-color: var(--plotline-accent);
|
|
box-shadow: 0 0 0 0.2rem rgba(47, 111, 99, 0.16);
|
|
}
|
|
|
|
.scene-inspector-panel {
|
|
position: sticky;
|
|
top: 76px;
|
|
max-height: calc(100vh - 96px);
|
|
overflow: auto;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 16px;
|
|
background: #fff;
|
|
box-shadow: 0 14px 32px rgba(30, 37, 43, 0.08);
|
|
}
|
|
|
|
.inspector-header,
|
|
.inspector-empty {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.inspector-header h2,
|
|
.inspector-empty h2 {
|
|
margin: 0;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.inspector-empty p:last-child {
|
|
color: var(--plotline-muted);
|
|
}
|
|
|
|
.scene-inspector-form {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.inspector-section {
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.inspector-section:first-of-type {
|
|
border-top: 0;
|
|
padding-top: 0;
|
|
}
|
|
|
|
.inspector-section h3 {
|
|
margin: 0 0 10px;
|
|
font-size: 0.95rem;
|
|
color: var(--plotline-accent-dark);
|
|
}
|
|
|
|
.location-helper {
|
|
border: 1px solid rgba(138, 111, 61, 0.22);
|
|
border-radius: 8px;
|
|
padding: 10px;
|
|
background: rgba(255, 248, 232, 0.74);
|
|
}
|
|
|
|
.location-warning-list {
|
|
margin: 0;
|
|
padding-left: 18px;
|
|
color: #6f5526;
|
|
font-size: 0.86rem;
|
|
}
|
|
|
|
.location-tree {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.location-tree-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
border-bottom: 1px solid var(--plotline-line);
|
|
padding: 10px 0 10px calc(var(--location-depth, 0) * 22px);
|
|
}
|
|
|
|
.location-tree-row:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.location-tree-row > div:first-child {
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.compact-buttons {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.location-chip-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.location-chip {
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 7px 10px;
|
|
background: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.location-relationship-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.location-relationship-card {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 10px;
|
|
background: #fff;
|
|
}
|
|
|
|
.location-flags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px 16px;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.86rem;
|
|
}
|
|
|
|
.validation-summary,
|
|
.warning-filter-panel {
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
margin-bottom: 16px;
|
|
padding: 12px;
|
|
background: #fff;
|
|
}
|
|
|
|
.validation-summary {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
color: var(--plotline-muted);
|
|
}
|
|
|
|
.warning-dashboard-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.warning-count-row,
|
|
.warning-card-title,
|
|
.inspector-section-heading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.warning-list,
|
|
.warning-mini-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.warning-card,
|
|
.warning-mini-card {
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
background: #fff;
|
|
}
|
|
|
|
.warning-card {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 12px;
|
|
}
|
|
|
|
.warning-card p,
|
|
.warning-mini-card p {
|
|
margin: 6px 0;
|
|
}
|
|
|
|
.warning-actions {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.severity-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border-radius: 999px;
|
|
padding: 2px 8px;
|
|
font-size: 0.74rem;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.severity-pill.info {
|
|
color: #365f7c;
|
|
background: rgba(107, 153, 184, 0.14);
|
|
}
|
|
|
|
.severity-pill.warning {
|
|
color: #7a5527;
|
|
background: rgba(205, 154, 72, 0.17);
|
|
}
|
|
|
|
.severity-pill.error {
|
|
color: #8a3434;
|
|
background: rgba(190, 83, 83, 0.15);
|
|
}
|
|
|
|
.warning-mini-card {
|
|
background: rgba(255, 255, 255, 0.76);
|
|
}
|
|
|
|
.dependency-columns {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.dependency-card {
|
|
display: grid;
|
|
gap: 3px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 8px;
|
|
margin-bottom: 8px;
|
|
padding: 9px;
|
|
background: rgba(255, 255, 255, 0.78);
|
|
}
|
|
|
|
.move-preview-panel {
|
|
max-width: 900px;
|
|
}
|
|
|
|
.focused-validation-summary {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
border: 1px solid rgba(47, 111, 99, 0.16);
|
|
border-radius: 8px;
|
|
margin-top: 12px;
|
|
padding: 10px;
|
|
color: var(--plotline-muted);
|
|
background: rgba(47, 111, 99, 0.05);
|
|
}
|
|
|
|
.inspector-purpose-list {
|
|
grid-template-columns: 1fr;
|
|
max-height: 210px;
|
|
}
|
|
|
|
.metric-slider-stack {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.metric-slider {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.metric-slider-label {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.86rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.metric-slider-label output {
|
|
color: var(--plotline-accent-dark);
|
|
}
|
|
|
|
.metric-slider .form-range {
|
|
accent-color: var(--plotline-accent);
|
|
}
|
|
|
|
.scene-inspector-root {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.scene-overview-card {
|
|
display: grid;
|
|
gap: 10px;
|
|
border: 1px solid rgba(47, 111, 99, 0.18);
|
|
border-radius: 10px;
|
|
padding: 12px;
|
|
background: linear-gradient(180deg, rgba(47, 111, 99, 0.08), rgba(255, 255, 255, 0.88));
|
|
}
|
|
|
|
.scene-overview-card h3 {
|
|
margin: 0;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.scene-overview-card .muted {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 7px;
|
|
margin: 0;
|
|
}
|
|
|
|
.overview-chip-grid,
|
|
.context-nav,
|
|
.breadcrumb-trail,
|
|
.inspector-nav-links {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 7px;
|
|
}
|
|
|
|
.overview-chip,
|
|
.context-nav a,
|
|
.breadcrumb-trail a,
|
|
.breadcrumb-trail span {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 999px;
|
|
padding: 4px 9px;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.78rem;
|
|
font-weight: 800;
|
|
text-decoration: none;
|
|
background: rgba(255, 255, 255, 0.72);
|
|
}
|
|
|
|
.overview-chip.attention {
|
|
color: #7a5527;
|
|
border-color: rgba(205, 154, 72, 0.35);
|
|
background: rgba(205, 154, 72, 0.14);
|
|
}
|
|
|
|
.overview-outcome {
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
margin: 0;
|
|
color: var(--plotline-muted);
|
|
}
|
|
|
|
.inspector-quick-nav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 5;
|
|
display: grid;
|
|
gap: 8px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
background: rgba(255, 255, 255, 0.94);
|
|
box-shadow: 0 10px 24px rgba(55, 48, 39, 0.08);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.inspector-nav-links a {
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 999px;
|
|
padding: 4px 8px;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.76rem;
|
|
font-weight: 800;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.inspector-nav-links a:hover,
|
|
.inspector-nav-links a.active {
|
|
color: var(--plotline-accent-dark);
|
|
border-color: rgba(47, 111, 99, 0.35);
|
|
background: rgba(47, 111, 99, 0.08);
|
|
}
|
|
|
|
.inspector-accordion-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
border: 0;
|
|
padding: 0;
|
|
color: var(--plotline-ink);
|
|
font-size: 0.95rem;
|
|
font-weight: 900;
|
|
text-align: left;
|
|
background: transparent;
|
|
}
|
|
|
|
.inspector-accordion-toggle::before {
|
|
content: "+";
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 999px;
|
|
margin-right: 7px;
|
|
color: var(--plotline-accent-dark);
|
|
background: rgba(47, 111, 99, 0.09);
|
|
}
|
|
|
|
.inspector-section.is-open > .inspector-accordion-toggle::before {
|
|
content: "-";
|
|
}
|
|
|
|
.inspector-accordion-toggle span:first-child {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.accordion-count {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.inspector-subheading {
|
|
margin: 14px 0 8px;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.88rem;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.inspector-accordion-body {
|
|
display: none;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.inspector-section.is-open > .inspector-accordion-body {
|
|
display: block;
|
|
}
|
|
|
|
.inspector-section.is-filtered-out {
|
|
display: none;
|
|
}
|
|
|
|
.breadcrumb-trail {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.breadcrumb-trail a:hover,
|
|
.context-nav a:hover {
|
|
color: var(--plotline-accent-dark);
|
|
border-color: rgba(47, 111, 99, 0.35);
|
|
background: rgba(47, 111, 99, 0.08);
|
|
}
|
|
|
|
.context-header,
|
|
.working-context-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 10px;
|
|
margin-bottom: 16px;
|
|
padding: 10px 12px;
|
|
background: rgba(255, 255, 255, 0.84);
|
|
box-shadow: 0 10px 24px rgba(55, 48, 39, 0.05);
|
|
}
|
|
|
|
.context-title {
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.context-title strong {
|
|
color: var(--plotline-ink);
|
|
}
|
|
|
|
.health-kpi-grid,
|
|
.analytics-grid-two,
|
|
.analytics-grid-three {
|
|
display: grid;
|
|
gap: 14px;
|
|
margin: 18px 0;
|
|
}
|
|
|
|
.health-kpi-grid {
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.health-kpi-grid .plain-card {
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.health-kpi-grid strong {
|
|
color: var(--plotline-ink);
|
|
font-size: 2rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.analytics-grid-two {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.analytics-grid-three {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.analytics-section {
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 10px;
|
|
margin: 18px 0;
|
|
padding: 16px;
|
|
background: rgba(255, 255, 255, 0.84);
|
|
box-shadow: 0 14px 34px rgba(55, 48, 39, 0.07);
|
|
}
|
|
|
|
.analytics-section-heading {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.analytics-section-heading h2,
|
|
.plain-card h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.analytics-metric-stack {
|
|
display: grid;
|
|
gap: 12px;
|
|
overflow-x: auto;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
.metric-shape-chart {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.metric-shape-intro {
|
|
max-width: 760px;
|
|
margin: 0;
|
|
color: var(--plotline-muted);
|
|
}
|
|
|
|
.metric-toggle-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.metric-toggle-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
border: 1px solid rgba(82, 75, 65, 0.16);
|
|
border-radius: 999px;
|
|
padding: 5px 9px;
|
|
color: var(--plotline-muted);
|
|
font-size: 0.78rem;
|
|
font-weight: 800;
|
|
background: rgba(255, 255, 255, 0.78);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.metric-toggle-pill::before {
|
|
content: "";
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: var(--metric-colour);
|
|
}
|
|
|
|
.metric-toggle-pill input {
|
|
margin: 0;
|
|
accent-color: var(--metric-colour);
|
|
}
|
|
|
|
.metric-chart-frame {
|
|
position: relative;
|
|
min-height: 320px;
|
|
border: 1px solid var(--plotline-line);
|
|
border-radius: 10px;
|
|
padding: 14px 12px 32px;
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 245, 240, 0.76));
|
|
}
|
|
|
|
.metric-chart-frame canvas {
|
|
width: 100%;
|
|
height: 300px;
|
|
}
|
|
|
|
.metric-raw-details {
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.metric-raw-details summary {
|
|
color: var(--plotline-muted);
|
|
font-size: 0.82rem;
|
|
font-weight: 800;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.analytics-metric-row {
|
|
display: grid;
|
|
grid-template-columns: 170px minmax(560px, 1fr);
|
|
gap: 12px;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.analytics-metric-label {
|
|
display: flex;
|
|
align-items: center;
|
|
border-right: 1px solid var(--plotline-line);
|
|
color: var(--plotline-muted);
|
|
font-weight: 800;
|
|
}
|
|
|
|
.analytics-sparkline {
|
|
display: grid;
|
|
grid-template-columns: repeat(var(--point-count), minmax(28px, 1fr));
|
|
align-items: end;
|
|
gap: 5px;
|
|
min-height: 88px;
|
|
border-bottom: 1px solid rgba(47, 111, 99, 0.25);
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.analytics-bar {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: end;
|
|
justify-content: center;
|
|
min-height: 12px;
|
|
height: max(12px, var(--bar-height));
|
|
border-radius: 6px 6px 2px 2px;
|
|
color: var(--plotline-accent-dark);
|
|
text-decoration: none;
|
|
background: linear-gradient(180deg, rgba(47, 111, 99, 0.58), rgba(47, 111, 99, 0.18));
|
|
}
|
|
|
|
.analytics-bar:hover {
|
|
background: linear-gradient(180deg, rgba(47, 111, 99, 0.82), rgba(47, 111, 99, 0.28));
|
|
}
|
|
|
|
.analytics-bar span {
|
|
position: absolute;
|
|
bottom: calc(100% + 3px);
|
|
color: var(--plotline-muted);
|
|
font-size: 0.68rem;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.analytics-list-item,
|
|
.analytics-link-row,
|
|
.analytics-count-row,
|
|
.purpose-stat-row {
|
|
border-top: 1px solid var(--plotline-line);
|
|
padding: 9px 0;
|
|
}
|
|
|
|
.analytics-list-item {
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.analytics-list-item p {
|
|
margin: 0;
|
|
}
|
|
|
|
.analytics-link-row,
|
|
.analytics-count-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.analytics-link-row {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.analytics-link-row:hover {
|
|
color: var(--plotline-accent-dark);
|
|
}
|
|
|
|
.analytics-link-row span,
|
|
.analytics-link-row strong {
|
|
min-width: 0;
|
|
}
|
|
|
|
.purpose-stat-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(120px, 1fr) minmax(90px, 1.5fr) 42px;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.purpose-stat-bar {
|
|
overflow: hidden;
|
|
height: 8px;
|
|
border-radius: 999px;
|
|
background: rgba(47, 111, 99, 0.08);
|
|
}
|
|
|
|
.purpose-stat-bar span {
|
|
display: block;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
background: var(--plotline-accent);
|
|
}
|
|
|
|
.inspector-actions {
|
|
position: sticky;
|
|
bottom: -16px;
|
|
display: flex;
|
|
gap: 8px;
|
|
border-top: 1px solid var(--plotline-line);
|
|
margin: 2px -16px -16px;
|
|
padding: 12px 16px;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.plotline-shell {
|
|
padding-left: 14px;
|
|
padding-right: 14px;
|
|
}
|
|
|
|
.page-heading {
|
|
display: block;
|
|
}
|
|
|
|
.page-heading .button-row,
|
|
.timeline-filter {
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.timeline-filter {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
.workspace-layout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.scene-inspector-panel {
|
|
position: static;
|
|
max-height: none;
|
|
}
|
|
|
|
.metric-graph-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.health-kpi-grid,
|
|
.analytics-grid-two,
|
|
.analytics-grid-three {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.analytics-metric-row {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.analytics-metric-label {
|
|
border-right: 0;
|
|
}
|
|
}
|