2738 lines
43 KiB
CSS
2738 lines
43 KiB
CSS
:root {
|
|
color-scheme: light;
|
|
--bg: #f6f7f4;
|
|
--panel: #ffffff;
|
|
--panel-muted: #f0f3ef;
|
|
--ink: #18201d;
|
|
--muted: #61706b;
|
|
--line: #dce3dd;
|
|
--green: #167a5b;
|
|
--green-dark: #0f5d46;
|
|
--coral: #c85d4a;
|
|
--amber: #a26f15;
|
|
--blue: #316f9d;
|
|
--shadow: 0 16px 40px rgba(31, 43, 37, 0.08);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
overflow-x: clip;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: var(--bg);
|
|
color: var(--ink);
|
|
font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.app-shell {
|
|
min-height: 100vh;
|
|
display: block;
|
|
}
|
|
|
|
.topbar {
|
|
min-height: 70px;
|
|
display: grid;
|
|
grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
|
|
align-items: center;
|
|
gap: 18px;
|
|
padding: 12px 28px;
|
|
background: rgba(246, 247, 244, 0.94);
|
|
border-bottom: 1px solid var(--line);
|
|
backdrop-filter: blur(12px);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 20;
|
|
}
|
|
|
|
.brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
justify-self: start;
|
|
min-width: 0;
|
|
}
|
|
|
|
.brand-mark {
|
|
width: auto;
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.brand-logo-img {
|
|
display: block;
|
|
width: 104px;
|
|
max-height: 30px;
|
|
height: auto;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.brand-title {
|
|
font-weight: 800;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.brand-subtitle {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.top-nav {
|
|
justify-self: center;
|
|
padding: 4px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
background: #edf2ee;
|
|
}
|
|
|
|
.nav-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 7px;
|
|
min-height: 34px;
|
|
padding: 0 13px;
|
|
border-radius: 999px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.nav-link:hover,
|
|
.nav-link.active {
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
box-shadow: 0 1px 5px rgba(31, 43, 37, 0.08);
|
|
}
|
|
|
|
.nav-link svg {
|
|
width: 15px;
|
|
height: 15px;
|
|
}
|
|
|
|
.main {
|
|
min-width: 0;
|
|
width: min(1240px, calc(100vw - 32px));
|
|
margin: 0 auto;
|
|
padding: 18px 0 32px;
|
|
}
|
|
|
|
.page-head {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 18px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.eyebrow {
|
|
color: var(--green);
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
p {
|
|
margin-top: 0;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 8px;
|
|
font-size: 34px;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 22px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 16px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
.grid.cols-2 {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.grid.cols-3 {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
}
|
|
|
|
.grid.cols-4 {
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.panel,
|
|
.card {
|
|
background: var(--panel);
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.panel {
|
|
padding: 20px;
|
|
}
|
|
|
|
.card {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-body {
|
|
padding: 16px;
|
|
}
|
|
|
|
.metric {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.metric-value {
|
|
font-size: 28px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.button,
|
|
.icon-button {
|
|
border: 1px solid var(--line);
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
border-radius: 8px;
|
|
min-height: 40px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
padding: 0 14px;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.button.primary {
|
|
background: var(--green);
|
|
border-color: var(--green);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.button.danger {
|
|
color: #8d2f21;
|
|
border-color: #e6b8ae;
|
|
}
|
|
|
|
.icon-button {
|
|
width: 40px;
|
|
padding: 0;
|
|
}
|
|
|
|
.button:disabled,
|
|
.icon-button:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.spin {
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.field {
|
|
display: grid;
|
|
gap: 7px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.field label {
|
|
font-weight: 700;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.field input,
|
|
.field textarea,
|
|
.field select {
|
|
width: 100%;
|
|
border: 1px solid var(--line);
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
border-radius: 8px;
|
|
min-height: 42px;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.field textarea {
|
|
resize: vertical;
|
|
min-height: 108px;
|
|
}
|
|
|
|
.segmented {
|
|
display: flex;
|
|
gap: 4px;
|
|
padding: 4px;
|
|
background: var(--panel-muted);
|
|
border-radius: 8px;
|
|
border: 1px solid var(--line);
|
|
}
|
|
|
|
.segmented button {
|
|
flex: 1;
|
|
border: 0;
|
|
border-radius: 6px;
|
|
min-height: 38px;
|
|
background: transparent;
|
|
font-weight: 700;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.segmented button.active {
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
box-shadow: 0 1px 5px rgba(31, 43, 37, 0.08);
|
|
}
|
|
|
|
.asset-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
|
|
gap: 14px;
|
|
}
|
|
|
|
.asset-thumb {
|
|
width: 100%;
|
|
aspect-ratio: 4 / 3;
|
|
background: var(--panel-muted);
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.asset-placeholder {
|
|
width: 100%;
|
|
aspect-ratio: 4 / 3;
|
|
display: grid;
|
|
place-items: center;
|
|
background: var(--panel-muted);
|
|
color: var(--muted);
|
|
}
|
|
|
|
.status {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border-radius: 999px;
|
|
padding: 4px 9px;
|
|
background: #edf3f0;
|
|
color: var(--green-dark);
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.status.failed,
|
|
.status.expired,
|
|
.status.cancelled {
|
|
background: #fae9e5;
|
|
color: #8d2f21;
|
|
}
|
|
|
|
.status.running,
|
|
.status.queued {
|
|
background: #f6eddc;
|
|
color: #7c530d;
|
|
}
|
|
|
|
.callout {
|
|
padding: 14px 16px;
|
|
background: #f7faf7;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.callout[role="alert"],
|
|
.asset-error {
|
|
background: #fff4f1;
|
|
border-color: #e6b8ae;
|
|
color: #8d2f21;
|
|
}
|
|
|
|
.create-studio {
|
|
display: grid;
|
|
gap: 16px;
|
|
align-items: start;
|
|
max-width: 980px;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.create-studio.enhance-studio {
|
|
max-width: 1240px;
|
|
}
|
|
|
|
.create-mode-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.mode-switch {
|
|
width: min(560px, 100%);
|
|
}
|
|
|
|
.mode-switch button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 7px;
|
|
}
|
|
|
|
.create-actions {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.prompt-label-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.prompt-upload-button input {
|
|
display: none;
|
|
}
|
|
|
|
.prompt-upload-button:hover {
|
|
border-color: #b8c7c1;
|
|
background: #f7faf7;
|
|
}
|
|
|
|
.prompt-field textarea {
|
|
min-height: 260px;
|
|
line-height: 1.6;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.prompt-field textarea::placeholder {
|
|
color: #9aa8a1;
|
|
}
|
|
|
|
.prompt-editor-wrap {
|
|
position: relative;
|
|
}
|
|
|
|
.prompt-editor-wrap textarea {
|
|
position: relative;
|
|
z-index: 2;
|
|
background: transparent;
|
|
}
|
|
|
|
.prompt-token-layer {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 1;
|
|
overflow: hidden;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
color: transparent;
|
|
font: inherit;
|
|
line-height: 1.6;
|
|
padding: 10px 12px;
|
|
pointer-events: none;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.prompt-token-card {
|
|
display: inline;
|
|
border-radius: 5px;
|
|
background: rgba(57, 217, 119, 0.34);
|
|
box-decoration-break: clone;
|
|
-webkit-box-decoration-break: clone;
|
|
box-shadow: 0 0 0 3px rgba(57, 217, 119, 0.34);
|
|
}
|
|
|
|
.prompt-token-card.unbound {
|
|
background: rgba(255, 183, 38, 0.42);
|
|
box-shadow: 0 0 0 3px rgba(255, 183, 38, 0.42);
|
|
}
|
|
|
|
.mention-popover {
|
|
position: absolute;
|
|
left: 10px;
|
|
right: 10px;
|
|
bottom: 10px;
|
|
z-index: 10;
|
|
display: grid;
|
|
gap: 4px;
|
|
max-height: 220px;
|
|
overflow: auto;
|
|
padding: 6px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
box-shadow: 0 12px 28px rgba(31, 43, 37, 0.14);
|
|
}
|
|
|
|
.mention-option {
|
|
min-height: 34px;
|
|
border: 0;
|
|
border-radius: 6px;
|
|
background: transparent;
|
|
display: grid;
|
|
grid-template-columns: 28px auto minmax(0, 1fr) auto;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 0 8px;
|
|
text-align: left;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.mention-option.active,
|
|
.mention-option:hover {
|
|
background: #f0f3ef;
|
|
}
|
|
|
|
.mention-kind {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.upload-icon-button {
|
|
border: 1px solid var(--line);
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
border-radius: 8px;
|
|
min-width: 108px;
|
|
height: 38px;
|
|
padding: 0 10px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.upload-icon-button input {
|
|
display: none;
|
|
}
|
|
|
|
.upload-icon-button:hover,
|
|
.material-card:hover {
|
|
border-color: #b8c7c1;
|
|
background: #f7faf7;
|
|
}
|
|
|
|
.material-card.referenced {
|
|
border-color: #b7d6c8;
|
|
background: #f2faf6;
|
|
}
|
|
|
|
.material-card.missing {
|
|
border-color: var(--line);
|
|
background: #ffffff;
|
|
}
|
|
|
|
.material-board {
|
|
min-height: 42px;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.prompt-material-board {
|
|
grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.material-card {
|
|
position: relative;
|
|
min-width: 0;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.material-card-main {
|
|
width: 100%;
|
|
min-height: 68px;
|
|
border: 0;
|
|
background: transparent;
|
|
color: inherit;
|
|
padding: 8px 34px 8px 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.prompt-material-board .material-card-main {
|
|
min-height: 58px;
|
|
}
|
|
|
|
.material-card-copy {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 5px;
|
|
}
|
|
|
|
.material-card-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.material-state {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-height: 21px;
|
|
padding: 0 7px;
|
|
border-radius: 999px;
|
|
background: #edf3f0;
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.material-card.referenced .material-state {
|
|
background: #dff2e8;
|
|
color: var(--green-dark);
|
|
}
|
|
|
|
.material-remove {
|
|
position: absolute;
|
|
top: 6px;
|
|
right: 6px;
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 0;
|
|
border-radius: 6px;
|
|
background: rgba(255, 255, 255, 0.86);
|
|
color: var(--muted);
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 0;
|
|
}
|
|
|
|
.material-remove:hover {
|
|
background: #fae9e5;
|
|
color: #8d2f21;
|
|
}
|
|
|
|
.material-preview {
|
|
width: 26px;
|
|
height: 26px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 6px;
|
|
background: var(--panel-muted);
|
|
display: inline-grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
color: var(--muted);
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.material-preview.tiny {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.material-preview.large {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.prompt-material-board .material-preview.large {
|
|
width: 42px;
|
|
height: 42px;
|
|
}
|
|
|
|
.material-preview img,
|
|
.material-preview video {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.chip-token {
|
|
color: var(--green-dark);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.chip-name {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.compact-hint {
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.mini-button {
|
|
min-height: 32px;
|
|
padding: 0 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.inline-settings {
|
|
display: grid;
|
|
gap: 10px;
|
|
align-items: end;
|
|
}
|
|
|
|
.inline-settings {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.inline-field {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.range-field input {
|
|
padding-inline: 0;
|
|
}
|
|
|
|
.toggle-line {
|
|
min-height: 42px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 0 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.studio-messages {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.success-callout {
|
|
background: #eef8f2;
|
|
border-color: #b7d6c8;
|
|
color: var(--green-dark);
|
|
}
|
|
|
|
.pagination {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.pager-meta {
|
|
min-width: 58px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
text-align: center;
|
|
}
|
|
|
|
.compact-job .card-body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.compact-job h3 {
|
|
max-width: 42ch;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.asset-manager-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.asset-view-switch {
|
|
width: min(240px, 100%);
|
|
}
|
|
|
|
.asset-error {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.asset-history-grid {
|
|
align-items: stretch;
|
|
}
|
|
|
|
.asset-history-card {
|
|
display: grid;
|
|
grid-template-columns: minmax(112px, 34%) minmax(0, 1fr);
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.asset-preview-button {
|
|
width: 100%;
|
|
height: 140px;
|
|
display: block;
|
|
border: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
color: inherit;
|
|
cursor: zoom-in;
|
|
text-align: left;
|
|
}
|
|
|
|
.asset-history-card .asset-thumb,
|
|
.asset-history-card .asset-placeholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
aspect-ratio: auto;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.asset-history-body {
|
|
min-width: 0;
|
|
display: grid;
|
|
grid-template-rows: auto auto 1fr;
|
|
gap: 8px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.asset-history-body p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.asset-card-title {
|
|
min-width: 0;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.asset-card-title h3 {
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
margin-bottom: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.asset-card-title .status {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.asset-card-actions {
|
|
align-self: end;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-height: 32px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.asset-card-actions .compact-hint {
|
|
display: none;
|
|
}
|
|
|
|
.asset-card-actions .mini-button {
|
|
min-height: 30px;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.asset-kind-placeholder {
|
|
gap: 8px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.task-history-list {
|
|
gap: 10px;
|
|
}
|
|
|
|
.job-summary {
|
|
min-width: 0;
|
|
}
|
|
|
|
.job-summary p {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.job-actions {
|
|
flex: 0 0 auto;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.job-detail-panel {
|
|
display: grid;
|
|
gap: 14px;
|
|
padding: 0 16px 16px;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.job-detail-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin: 0;
|
|
padding-top: 14px;
|
|
}
|
|
|
|
.job-detail-grid div {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.job-detail-grid dt {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.job-detail-grid dd {
|
|
min-width: 0;
|
|
margin: 0;
|
|
overflow-wrap: anywhere;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.job-prompt-detail {
|
|
display: grid;
|
|
gap: 5px;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfcfa;
|
|
}
|
|
|
|
.job-prompt-detail p {
|
|
margin: 0;
|
|
color: var(--ink);
|
|
font-size: 13px;
|
|
line-height: 1.55;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.asset-preview-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 50;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 16px;
|
|
background: rgba(24, 32, 29, 0.45);
|
|
}
|
|
|
|
.asset-preview-dialog {
|
|
width: min(920px, calc(100vw - 32px));
|
|
max-height: calc(100dvh - 32px);
|
|
display: grid;
|
|
grid-template-rows: auto minmax(0, auto);
|
|
overflow: hidden;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--panel);
|
|
box-shadow: 0 24px 70px rgba(24, 32, 29, 0.22);
|
|
}
|
|
|
|
.asset-preview-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
padding: 12px 14px;
|
|
border-bottom: 1px solid var(--line);
|
|
}
|
|
|
|
.asset-preview-head > div {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.asset-preview-actions {
|
|
flex: 0 0 auto;
|
|
display: flex !important;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.asset-preview-head strong,
|
|
.asset-preview-head span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.asset-preview-media {
|
|
min-height: 0;
|
|
max-height: calc(100dvh - 118px);
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
padding: 12px;
|
|
background: #f8faf7;
|
|
}
|
|
|
|
.asset-preview-media img,
|
|
.asset-preview-media video {
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 100%;
|
|
max-height: calc(100dvh - 150px);
|
|
border-radius: 6px;
|
|
object-fit: contain;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.asset-preview-media audio {
|
|
width: min(520px, 100%);
|
|
}
|
|
|
|
.settings-panel {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.settings-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
}
|
|
|
|
.settings-tabs {
|
|
width: min(420px, 100%);
|
|
}
|
|
|
|
.settings-actions h2,
|
|
.settings-group h2 {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.settings-group {
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.settings-field-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px;
|
|
}
|
|
|
|
.settings-field {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.settings-field > span {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
font-weight: 800;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.settings-field em {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-style: normal;
|
|
}
|
|
|
|
.settings-field small {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.settings-capability-list {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.settings-service-strip {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 8px;
|
|
}
|
|
|
|
.settings-service-badge {
|
|
min-width: 0;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #f8faf8;
|
|
padding: 10px 12px;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.settings-service-badge.ready {
|
|
border-color: #b7d6c8;
|
|
background: #f2faf6;
|
|
}
|
|
|
|
.settings-service-badge span {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.settings-service-badge strong {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.settings-engine-table {
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.settings-engine-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(150px, 1.15fr) minmax(180px, 0.95fr) minmax(120px, 0.7fr) minmax(160px, 1.2fr);
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.settings-engine-row:first-child {
|
|
border-top: 0;
|
|
}
|
|
|
|
.settings-engine-head {
|
|
color: var(--muted);
|
|
background: #f7f9f7;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.settings-engine-name {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.settings-engine-name strong,
|
|
.settings-engine-value {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.settings-engine-name small,
|
|
.settings-engine-key small {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.settings-engine-control {
|
|
width: 100%;
|
|
}
|
|
|
|
.settings-loading {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.image-upload-button {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.editor-picker-panel {
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfcfa;
|
|
padding: 10px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.editor-picker-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
|
|
gap: 10px;
|
|
margin-bottom: 14px;
|
|
max-height: 330px;
|
|
overflow: auto;
|
|
padding: 2px;
|
|
}
|
|
|
|
.editor-thumb-option {
|
|
min-width: 0;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
overflow: hidden;
|
|
padding: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.editor-thumb-option.selected {
|
|
border-color: var(--green);
|
|
box-shadow: 0 0 0 2px rgba(22, 122, 91, 0.14);
|
|
}
|
|
|
|
.editor-thumb-option img {
|
|
width: 100%;
|
|
aspect-ratio: 1 / 1;
|
|
object-fit: cover;
|
|
display: block;
|
|
background: var(--panel-muted);
|
|
}
|
|
|
|
.editor-thumb-info {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 3px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.editor-thumb-info strong,
|
|
.editor-thumb-info span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.editor-thumb-info strong {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.editor-thumb-info span {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.editor-empty {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.selected-asset-line {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #fbfcfa;
|
|
padding: 8px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.editor-selection-summary {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.editor-selection-summary div {
|
|
flex: 1 1 180px;
|
|
}
|
|
|
|
.selected-asset-line img {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 6px;
|
|
object-fit: cover;
|
|
background: var(--panel-muted);
|
|
}
|
|
|
|
.selected-asset-placeholder {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 6px;
|
|
display: grid;
|
|
place-items: center;
|
|
background: var(--panel-muted);
|
|
color: var(--muted);
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.selected-asset-line div {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.selected-asset-line strong,
|
|
.selected-asset-line span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.editor-canvas-wrap {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 760px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.editor-canvas-wrap img,
|
|
.editor-canvas-wrap canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.editor-canvas-wrap canvas {
|
|
position: absolute;
|
|
inset: 0;
|
|
cursor: crosshair;
|
|
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.5));
|
|
opacity: 0.82;
|
|
touch-action: none;
|
|
}
|
|
|
|
@media (max-width: 920px) {
|
|
.topbar {
|
|
grid-template-columns: 1fr;
|
|
justify-items: center;
|
|
gap: 10px;
|
|
padding: 12px 16px;
|
|
}
|
|
|
|
.brand {
|
|
justify-self: center;
|
|
}
|
|
|
|
.top-nav {
|
|
width: min(100%, 560px);
|
|
justify-content: center;
|
|
}
|
|
|
|
.nav-link {
|
|
justify-content: center;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.main {
|
|
width: min(980px, calc(100% - 32px));
|
|
padding: 16px 0 28px;
|
|
}
|
|
|
|
.grid.cols-2,
|
|
.grid.cols-3,
|
|
.grid.cols-4,
|
|
.settings-service-strip,
|
|
.settings-engine-row,
|
|
.settings-field-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.create-studio,
|
|
.inline-settings {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.create-mode-bar {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.settings-actions {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.settings-tabs,
|
|
.settings-actions .toolbar,
|
|
.settings-actions .button {
|
|
width: 100%;
|
|
}
|
|
|
|
.settings-engine-head {
|
|
display: none;
|
|
}
|
|
|
|
.mode-switch,
|
|
.create-actions {
|
|
width: 100%;
|
|
}
|
|
|
|
.create-actions .button {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
h1 {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.topbar {
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.brand-title {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.brand-subtitle {
|
|
display: none;
|
|
}
|
|
|
|
.page-head {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.top-nav {
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.nav-link {
|
|
flex: 0 0 auto;
|
|
gap: 0;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.nav-link svg {
|
|
display: none;
|
|
}
|
|
|
|
.main {
|
|
width: calc(100% - 24px);
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.asset-history-card {
|
|
grid-template-columns: 104px minmax(0, 1fr);
|
|
min-height: 0;
|
|
}
|
|
|
|
.asset-preview-button {
|
|
height: 140px;
|
|
}
|
|
|
|
.prompt-field textarea {
|
|
min-height: 220px;
|
|
}
|
|
|
|
.upload-icon-button {
|
|
min-width: 108px;
|
|
}
|
|
|
|
.material-board {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.compact-job .card-body {
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.job-actions {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.job-detail-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.asset-manager-toolbar,
|
|
.editor-selection-summary {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.editor-selection-summary div {
|
|
flex: 0 1 auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.editor-selection-summary > img,
|
|
.editor-selection-summary .selected-asset-placeholder {
|
|
align-self: flex-start;
|
|
}
|
|
|
|
}
|
|
|
|
/* UI/UX Pro Max pass: professional creator workspace tokens and interaction layer. */
|
|
:root {
|
|
color-scheme: light;
|
|
--bg: #f4f7f8;
|
|
--surface: #ffffff;
|
|
--surface-raised: #ffffff;
|
|
--surface-subtle: #eef4f4;
|
|
--panel: var(--surface);
|
|
--panel-muted: var(--surface-subtle);
|
|
--ink: #111827;
|
|
--muted: #5d6b78;
|
|
--muted-strong: #334155;
|
|
--line: #d7e0e4;
|
|
--line-strong: #b9c8cf;
|
|
--green: #0f766e;
|
|
--green-dark: #0b5f59;
|
|
--coral: #c24137;
|
|
--amber: #a16207;
|
|
--blue: #2563eb;
|
|
--indigo: #4f46e5;
|
|
--success: #0f766e;
|
|
--warning: #a16207;
|
|
--danger: #b42318;
|
|
--focus: #2563eb;
|
|
--shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
|
|
--shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.08), 0 10px 28px rgba(15, 23, 42, 0.06);
|
|
--shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.22);
|
|
--radius: 8px;
|
|
--radius-sm: 6px;
|
|
--tap: 44px;
|
|
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
|
|
--ease-in: cubic-bezier(0.7, 0, 0.84, 0);
|
|
--duration-fast: 150ms;
|
|
--duration: 220ms;
|
|
}
|
|
|
|
html {
|
|
min-width: 320px;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
min-width: 320px;
|
|
background:
|
|
linear-gradient(180deg, rgba(232, 241, 243, 0.74), rgba(244, 247, 248, 0) 340px),
|
|
var(--bg);
|
|
color: var(--ink);
|
|
font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
line-height: 1.5;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
textarea,
|
|
select {
|
|
min-width: 0;
|
|
}
|
|
|
|
button,
|
|
a,
|
|
input,
|
|
textarea,
|
|
select {
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
button,
|
|
.button,
|
|
.icon-button,
|
|
.nav-link,
|
|
.asset-preview-button,
|
|
.material-card-main,
|
|
.editor-thumb-option {
|
|
transition:
|
|
background-color var(--duration-fast) var(--ease-out),
|
|
border-color var(--duration-fast) var(--ease-out),
|
|
color var(--duration-fast) var(--ease-out),
|
|
box-shadow var(--duration-fast) var(--ease-out),
|
|
transform var(--duration-fast) var(--ease-out);
|
|
}
|
|
|
|
button:hover:not(:disabled),
|
|
.button:hover:not(:disabled),
|
|
.icon-button:hover:not(:disabled),
|
|
.nav-link:hover,
|
|
.asset-preview-button:hover,
|
|
.material-card:hover,
|
|
.editor-thumb-option:hover {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
button:active:not(:disabled),
|
|
.button:active:not(:disabled),
|
|
.icon-button:active:not(:disabled),
|
|
.nav-link:active {
|
|
transform: translateY(0) scale(0.99);
|
|
}
|
|
|
|
:focus-visible {
|
|
outline: 3px solid rgba(37, 99, 235, 0.28);
|
|
outline-offset: 3px;
|
|
}
|
|
|
|
.skip-link {
|
|
position: fixed;
|
|
left: 14px;
|
|
top: 10px;
|
|
z-index: 100;
|
|
min-height: var(--tap);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: 1px solid var(--line-strong);
|
|
border-radius: var(--radius);
|
|
background: var(--surface);
|
|
color: var(--ink);
|
|
padding: 0 14px;
|
|
box-shadow: var(--shadow-soft);
|
|
font-weight: 800;
|
|
transform: translateY(-72px);
|
|
}
|
|
|
|
.skip-link:focus {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.app-shell {
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
.topbar {
|
|
min-height: 76px;
|
|
grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
|
|
padding: 14px 28px;
|
|
background: rgba(249, 251, 251, 0.88);
|
|
border-bottom-color: rgba(185, 200, 207, 0.7);
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
|
|
backdrop-filter: blur(18px) saturate(1.15);
|
|
}
|
|
|
|
.brand {
|
|
border-radius: var(--radius);
|
|
padding: 4px 6px 4px 4px;
|
|
}
|
|
|
|
.brand:hover {
|
|
background: rgba(255, 255, 255, 0.62);
|
|
}
|
|
|
|
.brand-mark {
|
|
border: 0;
|
|
background: transparent;
|
|
color: inherit;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.brand-title {
|
|
font-size: 16px;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.brand-subtitle {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.top-nav {
|
|
min-height: 48px;
|
|
background: #e8eef1;
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
|
|
}
|
|
|
|
.nav-link {
|
|
min-height: var(--tap);
|
|
padding: 0 15px;
|
|
color: var(--muted-strong);
|
|
}
|
|
|
|
.nav-link:hover,
|
|
.nav-link.active {
|
|
background: var(--surface-raised);
|
|
color: var(--ink);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.nav-link.active {
|
|
border: 1px solid rgba(185, 200, 207, 0.82);
|
|
}
|
|
|
|
.main {
|
|
width: min(1280px, calc(100vw - 32px));
|
|
padding: 24px 0 40px;
|
|
}
|
|
|
|
.workspace-head {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
align-items: end;
|
|
gap: 18px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.workspace-kicker,
|
|
.eyebrow {
|
|
color: var(--green-dark);
|
|
font-size: 12px;
|
|
font-weight: 900;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.workspace-title {
|
|
margin: 5px 0 6px;
|
|
font-size: clamp(28px, 4vw, 42px);
|
|
line-height: 1.12;
|
|
}
|
|
|
|
.workspace-copy {
|
|
max-width: 72ch;
|
|
margin: 0;
|
|
color: var(--muted);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.workspace-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.meta-pill {
|
|
min-height: 34px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.76);
|
|
color: var(--muted-strong);
|
|
padding: 0 11px;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
|
|
}
|
|
|
|
.panel,
|
|
.card {
|
|
border-color: rgba(215, 224, 228, 0.96);
|
|
border-radius: var(--radius);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.panel {
|
|
padding: 22px;
|
|
}
|
|
|
|
.panel-head {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 14px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.panel-head h2,
|
|
.panel-head h3,
|
|
.panel-head p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.card {
|
|
background: var(--surface);
|
|
}
|
|
|
|
.button,
|
|
.icon-button,
|
|
.upload-icon-button {
|
|
min-height: var(--tap);
|
|
border-color: var(--line);
|
|
border-radius: var(--radius);
|
|
background: var(--surface);
|
|
color: var(--ink);
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
|
|
}
|
|
|
|
.button:hover:not(:disabled),
|
|
.icon-button:hover:not(:disabled),
|
|
.upload-icon-button:hover {
|
|
border-color: var(--line-strong);
|
|
background: #f8fbfb;
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.button.primary {
|
|
border-color: var(--green);
|
|
background: var(--green);
|
|
color: #ffffff;
|
|
box-shadow: 0 10px 22px rgba(15, 118, 110, 0.2);
|
|
}
|
|
|
|
.button.primary:hover:not(:disabled) {
|
|
border-color: var(--green-dark);
|
|
background: var(--green-dark);
|
|
}
|
|
|
|
.button.danger {
|
|
color: var(--danger);
|
|
border-color: #efc7c1;
|
|
background: #fff9f8;
|
|
}
|
|
|
|
.button.danger:hover:not(:disabled) {
|
|
background: #fff1ee;
|
|
}
|
|
|
|
.icon-button {
|
|
width: var(--tap);
|
|
height: var(--tap);
|
|
}
|
|
|
|
.mini-button {
|
|
min-height: var(--tap);
|
|
}
|
|
|
|
.field {
|
|
gap: 8px;
|
|
}
|
|
|
|
.field label,
|
|
.prompt-label-row label,
|
|
.settings-field > span {
|
|
color: var(--muted-strong);
|
|
font-weight: 850;
|
|
}
|
|
|
|
.field input,
|
|
.field textarea,
|
|
.field select,
|
|
.settings-engine-control {
|
|
min-height: var(--tap);
|
|
border-color: var(--line);
|
|
border-radius: var(--radius);
|
|
background: #fbfdfd;
|
|
transition:
|
|
border-color var(--duration-fast) var(--ease-out),
|
|
box-shadow var(--duration-fast) var(--ease-out),
|
|
background-color var(--duration-fast) var(--ease-out);
|
|
}
|
|
|
|
.field input:focus,
|
|
.field textarea:focus,
|
|
.field select:focus,
|
|
.settings-engine-control:focus {
|
|
border-color: rgba(37, 99, 235, 0.7);
|
|
background: #ffffff;
|
|
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
|
|
outline: 0;
|
|
}
|
|
|
|
.segmented {
|
|
min-height: 48px;
|
|
border-color: rgba(185, 200, 207, 0.82);
|
|
border-radius: var(--radius);
|
|
background: #e8eef1;
|
|
}
|
|
|
|
.segmented button {
|
|
min-height: var(--tap);
|
|
color: var(--muted-strong);
|
|
}
|
|
|
|
.segmented button.active {
|
|
background: #ffffff;
|
|
color: var(--ink);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.status {
|
|
min-height: 25px;
|
|
background: #e8f5f1;
|
|
color: var(--green-dark);
|
|
}
|
|
|
|
.status.failed,
|
|
.status.expired,
|
|
.status.cancelled {
|
|
background: #fff0ed;
|
|
color: var(--danger);
|
|
}
|
|
|
|
.status.running,
|
|
.status.queued {
|
|
background: #fff6dc;
|
|
color: var(--warning);
|
|
}
|
|
|
|
.callout {
|
|
border-color: var(--line);
|
|
background: #f8fbfb;
|
|
}
|
|
|
|
.callout[role="alert"],
|
|
.asset-error {
|
|
border-color: #efc7c1;
|
|
background: #fff5f3;
|
|
color: var(--danger);
|
|
}
|
|
|
|
.success-callout {
|
|
border-color: #b9dccc;
|
|
background: #eefaf4;
|
|
color: var(--green-dark);
|
|
}
|
|
|
|
.create-studio {
|
|
max-width: 1060px;
|
|
}
|
|
|
|
.create-studio.enhance-studio {
|
|
max-width: 1280px;
|
|
}
|
|
|
|
.create-mode-bar {
|
|
position: sticky;
|
|
top: 92px;
|
|
z-index: 12;
|
|
padding: 10px;
|
|
border: 1px solid rgba(215, 224, 228, 0.82);
|
|
border-radius: var(--radius);
|
|
background: rgba(249, 251, 251, 0.86);
|
|
box-shadow: var(--shadow-soft);
|
|
backdrop-filter: blur(16px) saturate(1.08);
|
|
}
|
|
|
|
.mode-switch {
|
|
width: min(680px, 100%);
|
|
min-width: 0;
|
|
}
|
|
|
|
.prompt-field textarea {
|
|
min-height: 300px;
|
|
background: transparent;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.prompt-editor-wrap {
|
|
border: 1px solid var(--line);
|
|
border-radius: var(--radius);
|
|
background: #fbfdfd;
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
|
|
transition:
|
|
border-color var(--duration-fast) var(--ease-out),
|
|
box-shadow var(--duration-fast) var(--ease-out);
|
|
}
|
|
|
|
.prompt-editor-wrap:focus-within {
|
|
border-color: rgba(37, 99, 235, 0.7);
|
|
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
|
|
}
|
|
|
|
.prompt-editor-wrap textarea {
|
|
border: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.prompt-token-layer {
|
|
border: 0;
|
|
}
|
|
|
|
.prompt-token-card {
|
|
background: rgba(45, 212, 191, 0.28);
|
|
box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.28);
|
|
}
|
|
|
|
.prompt-token-card.unbound {
|
|
background: rgba(251, 191, 36, 0.34);
|
|
box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.34);
|
|
}
|
|
|
|
.mention-popover {
|
|
border-color: var(--line-strong);
|
|
box-shadow: var(--shadow-strong);
|
|
}
|
|
|
|
.mention-option {
|
|
min-height: 40px;
|
|
}
|
|
|
|
.mention-option.active,
|
|
.mention-option:hover {
|
|
background: #eef4f4;
|
|
}
|
|
|
|
.material-board {
|
|
gap: 10px;
|
|
}
|
|
|
|
.material-card {
|
|
border-color: var(--line);
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74) inset;
|
|
}
|
|
|
|
.material-card:hover {
|
|
border-color: var(--line-strong);
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.material-remove {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.material-card.referenced {
|
|
border-color: #a8d9cf;
|
|
background: #f1fbf8;
|
|
}
|
|
|
|
.material-preview {
|
|
border-color: var(--line);
|
|
background: #e9f0f2;
|
|
}
|
|
|
|
.inline-settings {
|
|
grid-template-columns: minmax(160px, 0.7fr) minmax(220px, 1fr) minmax(120px, 0.45fr);
|
|
align-items: end;
|
|
margin-top: 16px;
|
|
margin-bottom: 0;
|
|
padding-top: 16px;
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
|
|
.toggle-line {
|
|
min-height: var(--tap);
|
|
background: #fbfdfd;
|
|
}
|
|
|
|
.asset-manager-toolbar,
|
|
.settings-actions {
|
|
padding: 10px;
|
|
border: 1px solid rgba(215, 224, 228, 0.82);
|
|
border-radius: var(--radius);
|
|
background: #f8fbfb;
|
|
}
|
|
|
|
.asset-history-card {
|
|
border-color: rgba(215, 224, 228, 0.96);
|
|
}
|
|
|
|
.asset-preview-button {
|
|
background: #e9f0f2;
|
|
}
|
|
|
|
.asset-preview-button:hover {
|
|
filter: saturate(1.04);
|
|
}
|
|
|
|
.asset-history-body {
|
|
gap: 10px;
|
|
}
|
|
|
|
.asset-card-meta {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.asset-card-actions .mini-button {
|
|
min-width: var(--tap);
|
|
min-height: var(--tap);
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.compact-job {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.compact-job .card-body {
|
|
min-height: 84px;
|
|
}
|
|
|
|
.job-detail-panel {
|
|
background: #fbfdfd;
|
|
}
|
|
|
|
.job-detail-grid {
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.asset-preview-backdrop {
|
|
background: rgba(15, 23, 42, 0.52);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.asset-preview-dialog {
|
|
border-color: rgba(215, 224, 228, 0.9);
|
|
border-radius: var(--radius);
|
|
box-shadow: var(--shadow-strong);
|
|
}
|
|
|
|
.asset-preview-head {
|
|
background: #fbfdfd;
|
|
}
|
|
|
|
.asset-preview-media {
|
|
background: #eef4f4;
|
|
}
|
|
|
|
.settings-panel {
|
|
gap: 16px;
|
|
}
|
|
|
|
.settings-service-badge {
|
|
background: #f8fbfb;
|
|
}
|
|
|
|
.settings-service-badge.ready {
|
|
border-color: #a8d9cf;
|
|
background: #f1fbf8;
|
|
}
|
|
|
|
.settings-engine-table {
|
|
border-color: var(--line);
|
|
}
|
|
|
|
.settings-engine-row {
|
|
grid-template-columns: minmax(150px, 1.1fr) minmax(180px, 0.95fr) minmax(110px, 0.6fr) minmax(160px, 1fr);
|
|
}
|
|
|
|
.settings-engine-row:not(.settings-engine-head):hover {
|
|
background: #fbfdfd;
|
|
}
|
|
|
|
.editor-picker-panel,
|
|
.selected-asset-line,
|
|
.job-prompt-detail {
|
|
border-color: var(--line);
|
|
background: #f8fbfb;
|
|
}
|
|
|
|
.editor-thumb-option {
|
|
border-color: var(--line);
|
|
}
|
|
|
|
.editor-thumb-option.selected {
|
|
border-color: var(--green);
|
|
box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
|
|
}
|
|
|
|
.editor-canvas-wrap {
|
|
border-color: var(--line);
|
|
background: #ffffff;
|
|
box-shadow: var(--shadow-soft);
|
|
}
|
|
|
|
.pagination .icon-button {
|
|
width: var(--tap);
|
|
height: var(--tap);
|
|
min-height: var(--tap);
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
scroll-behavior: auto !important;
|
|
transition-duration: 0.01ms !important;
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 920px) {
|
|
.topbar {
|
|
grid-template-columns: 1fr;
|
|
min-height: auto;
|
|
}
|
|
|
|
.workspace-head {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.workspace-meta {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.create-mode-bar {
|
|
position: static;
|
|
}
|
|
|
|
.inline-settings {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.job-detail-grid {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.settings-engine-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
padding: 14px;
|
|
}
|
|
|
|
.settings-engine-row:not(.settings-engine-head) {
|
|
border-top: 1px solid var(--line);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
body {
|
|
background: var(--bg);
|
|
}
|
|
|
|
.main {
|
|
width: calc(100% - 24px);
|
|
padding-bottom: 28px;
|
|
}
|
|
|
|
.workspace-title {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.workspace-copy {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.panel {
|
|
padding: 16px;
|
|
}
|
|
|
|
.top-nav {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
justify-content: flex-start;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.top-nav::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.nav-link {
|
|
min-width: 88px;
|
|
gap: 7px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.nav-link svg {
|
|
display: block;
|
|
}
|
|
|
|
.create-mode-bar,
|
|
.asset-manager-toolbar,
|
|
.settings-actions {
|
|
padding: 8px;
|
|
}
|
|
|
|
.segmented {
|
|
max-width: 100%;
|
|
min-width: 0;
|
|
overflow-x: auto;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
.segmented::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.segmented button {
|
|
min-width: max-content;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.create-mode-bar,
|
|
.mode-switch {
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mode-switch.segmented {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.prompt-field textarea {
|
|
min-height: 240px;
|
|
}
|
|
|
|
.asset-history-card {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.asset-preview-button {
|
|
height: auto;
|
|
aspect-ratio: 4 / 3;
|
|
}
|
|
|
|
.job-detail-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.settings-service-strip {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Compact header pass: keep the shell shorter and avoid horizontal scrollers below it. */
|
|
.topbar {
|
|
min-height: 64px;
|
|
padding-block: 9px;
|
|
}
|
|
|
|
.brand-mark {
|
|
width: auto;
|
|
height: 28px;
|
|
}
|
|
|
|
.brand-title {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.top-nav {
|
|
min-height: 42px;
|
|
}
|
|
|
|
.nav-link {
|
|
min-height: 38px;
|
|
}
|
|
|
|
@media (max-width: 920px) {
|
|
.topbar {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
justify-items: stretch;
|
|
gap: 12px;
|
|
padding: 8px 16px;
|
|
}
|
|
|
|
.brand {
|
|
justify-self: start;
|
|
}
|
|
|
|
.top-nav {
|
|
justify-self: end;
|
|
width: min(320px, 100%);
|
|
min-width: 0;
|
|
justify-content: flex-end;
|
|
overflow: visible;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
.topbar {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
padding: 7px 10px;
|
|
gap: 8px;
|
|
}
|
|
|
|
.brand {
|
|
gap: 8px;
|
|
padding: 2px;
|
|
}
|
|
|
|
.brand-mark {
|
|
width: auto;
|
|
height: 24px;
|
|
}
|
|
|
|
.brand-logo-img {
|
|
width: 86px;
|
|
max-height: 24px;
|
|
}
|
|
|
|
.brand-title {
|
|
display: none;
|
|
}
|
|
|
|
.top-nav {
|
|
width: min(214px, 100%);
|
|
min-height: 38px;
|
|
padding: 3px;
|
|
overflow: visible;
|
|
}
|
|
|
|
.nav-link {
|
|
flex: 1 1 0;
|
|
min-width: 0;
|
|
min-height: 34px;
|
|
gap: 4px;
|
|
padding: 0 6px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.nav-link svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
|
|
.segmented,
|
|
.mode-switch.segmented {
|
|
overflow: visible;
|
|
}
|
|
|
|
.mode-switch.segmented {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
}
|
|
|
|
.mode-switch.segmented button {
|
|
min-width: 0;
|
|
min-height: 38px;
|
|
gap: 3px;
|
|
padding: 0 4px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.mode-switch.segmented button svg {
|
|
width: 13px;
|
|
height: 13px;
|
|
}
|
|
|
|
.asset-view-switch,
|
|
.settings-tabs {
|
|
display: grid;
|
|
}
|
|
|
|
.asset-view-switch {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
|
|
.settings-tabs {
|
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
}
|
|
|
|
.asset-view-switch button,
|
|
.settings-tabs button {
|
|
min-width: 0;
|
|
min-height: 38px;
|
|
padding: 0 4px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
.workspace-head {
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.workspace-title {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.workspace-copy {
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.create-mode-bar {
|
|
gap: 8px;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) var(--tap);
|
|
align-items: center;
|
|
}
|
|
|
|
.create-actions .button {
|
|
width: var(--tap);
|
|
min-height: var(--tap);
|
|
padding: 0;
|
|
}
|
|
|
|
.create-submit-label,
|
|
.mode-switch.segmented button svg {
|
|
display: none;
|
|
}
|
|
|
|
.prompt-field textarea {
|
|
min-height: 180px;
|
|
}
|
|
|
|
.inline-settings {
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.field {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
.topbar-account {
|
|
justify-self: end;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.account-chip {
|
|
min-height: 38px;
|
|
max-width: 190px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
padding: 0 11px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.72);
|
|
color: var(--muted-strong);
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.account-chip span {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.account-chip svg,
|
|
.logout-button svg,
|
|
.login-link svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.logout-button {
|
|
width: 38px;
|
|
min-height: 38px;
|
|
padding: 0;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.auth-shell {
|
|
min-height: 100dvh;
|
|
background:
|
|
linear-gradient(90deg, rgba(220, 227, 221, 0.55) 1px, transparent 1px),
|
|
linear-gradient(180deg, rgba(220, 227, 221, 0.45) 1px, transparent 1px),
|
|
var(--bg);
|
|
background-size: 44px 44px;
|
|
}
|
|
|
|
.auth-main {
|
|
width: 100%;
|
|
min-height: 100dvh;
|
|
padding: 0;
|
|
}
|
|
|
|
.auth-page {
|
|
min-height: 100dvh;
|
|
width: min(1120px, 100%);
|
|
margin: 0 auto;
|
|
display: grid;
|
|
grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 440px);
|
|
align-items: center;
|
|
gap: clamp(28px, 6vw, 72px);
|
|
padding: clamp(36px, 8vw, 76px) 24px;
|
|
}
|
|
|
|
.auth-brand-panel {
|
|
display: grid;
|
|
justify-items: start;
|
|
gap: 16px;
|
|
}
|
|
|
|
.auth-brand-logo {
|
|
display: block;
|
|
width: min(292px, 76vw);
|
|
height: auto;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.auth-brand-panel h1 {
|
|
margin: 0;
|
|
max-width: 9em;
|
|
font-size: clamp(36px, 5vw, 58px);
|
|
line-height: 1.05;
|
|
font-weight: 900;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.auth-panel {
|
|
width: 100%;
|
|
display: grid;
|
|
justify-items: stretch;
|
|
gap: 18px;
|
|
padding: 28px;
|
|
}
|
|
|
|
.auth-panel h2 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.auth-password-form {
|
|
width: 100%;
|
|
display: grid;
|
|
gap: 14px;
|
|
}
|
|
|
|
.auth-password-form .field {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.auth-captcha-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 118px;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.auth-captcha-button {
|
|
height: 44px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.auth-captcha-button img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.auth-submit,
|
|
.auth-submit.button {
|
|
width: 100%;
|
|
min-height: 46px;
|
|
}
|
|
|
|
@media (max-width: 920px) {
|
|
.topbar {
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.top-nav {
|
|
justify-self: center;
|
|
}
|
|
|
|
.account-chip {
|
|
max-width: 150px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
.topbar-account {
|
|
grid-column: 1 / -1;
|
|
justify-self: stretch;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.account-chip {
|
|
max-width: min(260px, calc(100vw - 92px));
|
|
}
|
|
|
|
.auth-page {
|
|
grid-template-columns: 1fr;
|
|
align-content: center;
|
|
gap: 24px;
|
|
padding: 34px 14px;
|
|
}
|
|
|
|
.auth-brand-panel {
|
|
justify-items: center;
|
|
text-align: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.auth-brand-panel h1 {
|
|
font-size: 34px;
|
|
}
|
|
|
|
.auth-panel {
|
|
padding: 20px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
.topbar {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
}
|
|
|
|
.topbar-account {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.account-chip {
|
|
min-height: 34px;
|
|
max-width: calc(100vw - 78px);
|
|
padding: 0 9px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.logout-button {
|
|
width: 34px;
|
|
min-height: 34px;
|
|
}
|
|
|
|
.auth-captcha-row {
|
|
grid-template-columns: minmax(0, 1fr) 104px;
|
|
}
|
|
}
|