1670 lines
28 KiB
CSS
1670 lines
28 KiB
CSS
:root {
|
|
color-scheme: light;
|
|
--bg: #f3efe4;
|
|
--bg-ink: #1c211c;
|
|
--panel: rgba(255, 252, 242, 0.9);
|
|
--panel-solid: #fffaf0;
|
|
--panel-border: rgba(43, 55, 38, 0.16);
|
|
--muted: #6d735f;
|
|
--accent: #bf5f2c;
|
|
--accent-strong: #8f351b;
|
|
--green: #3f7f51;
|
|
--yellow: #b58a22;
|
|
--red: #b74734;
|
|
--drawer: rgba(26, 31, 26, 0.72);
|
|
--shadow: 0 24px 70px rgba(44, 39, 25, 0.18);
|
|
font-family:
|
|
'Avenir Next', 'Segoe UI Variable', 'Noto Sans KR', ui-sans-serif,
|
|
sans-serif;
|
|
background: var(--bg);
|
|
color: var(--bg-ink);
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
scroll-padding-top: 92px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
background:
|
|
radial-gradient(
|
|
circle at 18% 12%,
|
|
rgba(214, 127, 58, 0.22),
|
|
transparent 28rem
|
|
),
|
|
radial-gradient(
|
|
circle at 88% 8%,
|
|
rgba(74, 123, 87, 0.18),
|
|
transparent 24rem
|
|
),
|
|
linear-gradient(135deg, #f4ead5 0%, #edf1df 46%, #f5f0e5 100%);
|
|
}
|
|
|
|
button,
|
|
input,
|
|
table {
|
|
font: inherit;
|
|
}
|
|
|
|
.shell {
|
|
display: grid;
|
|
grid-template-columns: 184px minmax(0, 1fr);
|
|
gap: 18px;
|
|
align-items: start;
|
|
width: min(1480px, calc(100% - 40px));
|
|
margin: 0 auto;
|
|
padding: 18px 0 calc(36px + env(safe-area-inset-bottom));
|
|
}
|
|
|
|
.shell-loading {
|
|
display: block;
|
|
}
|
|
|
|
.dashboard-content {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 12px;
|
|
min-width: 0;
|
|
min-height: calc(100vh - 36px);
|
|
}
|
|
|
|
.view-stack {
|
|
display: grid;
|
|
gap: 12px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.view-panel {
|
|
min-height: calc(100vh - 36px);
|
|
}
|
|
|
|
.shell::before {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
content: '';
|
|
background-image:
|
|
linear-gradient(rgba(28, 33, 28, 0.055) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(28, 33, 28, 0.045) 1px, transparent 1px);
|
|
background-size: 44px 44px;
|
|
mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
|
|
}
|
|
|
|
.loading {
|
|
display: grid;
|
|
min-height: 100vh;
|
|
place-items: center;
|
|
font-size: clamp(24px, 5vw, 54px);
|
|
font-weight: 900;
|
|
letter-spacing: -0.05em;
|
|
}
|
|
|
|
.eyebrow {
|
|
color: var(--accent-strong);
|
|
font-size: 12px;
|
|
font-weight: 850;
|
|
letter-spacing: 0.16em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
button {
|
|
min-height: 48px;
|
|
padding: 0 22px;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
color: #fffaf0;
|
|
background: linear-gradient(135deg, var(--accent), var(--accent-strong));
|
|
box-shadow: 0 14px 30px rgba(143, 53, 27, 0.24);
|
|
cursor: pointer;
|
|
}
|
|
|
|
button,
|
|
a {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
button:focus-visible,
|
|
a:focus-visible {
|
|
outline: 3px solid rgba(191, 95, 44, 0.45);
|
|
outline-offset: 3px;
|
|
}
|
|
|
|
button:disabled {
|
|
cursor: wait;
|
|
opacity: 0.62;
|
|
}
|
|
|
|
.section-nav {
|
|
position: sticky;
|
|
top: 10px;
|
|
z-index: 20;
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
margin: 0;
|
|
padding: 10px;
|
|
border: 1px solid rgba(43, 55, 38, 0.14);
|
|
border-radius: 22px;
|
|
background: rgba(255, 250, 240, 0.82);
|
|
box-shadow: 0 18px 48px rgba(44, 39, 25, 0.12);
|
|
backdrop-filter: blur(18px);
|
|
}
|
|
|
|
.section-nav button {
|
|
display: inline-flex;
|
|
min-height: 44px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 16px;
|
|
border-radius: 999px;
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.section-nav button {
|
|
min-height: 44px;
|
|
}
|
|
|
|
.section-nav .menu-button {
|
|
width: 48px;
|
|
min-width: 48px;
|
|
padding: 0;
|
|
gap: 4px;
|
|
flex-direction: column;
|
|
background: #20281f;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.menu-button span {
|
|
display: block;
|
|
width: 18px;
|
|
height: 2px;
|
|
border-radius: 999px;
|
|
background: #fffaf0;
|
|
}
|
|
|
|
.section-nav .refresh-button {
|
|
min-width: 96px;
|
|
}
|
|
|
|
.topbar-label {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
font-size: 14px;
|
|
letter-spacing: -0.02em;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.section-nav span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
font-weight: 750;
|
|
text-align: right;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.side-rail {
|
|
position: sticky;
|
|
top: 18px;
|
|
display: grid;
|
|
min-height: calc(100vh - 36px);
|
|
align-content: start;
|
|
gap: 14px;
|
|
padding: 16px;
|
|
border: 1px solid rgba(43, 55, 38, 0.14);
|
|
border-radius: 28px;
|
|
background: rgba(255, 250, 240, 0.78);
|
|
box-shadow: 0 18px 48px rgba(44, 39, 25, 0.1);
|
|
backdrop-filter: blur(18px);
|
|
}
|
|
|
|
.side-rail-brand strong {
|
|
display: block;
|
|
margin-top: 6px;
|
|
font-size: 24px;
|
|
letter-spacing: -0.05em;
|
|
}
|
|
|
|
.side-rail nav {
|
|
display: grid;
|
|
gap: 7px;
|
|
}
|
|
|
|
.side-rail nav a {
|
|
display: flex;
|
|
min-height: 44px;
|
|
align-items: center;
|
|
padding: 0 12px;
|
|
border-radius: 15px;
|
|
color: var(--bg-ink);
|
|
background: rgba(43, 55, 38, 0.055);
|
|
font-weight: 900;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.side-rail nav a:hover {
|
|
background: rgba(191, 95, 44, 0.12);
|
|
}
|
|
|
|
.side-rail nav a.is-active,
|
|
.side-rail nav a[aria-current='page'],
|
|
.nav-drawer nav a.is-active,
|
|
.nav-drawer nav a[aria-current='page'] {
|
|
color: #fffaf0;
|
|
background: linear-gradient(135deg, #2b3726, #1c211c);
|
|
box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.18);
|
|
}
|
|
|
|
.side-refresh {
|
|
width: 100%;
|
|
min-height: 44px;
|
|
color: var(--bg-ink);
|
|
background: rgba(43, 55, 38, 0.08);
|
|
box-shadow: none;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.side-refresh:hover {
|
|
background: rgba(191, 95, 44, 0.12);
|
|
}
|
|
|
|
.language-select {
|
|
display: grid;
|
|
gap: 8px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
font-weight: 850;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.language-select select {
|
|
min-height: 44px;
|
|
width: 100%;
|
|
padding: 0 12px;
|
|
border: 1px solid rgba(43, 55, 38, 0.14);
|
|
border-radius: 15px;
|
|
color: var(--bg-ink);
|
|
background: rgba(255, 250, 240, 0.78);
|
|
font: inherit;
|
|
font-size: 14px;
|
|
letter-spacing: 0;
|
|
text-transform: none;
|
|
}
|
|
|
|
.drawer-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 35;
|
|
min-height: 0;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
background: var(--drawer);
|
|
box-shadow: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.nav-drawer {
|
|
position: fixed;
|
|
z-index: 40;
|
|
top: max(14px, env(safe-area-inset-top));
|
|
bottom: max(14px, env(safe-area-inset-bottom));
|
|
left: 14px;
|
|
display: grid;
|
|
width: min(360px, calc(100vw - 28px));
|
|
grid-template-rows: auto 1fr auto;
|
|
gap: 18px;
|
|
padding: 18px;
|
|
border: 1px solid rgba(255, 250, 240, 0.3);
|
|
border-radius: 28px;
|
|
background: rgba(255, 250, 240, 0.94);
|
|
box-shadow: 0 28px 90px rgba(20, 18, 10, 0.36);
|
|
backdrop-filter: blur(20px);
|
|
}
|
|
|
|
.drawer-head {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.drawer-head strong {
|
|
display: block;
|
|
margin-top: 4px;
|
|
font-size: 24px;
|
|
letter-spacing: -0.04em;
|
|
}
|
|
|
|
.drawer-head button {
|
|
min-height: 44px;
|
|
padding: 0 14px;
|
|
color: var(--bg-ink);
|
|
background: rgba(43, 55, 38, 0.08);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.nav-drawer nav {
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 8px;
|
|
}
|
|
|
|
.nav-drawer nav a {
|
|
display: flex;
|
|
min-height: 48px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 16px;
|
|
border: 1px solid rgba(43, 55, 38, 0.08);
|
|
border-radius: 18px;
|
|
color: var(--bg-ink);
|
|
background: rgba(43, 55, 38, 0.045);
|
|
font-weight: 900;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav-drawer nav a::after {
|
|
color: var(--muted);
|
|
content: '↘';
|
|
}
|
|
|
|
.drawer-meta {
|
|
display: grid;
|
|
gap: 4px;
|
|
padding: 14px;
|
|
border-radius: 18px;
|
|
color: var(--muted);
|
|
background: rgba(43, 55, 38, 0.06);
|
|
}
|
|
|
|
.drawer-meta strong {
|
|
color: var(--bg-ink);
|
|
}
|
|
|
|
.error-card,
|
|
.card,
|
|
.panel {
|
|
border: 1px solid var(--panel-border);
|
|
background: var(--panel);
|
|
box-shadow: 0 12px 44px rgba(44, 39, 25, 0.09);
|
|
backdrop-filter: blur(14px);
|
|
}
|
|
|
|
.error-card {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 18px;
|
|
padding: 18px 20px;
|
|
border-color: rgba(183, 71, 52, 0.35);
|
|
border-radius: 22px;
|
|
color: #7c2518;
|
|
background: rgba(255, 235, 225, 0.82);
|
|
font-weight: 800;
|
|
}
|
|
|
|
.error-card button {
|
|
min-width: 112px;
|
|
flex: none;
|
|
}
|
|
|
|
.skeleton-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 16px;
|
|
margin: 0;
|
|
}
|
|
|
|
.ops-strip {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 1px;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
border: 1px solid var(--panel-border);
|
|
border-radius: 28px;
|
|
background: rgba(43, 55, 38, 0.12);
|
|
box-shadow: 0 18px 50px rgba(44, 39, 25, 0.08);
|
|
}
|
|
|
|
.ops-strip div {
|
|
display: grid;
|
|
gap: 5px;
|
|
min-height: 74px;
|
|
padding: 12px 14px;
|
|
background:
|
|
linear-gradient(
|
|
145deg,
|
|
rgba(255, 250, 240, 0.9),
|
|
rgba(255, 250, 240, 0.68)
|
|
),
|
|
radial-gradient(
|
|
circle at 18% 18%,
|
|
rgba(191, 95, 44, 0.1),
|
|
transparent 16rem
|
|
);
|
|
}
|
|
|
|
.ops-strip span {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.ops-strip strong {
|
|
font-size: clamp(18px, 2vw, 28px);
|
|
line-height: 1;
|
|
letter-spacing: -0.05em;
|
|
}
|
|
|
|
.ops-strip small {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.skeleton-card {
|
|
display: grid;
|
|
gap: 8px;
|
|
min-height: 112px;
|
|
padding: 22px;
|
|
border-radius: 26px;
|
|
}
|
|
|
|
td span,
|
|
td small,
|
|
dd,
|
|
.panel-title span,
|
|
.usage-title span,
|
|
.bar-line small {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.panel {
|
|
padding: 24px;
|
|
border-radius: 30px;
|
|
scroll-margin-top: 92px;
|
|
}
|
|
|
|
.usage-first {
|
|
padding: 18px;
|
|
}
|
|
|
|
.panel-title {
|
|
display: flex;
|
|
gap: 16px;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.panel-title h2 {
|
|
margin: 0;
|
|
font-family: 'Georgia', 'Noto Serif KR', serif;
|
|
font-size: clamp(26px, 3vw, 40px);
|
|
letter-spacing: -0.05em;
|
|
}
|
|
|
|
.table-wrap {
|
|
overflow: auto;
|
|
border: 1px solid rgba(43, 55, 38, 0.1);
|
|
border-radius: 22px;
|
|
background: rgba(255, 250, 240, 0.56);
|
|
}
|
|
|
|
.mobile-record-list {
|
|
display: none;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
min-width: 720px;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 16px;
|
|
border-bottom: 1px solid rgba(43, 55, 38, 0.1);
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
|
|
th {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
background: rgba(255, 250, 240, 0.7);
|
|
}
|
|
|
|
tr:last-child td {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
td strong,
|
|
td span,
|
|
td small {
|
|
display: block;
|
|
}
|
|
|
|
td strong {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
td small {
|
|
margin-top: 4px;
|
|
max-width: 480px;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.pill {
|
|
display: inline-flex;
|
|
width: fit-content;
|
|
align-items: center;
|
|
padding: 5px 10px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
font-weight: 850;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.pill-processing,
|
|
.pill-active {
|
|
color: #173e23;
|
|
background: rgba(63, 127, 81, 0.18);
|
|
}
|
|
|
|
.pill-waiting,
|
|
.pill-paused {
|
|
color: #6e4a05;
|
|
background: rgba(181, 138, 34, 0.2);
|
|
}
|
|
|
|
.pill-inactive,
|
|
.pill-completed {
|
|
color: #625d52;
|
|
background: rgba(109, 115, 95, 0.16);
|
|
}
|
|
|
|
.pill-ok {
|
|
color: #173e23;
|
|
background: rgba(63, 127, 81, 0.18);
|
|
}
|
|
|
|
.pill-warn {
|
|
color: #6e4a05;
|
|
background: rgba(181, 138, 34, 0.2);
|
|
}
|
|
|
|
.pill-critical {
|
|
color: #7c2518;
|
|
background: rgba(183, 71, 52, 0.18);
|
|
}
|
|
|
|
.usage-dashboard {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.usage-summary {
|
|
display: grid;
|
|
grid-template-columns: 1.1fr 0.46fr 0.9fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.usage-summary div,
|
|
.usage-matrix {
|
|
border: 1px solid rgba(43, 55, 38, 0.1);
|
|
border-radius: 18px;
|
|
background: rgba(255, 250, 240, 0.62);
|
|
}
|
|
|
|
.usage-summary div {
|
|
display: grid;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.usage-summary span,
|
|
.usage-window small {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.usage-summary strong {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
font-size: 14px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.usage-matrix {
|
|
display: grid;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.usage-matrix-head,
|
|
.usage-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(120px, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.usage-matrix-head {
|
|
padding: 9px 12px;
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
background: rgba(43, 55, 38, 0.055);
|
|
}
|
|
|
|
.usage-group {
|
|
display: grid;
|
|
}
|
|
|
|
.usage-group + .usage-group {
|
|
border-top: 1px solid rgba(43, 55, 38, 0.12);
|
|
}
|
|
|
|
.usage-group-label {
|
|
padding: 7px 10px;
|
|
color: var(--accent-strong);
|
|
font-size: 11px;
|
|
font-weight: 950;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
background: rgba(191, 95, 44, 0.07);
|
|
}
|
|
|
|
.usage-row {
|
|
--meter: var(--green);
|
|
padding: 8px 10px;
|
|
border-top: 1px solid rgba(43, 55, 38, 0.08);
|
|
}
|
|
|
|
.usage-warn {
|
|
--meter: var(--yellow);
|
|
}
|
|
|
|
.usage-critical {
|
|
--meter: var(--red);
|
|
}
|
|
|
|
.usage-account,
|
|
.usage-window div {
|
|
display: flex;
|
|
min-width: 0;
|
|
gap: 8px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.usage-account {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.usage-account strong {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
font-size: 14px;
|
|
letter-spacing: -0.02em;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.usage-window span {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-weight: 850;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.usage-window {
|
|
display: grid;
|
|
min-width: 0;
|
|
gap: 5px;
|
|
}
|
|
|
|
progress {
|
|
width: 100%;
|
|
height: 8px;
|
|
overflow: hidden;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
background: rgba(43, 55, 38, 0.1);
|
|
}
|
|
|
|
progress::-webkit-progress-bar {
|
|
background: rgba(43, 55, 38, 0.1);
|
|
}
|
|
|
|
progress::-webkit-progress-value {
|
|
border-radius: 999px;
|
|
background: linear-gradient(90deg, var(--meter, var(--green)), var(--accent));
|
|
}
|
|
|
|
progress::-moz-progress-bar {
|
|
border-radius: 999px;
|
|
background: linear-gradient(90deg, var(--meter, var(--green)), var(--accent));
|
|
}
|
|
|
|
.empty-state {
|
|
padding: 24px;
|
|
border: 1px dashed rgba(43, 55, 38, 0.2);
|
|
border-radius: 22px;
|
|
color: var(--muted);
|
|
background: rgba(255, 250, 240, 0.45);
|
|
}
|
|
|
|
.pill-info {
|
|
color: #625d52;
|
|
background: rgba(109, 115, 95, 0.16);
|
|
}
|
|
|
|
.pill-error,
|
|
.pill-down {
|
|
color: #7c2518;
|
|
background: rgba(183, 71, 52, 0.18);
|
|
}
|
|
|
|
.pill-stale {
|
|
color: #6e4a05;
|
|
background: rgba(181, 138, 34, 0.2);
|
|
}
|
|
|
|
.inbox-board,
|
|
.health-board {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.inbox-summary,
|
|
.health-signals {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.inbox-summary div,
|
|
.health-signals div,
|
|
.health-overview,
|
|
.inbox-card,
|
|
.health-service {
|
|
border: 1px solid rgba(43, 55, 38, 0.1);
|
|
border-radius: 18px;
|
|
background: rgba(255, 250, 240, 0.64);
|
|
}
|
|
|
|
.inbox-summary div,
|
|
.health-signals div {
|
|
display: grid;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
padding: 11px 12px;
|
|
}
|
|
|
|
.inbox-summary span,
|
|
.health-signals span,
|
|
.inbox-meta small,
|
|
.health-service small,
|
|
.health-service em {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.inbox-summary strong,
|
|
.health-signals strong {
|
|
font-size: clamp(18px, 2vw, 28px);
|
|
line-height: 1;
|
|
}
|
|
|
|
.inbox-filters {
|
|
display: flex;
|
|
gap: 7px;
|
|
overflow-x: auto;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.inbox-filters button {
|
|
display: inline-flex;
|
|
min-height: 38px;
|
|
flex: none;
|
|
gap: 7px;
|
|
align-items: center;
|
|
padding: 0 12px;
|
|
color: var(--bg-ink);
|
|
background: rgba(43, 55, 38, 0.08);
|
|
box-shadow: none;
|
|
font-size: 13px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.inbox-filters button.is-active,
|
|
.inbox-filters button[aria-pressed='true'] {
|
|
color: #fffaf0;
|
|
background: linear-gradient(135deg, #2b3726, #1c211c);
|
|
}
|
|
|
|
.inbox-filters span {
|
|
color: inherit;
|
|
opacity: 0.72;
|
|
}
|
|
|
|
.inbox-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.inbox-card {
|
|
display: grid;
|
|
gap: 10px;
|
|
min-width: 0;
|
|
padding: 13px;
|
|
}
|
|
|
|
.inbox-error {
|
|
border-color: rgba(183, 71, 52, 0.26);
|
|
background: rgba(255, 244, 238, 0.72);
|
|
}
|
|
|
|
.inbox-warn {
|
|
border-color: rgba(181, 138, 34, 0.24);
|
|
}
|
|
|
|
.inbox-card-head,
|
|
.health-service {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
align-items: start;
|
|
}
|
|
|
|
.inbox-card-head strong,
|
|
.inbox-card p,
|
|
.inbox-meta strong,
|
|
.health-service strong,
|
|
.health-service small {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.inbox-card p {
|
|
margin: 0;
|
|
color: var(--bg-ink);
|
|
overflow-wrap: anywhere;
|
|
white-space: normal;
|
|
}
|
|
|
|
.inbox-meta {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 7px;
|
|
}
|
|
|
|
.inbox-meta span {
|
|
min-width: 0;
|
|
padding: 8px;
|
|
border-radius: 12px;
|
|
background: rgba(43, 55, 38, 0.045);
|
|
}
|
|
|
|
.inbox-meta small,
|
|
.inbox-meta strong {
|
|
display: block;
|
|
}
|
|
|
|
.inbox-target {
|
|
display: inline-flex;
|
|
width: fit-content;
|
|
min-height: 34px;
|
|
align-items: center;
|
|
padding: 0 12px;
|
|
border-radius: 999px;
|
|
color: var(--accent-strong);
|
|
background: rgba(191, 95, 44, 0.11);
|
|
font-size: 13px;
|
|
font-weight: 900;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.health-overview {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
|
|
gap: 14px;
|
|
align-items: center;
|
|
padding: 16px;
|
|
}
|
|
|
|
.health-overview strong {
|
|
display: block;
|
|
margin-top: 4px;
|
|
font-size: clamp(24px, 3vw, 40px);
|
|
letter-spacing: -0.05em;
|
|
}
|
|
|
|
.health-overview p {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.health-down {
|
|
border-color: rgba(183, 71, 52, 0.32);
|
|
}
|
|
|
|
.health-stale {
|
|
border-color: rgba(181, 138, 34, 0.28);
|
|
}
|
|
|
|
.health-service-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.health-service {
|
|
grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 0.9fr) minmax(
|
|
64px,
|
|
0.35fr
|
|
);
|
|
align-items: center;
|
|
padding: 12px;
|
|
}
|
|
|
|
.health-service > div {
|
|
min-width: 0;
|
|
}
|
|
|
|
.health-service strong,
|
|
.health-service small,
|
|
.health-service em {
|
|
display: block;
|
|
}
|
|
|
|
.health-service em {
|
|
font-style: normal;
|
|
}
|
|
|
|
.task-board {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.task-group {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
border: 1px solid rgba(43, 55, 38, 0.11);
|
|
border-radius: 22px;
|
|
background: rgba(255, 250, 240, 0.54);
|
|
}
|
|
|
|
.task-group-completed {
|
|
display: block;
|
|
}
|
|
|
|
.task-group-completed[open] {
|
|
display: grid;
|
|
}
|
|
|
|
.task-group-completed summary {
|
|
cursor: pointer;
|
|
list-style: none;
|
|
}
|
|
|
|
.task-group-completed summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
.task-group-head {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
.task-group-head strong {
|
|
display: block;
|
|
margin-top: 2px;
|
|
font-size: 18px;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
.task-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
|
|
gap: 10px;
|
|
}
|
|
|
|
.task-card {
|
|
display: grid;
|
|
gap: 9px;
|
|
min-width: 0;
|
|
padding: 12px;
|
|
border: 1px solid rgba(43, 55, 38, 0.1);
|
|
border-radius: 18px;
|
|
background: rgba(255, 250, 240, 0.72);
|
|
}
|
|
|
|
.task-card-main,
|
|
.task-time-grid,
|
|
.task-suspended,
|
|
.task-result {
|
|
min-width: 0;
|
|
}
|
|
|
|
.task-card-main {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
align-items: start;
|
|
}
|
|
|
|
.task-title {
|
|
min-width: 0;
|
|
}
|
|
|
|
.task-title strong {
|
|
display: block;
|
|
overflow: hidden;
|
|
font-size: 15px;
|
|
letter-spacing: -0.02em;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.task-status-line {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.task-provider {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 26px;
|
|
padding: 0 9px;
|
|
border-radius: 999px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
background: rgba(43, 55, 38, 0.08);
|
|
}
|
|
|
|
.task-time-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 7px;
|
|
}
|
|
|
|
.task-time-grid > span,
|
|
.task-suspended,
|
|
.task-result {
|
|
padding: 9px;
|
|
border: 1px solid rgba(43, 55, 38, 0.08);
|
|
border-radius: 14px;
|
|
background: rgba(43, 55, 38, 0.04);
|
|
}
|
|
|
|
.task-time-grid small,
|
|
.task-suspended span,
|
|
.task-result span,
|
|
.task-time-grid em,
|
|
.task-suspended em {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-style: normal;
|
|
font-weight: 780;
|
|
}
|
|
|
|
.task-time-grid small,
|
|
.task-time-grid strong,
|
|
.task-time-grid em,
|
|
.task-suspended span,
|
|
.task-suspended strong,
|
|
.task-suspended em,
|
|
.task-result span,
|
|
.task-result strong {
|
|
display: block;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.task-time-grid strong,
|
|
.task-suspended strong,
|
|
.task-result strong {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.task-suspended {
|
|
border-color: rgba(181, 138, 34, 0.22);
|
|
background: rgba(181, 138, 34, 0.08);
|
|
}
|
|
|
|
.task-result {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
gap: 8px;
|
|
align-items: center;
|
|
border-color: rgba(63, 127, 81, 0.15);
|
|
}
|
|
|
|
.result-fail {
|
|
border-color: rgba(183, 71, 52, 0.28);
|
|
background: rgba(183, 71, 52, 0.08);
|
|
}
|
|
|
|
.result-none {
|
|
border-color: rgba(109, 115, 95, 0.14);
|
|
}
|
|
|
|
.task-prompt {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.task-prompt summary {
|
|
min-height: 32px;
|
|
color: var(--accent-strong);
|
|
font-size: 12px;
|
|
font-weight: 900;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.task-prompt p {
|
|
margin: 4px 0;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.task-prompt small {
|
|
display: block;
|
|
overflow: hidden;
|
|
font-family:
|
|
'SF Mono', 'Cascadia Code', 'Roboto Mono', ui-monospace, monospace;
|
|
font-size: 11px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.task-group-empty {
|
|
padding: 12px;
|
|
border-radius: 14px;
|
|
color: var(--muted);
|
|
background: rgba(43, 55, 38, 0.04);
|
|
}
|
|
|
|
.pill-watchers {
|
|
color: #173e23;
|
|
background: rgba(63, 127, 81, 0.18);
|
|
}
|
|
|
|
.pill-scheduled {
|
|
color: #6e4a05;
|
|
background: rgba(181, 138, 34, 0.16);
|
|
}
|
|
|
|
.pill-paused {
|
|
color: #6e4a05;
|
|
background: rgba(181, 138, 34, 0.2);
|
|
}
|
|
|
|
.pill-completed {
|
|
color: #625d52;
|
|
background: rgba(109, 115, 95, 0.16);
|
|
}
|
|
|
|
.record-card {
|
|
display: grid;
|
|
gap: 14px;
|
|
padding: 16px;
|
|
border: 1px solid rgba(43, 55, 38, 0.12);
|
|
border-radius: 22px;
|
|
background: rgba(255, 250, 240, 0.68);
|
|
}
|
|
|
|
.record-card-head {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: start;
|
|
}
|
|
|
|
.record-card-head strong,
|
|
.task-card > p {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.record-card-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.record-card-grid > span {
|
|
min-width: 0;
|
|
padding: 11px;
|
|
border: 1px solid rgba(43, 55, 38, 0.08);
|
|
border-radius: 16px;
|
|
background: rgba(43, 55, 38, 0.045);
|
|
}
|
|
|
|
.record-card-grid small,
|
|
.record-id {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.record-card-grid small,
|
|
.record-card-grid strong {
|
|
display: block;
|
|
}
|
|
|
|
.record-card-grid strong {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
margin-top: 3px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.mono-chip,
|
|
.record-id {
|
|
font-family:
|
|
'SF Mono', 'Cascadia Code', 'Roboto Mono', ui-monospace, monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.mono-chip {
|
|
display: inline-flex;
|
|
max-width: 100%;
|
|
min-height: 28px;
|
|
align-items: center;
|
|
margin-top: 8px;
|
|
padding: 0 9px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
color: var(--muted);
|
|
background: rgba(43, 55, 38, 0.08);
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.record-id {
|
|
min-width: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.skeleton-line,
|
|
.skeleton-button {
|
|
display: block;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background: linear-gradient(
|
|
90deg,
|
|
rgba(43, 55, 38, 0.08),
|
|
rgba(255, 250, 240, 0.85),
|
|
rgba(43, 55, 38, 0.08)
|
|
);
|
|
background-size: 220% 100%;
|
|
animation: shimmer 1.45s ease-in-out infinite;
|
|
}
|
|
|
|
.skeleton-short {
|
|
width: 180px;
|
|
height: 14px;
|
|
}
|
|
|
|
.skeleton-title {
|
|
width: min(640px, 84vw);
|
|
height: clamp(48px, 10vw, 94px);
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.skeleton-copy {
|
|
width: min(520px, 72vw);
|
|
height: 18px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.skeleton-number {
|
|
width: 90px;
|
|
height: 56px;
|
|
}
|
|
|
|
.skeleton-button {
|
|
width: 126px;
|
|
height: 48px;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
from {
|
|
background-position: 120% 0;
|
|
}
|
|
|
|
to {
|
|
background-position: -120% 0;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 981px) {
|
|
.section-nav {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.shell {
|
|
display: block;
|
|
}
|
|
|
|
.side-rail {
|
|
display: none;
|
|
}
|
|
|
|
.skeleton-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.ops-strip {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.desktop-table {
|
|
display: none;
|
|
}
|
|
|
|
.mobile-record-list {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
html {
|
|
scroll-padding-top: 18px;
|
|
scroll-padding-bottom: 104px;
|
|
}
|
|
|
|
.shell {
|
|
width: min(100% - 20px, 1480px);
|
|
padding: 10px 0 calc(24px + env(safe-area-inset-bottom));
|
|
}
|
|
|
|
.panel {
|
|
border-radius: 22px;
|
|
padding: 18px;
|
|
}
|
|
|
|
.section-nav {
|
|
position: sticky;
|
|
top: max(8px, env(safe-area-inset-top));
|
|
right: 10px;
|
|
left: 10px;
|
|
grid-template-columns: 52px minmax(0, 1fr) 54px;
|
|
gap: 6px;
|
|
margin: 0;
|
|
padding: 8px;
|
|
border-radius: 24px;
|
|
}
|
|
|
|
.section-nav button {
|
|
min-height: 48px;
|
|
padding: 0 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.section-nav span {
|
|
display: none;
|
|
}
|
|
|
|
.section-nav .menu-button span {
|
|
display: block;
|
|
}
|
|
|
|
.section-nav button {
|
|
min-width: 0;
|
|
color: transparent;
|
|
font-size: 0;
|
|
}
|
|
|
|
.section-nav .menu-button {
|
|
padding: 0;
|
|
}
|
|
|
|
.section-nav .refresh-button {
|
|
min-width: 0;
|
|
}
|
|
|
|
.section-nav .refresh-button::before {
|
|
color: #fffaf0;
|
|
content: '↻';
|
|
font-size: 20px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.section-nav .refresh-button:disabled::before {
|
|
content: '…';
|
|
}
|
|
|
|
.skeleton-grid,
|
|
.ops-strip {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
}
|
|
|
|
.ops-strip div,
|
|
.skeleton-card {
|
|
min-height: 84px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.ops-strip strong {
|
|
font-size: clamp(22px, 8vw, 34px);
|
|
}
|
|
|
|
.ops-strip small {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.panel-title {
|
|
display: grid;
|
|
}
|
|
|
|
.usage-summary {
|
|
grid-template-columns: minmax(0, 1fr) minmax(78px, 0.55fr);
|
|
}
|
|
|
|
.usage-summary div:last-child {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.usage-matrix-head {
|
|
display: none;
|
|
}
|
|
|
|
.usage-row {
|
|
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
|
|
gap: 6px;
|
|
padding: 9px;
|
|
}
|
|
|
|
.usage-account {
|
|
display: grid;
|
|
gap: 5px;
|
|
}
|
|
|
|
.usage-window {
|
|
gap: 4px;
|
|
}
|
|
|
|
.usage-window div {
|
|
gap: 6px;
|
|
}
|
|
|
|
.usage-window small {
|
|
overflow: hidden;
|
|
font-size: 11px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.record-card-grid {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.inbox-summary,
|
|
.health-signals {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.inbox-list {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.inbox-card {
|
|
padding: 10px;
|
|
}
|
|
|
|
.inbox-meta {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.health-overview {
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.health-service {
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.health-service > div:nth-of-type(2),
|
|
.health-service > div:nth-of-type(3) {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.task-group {
|
|
padding: 10px;
|
|
}
|
|
|
|
.task-list {
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.task-card {
|
|
gap: 7px;
|
|
padding: 9px;
|
|
}
|
|
|
|
.task-card-main {
|
|
gap: 7px;
|
|
}
|
|
|
|
.task-time-grid {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 6px;
|
|
}
|
|
|
|
.task-time-grid > span,
|
|
.task-suspended,
|
|
.task-result {
|
|
padding: 7px;
|
|
}
|
|
|
|
.task-prompt summary {
|
|
min-height: 28px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 380px) {
|
|
.shell {
|
|
width: min(100% - 16px, 1480px);
|
|
}
|
|
|
|
.section-nav {
|
|
right: 8px;
|
|
left: 8px;
|
|
}
|
|
|
|
.usage-summary {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.usage-summary div:last-child {
|
|
grid-column: auto;
|
|
}
|
|
|
|
.usage-row {
|
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
|
|
}
|
|
|
|
.usage-account {
|
|
grid-column: 1 / -1;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.skeleton-grid,
|
|
.ops-strip {
|
|
gap: 8px;
|
|
}
|
|
|
|
.record-card-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.inbox-meta,
|
|
.health-signals {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.task-time-grid {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.task-time-grid > span:last-child {
|
|
grid-column: auto;
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
scroll-behavior: auto !important;
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
}
|
|
}
|