3760 lines
76 KiB
CSS
3760 lines
76 KiB
CSS
.ops-bot-list {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
display: grid;
|
|
grid-template-rows: auto auto minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.ops-bot-list .list-scroll {
|
|
min-height: 0;
|
|
overflow: auto;
|
|
padding-top: 4px;
|
|
padding-right: 2px;
|
|
max-height: 72vh;
|
|
}
|
|
|
|
.app-shell-compact .ops-bot-list {
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.app-shell-compact .ops-bot-list .list-scroll {
|
|
max-height: none;
|
|
}
|
|
|
|
.ops-compact-hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
.ops-compact-fab-stack {
|
|
position: fixed;
|
|
right: 14px;
|
|
bottom: 14px;
|
|
display: grid;
|
|
gap: 10px;
|
|
z-index: 85;
|
|
}
|
|
|
|
.ops-compact-fab-switch {
|
|
position: relative;
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--brand) 58%, var(--line) 42%);
|
|
background: color-mix(in oklab, var(--panel) 70%, var(--brand-soft) 30%);
|
|
color: var(--icon);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow:
|
|
0 10px 24px rgba(9, 15, 28, 0.42),
|
|
0 0 0 2px color-mix(in oklab, var(--brand) 22%, transparent);
|
|
cursor: pointer;
|
|
overflow: visible;
|
|
transform: translateY(0);
|
|
animation: ops-fab-float 2.2s ease-in-out infinite;
|
|
}
|
|
|
|
.ops-compact-fab-switch::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: -7px;
|
|
border-radius: 999px;
|
|
border: 2px solid color-mix(in oklab, var(--brand) 60%, transparent);
|
|
opacity: 0.45;
|
|
animation: ops-fab-pulse 1.8s ease-out infinite;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ops-compact-fab-switch::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: -1px;
|
|
border-radius: 999px;
|
|
background:
|
|
radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--brand) 20%, transparent) 0%, transparent 72%);
|
|
opacity: 0.9;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ops-compact-fab-switch.is-chat {
|
|
box-shadow:
|
|
0 10px 24px rgba(9, 15, 28, 0.42),
|
|
0 0 18px color-mix(in oklab, #5c98ff 60%, transparent),
|
|
0 0 0 2px color-mix(in oklab, #5c98ff 35%, transparent);
|
|
}
|
|
|
|
.ops-compact-fab-switch.is-runtime {
|
|
box-shadow:
|
|
0 10px 24px rgba(9, 15, 28, 0.42),
|
|
0 0 18px color-mix(in oklab, #40d6c3 62%, transparent),
|
|
0 0 0 2px color-mix(in oklab, #40d6c3 38%, transparent);
|
|
}
|
|
|
|
.ops-compact-fab-switch.is-runtime::before {
|
|
border-color: color-mix(in oklab, #40d6c3 62%, transparent);
|
|
}
|
|
|
|
.ops-compact-fab-switch:hover {
|
|
transform: translateY(-1px) scale(1.03);
|
|
}
|
|
|
|
@keyframes ops-fab-pulse {
|
|
0% {
|
|
transform: scale(0.92);
|
|
opacity: 0.62;
|
|
}
|
|
70% {
|
|
transform: scale(1.15);
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
transform: scale(1.15);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes ops-fab-float {
|
|
0%,
|
|
100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-2px);
|
|
}
|
|
}
|
|
|
|
.ops-list-actions {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-bot-list-toolbar {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.ops-searchbar {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
.ops-search-input {
|
|
min-width: 0;
|
|
}
|
|
|
|
.ops-search-input-with-icon {
|
|
padding-right: 38px;
|
|
}
|
|
|
|
.ops-search-inline-btn {
|
|
position: absolute;
|
|
right: 8px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 999px;
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
color: var(--icon);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ops-search-inline-btn:hover {
|
|
border-color: color-mix(in oklab, var(--brand) 56%, var(--line) 44%);
|
|
background: color-mix(in oklab, var(--brand-soft) 42%, var(--panel-soft) 58%);
|
|
}
|
|
|
|
.ops-bot-list-empty {
|
|
border: 1px dashed var(--line);
|
|
border-radius: 10px;
|
|
background: var(--panel-soft);
|
|
color: var(--subtitle);
|
|
text-align: center;
|
|
padding: 14px 10px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.ops-bot-list-pagination {
|
|
margin-top: 0;
|
|
display: grid;
|
|
grid-template-columns: auto 1fr auto;
|
|
align-items: center;
|
|
gap: 8px;
|
|
position: sticky;
|
|
bottom: 0;
|
|
z-index: 6;
|
|
padding-top: 8px;
|
|
border-top: 1px solid color-mix(in oklab, var(--line) 78%, transparent);
|
|
background: color-mix(in oklab, var(--panel) 88%, transparent);
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
.ops-bot-list-page-indicator {
|
|
text-align: center;
|
|
font-size: 12px;
|
|
color: var(--subtitle);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.ops-bot-card {
|
|
position: relative;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: linear-gradient(145deg, color-mix(in oklab, var(--panel-soft) 86%, var(--panel) 14%), color-mix(in oklab, var(--panel-soft) 94%, transparent 6%));
|
|
padding: 10px 10px 10px 14px;
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
|
|
}
|
|
|
|
.ops-bot-card:hover {
|
|
border-color: color-mix(in oklab, var(--brand) 58%, var(--line) 42%);
|
|
box-shadow: 0 8px 18px color-mix(in oklab, var(--brand) 14%, transparent);
|
|
}
|
|
|
|
.ops-bot-card.is-active {
|
|
border-color: color-mix(in oklab, var(--brand) 80%, var(--line) 20%);
|
|
box-shadow:
|
|
0 0 0 2px color-mix(in oklab, var(--brand) 70%, transparent),
|
|
0 16px 30px color-mix(in oklab, var(--brand) 28%, transparent),
|
|
inset 0 0 0 1px color-mix(in oklab, var(--brand) 84%, transparent);
|
|
transform: translateY(0);
|
|
z-index: 2;
|
|
}
|
|
|
|
.ops-bot-card.is-active::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 12px;
|
|
border: 2px solid color-mix(in oklab, var(--brand) 78%, transparent);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ops-bot-card.state-running {
|
|
background: linear-gradient(145deg, color-mix(in oklab, var(--ok) 14%, var(--panel-soft) 86%), color-mix(in oklab, var(--ok) 8%, var(--panel) 92%));
|
|
}
|
|
|
|
.ops-bot-card.state-stopped {
|
|
background: linear-gradient(145deg, color-mix(in oklab, #b79aa2 14%, var(--panel-soft) 86%), color-mix(in oklab, #b79aa2 7%, var(--panel) 93%));
|
|
}
|
|
|
|
.ops-bot-card.state-disabled {
|
|
background: linear-gradient(145deg, color-mix(in oklab, #9ca3b5 14%, var(--panel-soft) 86%), color-mix(in oklab, #9ca3b5 7%, var(--panel) 93%));
|
|
}
|
|
|
|
.ops-bot-top {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.ops-bot-name {
|
|
font-size: 16px;
|
|
font-weight: 800;
|
|
color: var(--title);
|
|
}
|
|
|
|
.ops-bot-id,
|
|
.ops-bot-meta {
|
|
margin-top: 2px;
|
|
color: var(--subtitle);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.ops-bot-actions {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-bot-actions-main {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-bot-enable-switch {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ops-bot-enable-switch input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.ops-bot-enable-switch-track {
|
|
position: relative;
|
|
width: 36px;
|
|
height: 20px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 82%, transparent);
|
|
background: color-mix(in oklab, #9ca3b5 42%, var(--panel-soft) 58%);
|
|
transition: background 0.2s ease, border-color 0.2s ease;
|
|
}
|
|
|
|
.ops-bot-enable-switch-track::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 2px;
|
|
top: 2px;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--text) 75%, #fff 25%);
|
|
transition: transform 0.2s ease, background 0.2s ease;
|
|
}
|
|
|
|
.ops-bot-enable-switch input:checked + .ops-bot-enable-switch-track {
|
|
border-color: color-mix(in oklab, var(--ok) 66%, var(--line) 34%);
|
|
background: color-mix(in oklab, var(--ok) 46%, var(--panel-soft) 54%);
|
|
}
|
|
|
|
.ops-bot-enable-switch input:checked + .ops-bot-enable-switch-track::after {
|
|
transform: translateX(16px);
|
|
background: #fff;
|
|
}
|
|
|
|
.ops-bot-enable-switch input:disabled + .ops-bot-enable-switch-track {
|
|
opacity: 0.58;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ops-bot-strip {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 8px;
|
|
bottom: 8px;
|
|
width: 3px;
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--line) 80%, transparent);
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.ops-bot-strip.is-running {
|
|
background: linear-gradient(180deg, color-mix(in oklab, var(--ok) 80%, #9be8c6 20%), color-mix(in oklab, var(--ok) 54%, transparent));
|
|
}
|
|
|
|
.ops-bot-strip.is-stopped {
|
|
background: linear-gradient(180deg, color-mix(in oklab, var(--err) 74%, #e7b1ba 26%), color-mix(in oklab, var(--err) 54%, transparent));
|
|
}
|
|
|
|
.ops-bot-strip.is-disabled {
|
|
background: linear-gradient(180deg, color-mix(in oklab, #9ca3b5 82%, #d4d9e2 18%), color-mix(in oklab, #9ca3b5 52%, transparent));
|
|
}
|
|
|
|
.ops-bot-icon-btn {
|
|
width: 36px;
|
|
height: 36px;
|
|
padding: 0;
|
|
border-radius: 10px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ops-bot-icon-btn svg {
|
|
width: 17px;
|
|
height: 17px;
|
|
stroke-width: 2.1;
|
|
}
|
|
|
|
.ops-bot-top-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-bot-name-row {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-bot-lock {
|
|
width: 16px;
|
|
height: 16px;
|
|
min-width: 16px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: color-mix(in oklab, #f0b14a 72%, var(--text) 28%);
|
|
}
|
|
|
|
.ops-bot-lock svg {
|
|
width: 12px;
|
|
height: 12px;
|
|
stroke-width: 2.2;
|
|
}
|
|
|
|
.ops-bot-open-inline {
|
|
width: 16px;
|
|
height: 16px;
|
|
min-width: 16px;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: var(--text-soft);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0.72;
|
|
}
|
|
|
|
.ops-bot-open-inline:hover {
|
|
color: var(--brand);
|
|
opacity: 1;
|
|
}
|
|
|
|
.ops-bot-open-inline svg {
|
|
width: 11px;
|
|
height: 11px;
|
|
stroke-width: 2.25;
|
|
}
|
|
|
|
.workspace-preview-media {
|
|
width: 100%;
|
|
max-height: min(72vh, 720px);
|
|
border-radius: 16px;
|
|
background: #000;
|
|
}
|
|
|
|
.workspace-preview-audio {
|
|
width: min(100%, 760px);
|
|
align-self: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.ops-bot-actions .ops-bot-action-monitor {
|
|
background: color-mix(in oklab, var(--panel-soft) 75%, var(--brand-soft) 25%);
|
|
border-color: color-mix(in oklab, var(--brand) 44%, var(--line) 56%);
|
|
color: color-mix(in oklab, var(--text) 76%, white 24%);
|
|
}
|
|
|
|
.ops-bot-actions .ops-bot-action-start {
|
|
background: color-mix(in oklab, var(--ok) 24%, var(--panel-soft) 76%);
|
|
border-color: color-mix(in oklab, var(--ok) 52%, var(--line) 48%);
|
|
color: color-mix(in oklab, var(--text) 76%, white 24%);
|
|
}
|
|
|
|
.ops-bot-actions .ops-bot-action-stop {
|
|
background: color-mix(in oklab, #f5af48 30%, var(--panel-soft) 70%);
|
|
border-color: color-mix(in oklab, #f5af48 58%, var(--line) 42%);
|
|
color: #5e3b00;
|
|
}
|
|
|
|
.ops-bot-actions .ops-bot-action-stop:hover {
|
|
background: color-mix(in oklab, #f5af48 38%, var(--panel-soft) 62%);
|
|
border-color: color-mix(in oklab, #f5af48 70%, var(--line) 30%);
|
|
}
|
|
|
|
.ops-bot-actions .ops-bot-action-delete {
|
|
background: color-mix(in oklab, var(--err) 20%, var(--panel-soft) 80%);
|
|
border-color: color-mix(in oklab, var(--err) 48%, var(--line) 52%);
|
|
color: color-mix(in oklab, var(--text) 72%, white 28%);
|
|
}
|
|
|
|
.ops-bot-actions .ops-bot-icon-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ops-control-pending {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-control-dots {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 3px;
|
|
}
|
|
|
|
.ops-control-dots i {
|
|
width: 4px;
|
|
height: 4px;
|
|
border-radius: 999px;
|
|
display: block;
|
|
background: currentColor;
|
|
opacity: 0.35;
|
|
animation: ops-control-dot 1.2s infinite ease-in-out;
|
|
}
|
|
|
|
.ops-control-dots i:nth-child(2) {
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
.ops-control-dots i:nth-child(3) {
|
|
animation-delay: 0.4s;
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: 8px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ops-chat-panel {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 12px;
|
|
}
|
|
|
|
.ops-chat-shell {
|
|
display: grid;
|
|
height: 100%;
|
|
min-height: 0;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.ops-compact-bot-surface {
|
|
position: fixed;
|
|
left: 12px;
|
|
right: 12px;
|
|
top: 58px;
|
|
bottom: 12px;
|
|
z-index: 72;
|
|
animation: ops-compact-sheet-in 220ms ease;
|
|
}
|
|
|
|
.ops-compact-close-btn {
|
|
position: fixed;
|
|
top: 18px;
|
|
right: 14px;
|
|
width: 34px;
|
|
height: 34px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--brand) 58%, var(--line) 42%);
|
|
background: color-mix(in oklab, var(--panel) 78%, var(--brand-soft) 22%);
|
|
color: var(--icon);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 90;
|
|
box-shadow:
|
|
0 8px 20px rgba(9, 15, 28, 0.38),
|
|
0 0 0 2px color-mix(in oklab, var(--brand) 22%, transparent);
|
|
}
|
|
|
|
@keyframes ops-compact-sheet-in {
|
|
from {
|
|
transform: translateY(22px);
|
|
opacity: 0.82;
|
|
}
|
|
to {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.ops-main-content-shell {
|
|
display: block;
|
|
min-height: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.ops-main-content-frame {
|
|
display: grid;
|
|
grid-template-rows: auto minmax(0, 1fr);
|
|
min-height: 0;
|
|
height: 100%;
|
|
border: 1px solid var(--line);
|
|
border-radius: 16px;
|
|
background: var(--panel-soft);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ops-main-content-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 44px;
|
|
padding: 6px 12px;
|
|
border-bottom: 1px solid color-mix(in oklab, var(--line) 78%, transparent);
|
|
background: color-mix(in oklab, var(--panel) 86%, transparent);
|
|
}
|
|
|
|
.ops-main-content-body {
|
|
min-height: 0;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-rows: minmax(0, 1fr);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ops-main-mode-rail {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
align-items: center;
|
|
width: min(320px, 100%);
|
|
min-height: 34px;
|
|
padding: 3px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 74%, transparent);
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--panel) 92%, white 8%);
|
|
}
|
|
|
|
.ops-chat-topic-frame {
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ops-main-mode-tab {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
height: 28px;
|
|
padding: 0 10px;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
background: transparent;
|
|
color: var(--muted);
|
|
cursor: pointer;
|
|
transition: color 160ms ease, background 160ms ease, opacity 160ms ease;
|
|
}
|
|
|
|
.ops-main-mode-tab:hover {
|
|
color: var(--text);
|
|
background: color-mix(in oklab, var(--panel-soft) 66%, transparent);
|
|
}
|
|
|
|
.ops-main-mode-tab.is-active {
|
|
color: #fff;
|
|
background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 78%, #9ec1ff 22%), color-mix(in oklab, var(--brand) 66%, #7ca7ff 34%));
|
|
box-shadow: 0 6px 16px color-mix(in oklab, var(--brand) 24%, transparent);
|
|
}
|
|
|
|
.ops-main-mode-tab:focus-visible {
|
|
outline: 2px solid color-mix(in oklab, var(--brand) 42%, transparent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.ops-main-mode-tab + .ops-main-mode-tab {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.ops-main-mode-tab svg {
|
|
color: color-mix(in oklab, var(--icon) 88%, var(--muted) 12%);
|
|
transition: color 160ms ease, fill 160ms ease, opacity 160ms ease;
|
|
}
|
|
|
|
.ops-main-mode-tab.is-active svg {
|
|
color: #fff;
|
|
}
|
|
|
|
.ops-main-mode-label {
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
letter-spacing: 0.01em;
|
|
white-space: nowrap;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.ops-main-mode-label-wrap {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-main-content-frame .ops-chat-frame,
|
|
.ops-main-content-frame .ops-topic-feed.is-panel {
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-main-content-body > * {
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-main-content-body > .ops-chat-frame,
|
|
.ops-main-content-body > .ops-topic-feed.is-panel {
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-main-content-body .ops-chat-scroll {
|
|
min-height: 0;
|
|
max-height: none;
|
|
border: 0;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
padding: 14px 16px 10px;
|
|
}
|
|
|
|
.ops-main-content-body .ops-chat-dock {
|
|
display: grid;
|
|
gap: 10px;
|
|
min-height: 0;
|
|
padding: 0 14px 14px;
|
|
}
|
|
|
|
.ops-main-content-body .ops-topic-feed.is-panel {
|
|
padding: 12px 14px 14px;
|
|
grid-template-rows: auto auto minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.ops-status-group {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ops-status-pill {
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
padding: 5px 10px;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
color: var(--text);
|
|
background: var(--panel);
|
|
}
|
|
|
|
.ops-status-pill.running {
|
|
border-color: #2ca476;
|
|
background: rgba(44, 164, 118, 0.16);
|
|
}
|
|
|
|
.ops-status-pill.stopped,
|
|
.ops-status-pill.exited {
|
|
border-color: #d28686;
|
|
background: rgba(209, 75, 75, 0.16);
|
|
}
|
|
|
|
.ops-status-pill.error {
|
|
border-color: #d14b4b;
|
|
background: rgba(209, 75, 75, 0.2);
|
|
}
|
|
|
|
.ops-status-pill.idle {
|
|
border-color: #4b79d4;
|
|
background: rgba(47, 105, 226, 0.16);
|
|
}
|
|
|
|
.ops-chat-frame {
|
|
position: relative;
|
|
min-height: 0;
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-rows: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
}
|
|
|
|
.ops-chat-frame.is-disabled .ops-chat-scroll,
|
|
.ops-chat-frame.is-disabled .ops-composer {
|
|
filter: grayscale(0.2) opacity(0.75);
|
|
}
|
|
|
|
.ops-chat-disabled-mask {
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 12px;
|
|
background: color-mix(in oklab, var(--panel) 60%, transparent);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 3;
|
|
}
|
|
|
|
.ops-chat-disabled-card {
|
|
border: 1px solid color-mix(in oklab, var(--line) 78%, var(--brand) 22%);
|
|
border-radius: 10px;
|
|
background: color-mix(in oklab, var(--panel-soft) 82%, var(--panel) 18%);
|
|
color: var(--text);
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.ops-midstate-board {
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: var(--panel-soft);
|
|
padding: 10px;
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-midstate-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-midstate-feed {
|
|
display: grid;
|
|
gap: 6px;
|
|
max-height: 180px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.ops-midstate-item {
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
background: var(--panel);
|
|
padding: 6px 8px;
|
|
display: grid;
|
|
grid-template-columns: 86px 1fr auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.ops-midstate-text {
|
|
font-size: 12px;
|
|
line-height: 1.35;
|
|
color: var(--text);
|
|
}
|
|
|
|
.ops-chat-scroll {
|
|
min-height: 300px;
|
|
max-height: 68vh;
|
|
overflow: auto;
|
|
border: 1px solid var(--line);
|
|
border-radius: 14px;
|
|
background: var(--panel-soft);
|
|
padding: 14px;
|
|
}
|
|
|
|
.ops-chat-row {
|
|
display: flex;
|
|
width: 100%;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.ops-chat-date-divider {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin: 6px 0 14px;
|
|
color: var(--subtitle);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.ops-chat-date-divider::before,
|
|
.ops-chat-date-divider::after {
|
|
content: '';
|
|
flex: 1 1 auto;
|
|
height: 1px;
|
|
background: color-mix(in oklab, var(--line) 82%, transparent);
|
|
}
|
|
|
|
.ops-chat-date-divider > span {
|
|
flex: 0 0 auto;
|
|
padding: 2px 8px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 80%, transparent);
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--panel) 72%, var(--panel-soft) 28%);
|
|
color: var(--muted);
|
|
}
|
|
|
|
.ops-chat-item {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 10px;
|
|
width: 100%;
|
|
min-width: 0;
|
|
}
|
|
|
|
.ops-chat-item.is-user {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.ops-chat-item.is-assistant {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.ops-chat-hover-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-height: 34px;
|
|
}
|
|
|
|
.ops-chat-hover-actions-user {
|
|
width: 0;
|
|
margin-right: 0;
|
|
overflow: visible;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transform: translateX(6px) scale(0.95);
|
|
transition: opacity 0.18s ease, transform 0.18s ease, width 0.18s ease, margin-right 0.18s ease;
|
|
}
|
|
|
|
.ops-chat-row.is-user:hover .ops-chat-hover-actions-user,
|
|
.ops-chat-row.is-user:focus-within .ops-chat-hover-actions-user {
|
|
width: 54px;
|
|
margin-right: 6px;
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
transform: translateX(0) scale(1);
|
|
}
|
|
|
|
.ops-chat-row.is-user {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.ops-chat-row.is-assistant {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.ops-chat-bubble {
|
|
width: auto;
|
|
min-width: 0;
|
|
flex: 0 1 auto;
|
|
max-width: min(860px, calc(100% - 52px));
|
|
border-radius: 14px;
|
|
border: 1px solid var(--line);
|
|
padding: 10px 12px;
|
|
position: relative;
|
|
overflow: visible;
|
|
}
|
|
|
|
.ops-chat-bubble.assistant {
|
|
--bubble-bg: color-mix(in oklab, var(--panel-soft) 82%, var(--panel) 18%);
|
|
--bubble-border: #3661aa;
|
|
border-color: #3661aa;
|
|
background: var(--bubble-bg);
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
|
|
.ops-chat-bubble.assistant.progress {
|
|
--bubble-bg: color-mix(in oklab, var(--brand-soft) 35%, var(--panel-soft) 65%);
|
|
--bubble-border: color-mix(in oklab, var(--brand) 55%, var(--line) 45%);
|
|
border-style: dashed;
|
|
border-color: color-mix(in oklab, var(--brand) 55%, var(--line) 45%);
|
|
background: var(--bubble-bg);
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
|
|
.ops-chat-bubble.user {
|
|
--bubble-bg: color-mix(in oklab, #d9fff0 36%, var(--panel-soft) 64%);
|
|
--bubble-border: #2f8f7f;
|
|
border-color: #2f8f7f;
|
|
background: var(--bubble-bg);
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
.ops-chat-bubble.assistant::before,
|
|
.ops-chat-bubble.assistant::after,
|
|
.ops-chat-bubble.user::before,
|
|
.ops-chat-bubble.user::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.ops-chat-bubble.assistant::before {
|
|
left: -9px;
|
|
bottom: 8px;
|
|
border-top: 8px solid transparent;
|
|
border-bottom: 8px solid transparent;
|
|
border-right: 9px solid var(--bubble-border);
|
|
}
|
|
|
|
.ops-chat-bubble.assistant::after {
|
|
left: -7px;
|
|
bottom: 9px;
|
|
border-top: 7px solid transparent;
|
|
border-bottom: 7px solid transparent;
|
|
border-right: 8px solid var(--bubble-bg);
|
|
}
|
|
|
|
.ops-chat-bubble.user::before {
|
|
right: -9px;
|
|
top: 8px;
|
|
border-top: 8px solid transparent;
|
|
border-bottom: 8px solid transparent;
|
|
border-left: 9px solid var(--bubble-border);
|
|
}
|
|
|
|
.ops-chat-bubble.user::after {
|
|
right: -7px;
|
|
top: 9px;
|
|
border-top: 7px solid transparent;
|
|
border-bottom: 7px solid transparent;
|
|
border-left: 8px solid var(--bubble-bg);
|
|
}
|
|
|
|
.ops-chat-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
margin-bottom: 6px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.ops-chat-meta-right {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-chat-expand-icon-btn {
|
|
border: 1px solid color-mix(in oklab, var(--brand) 56%, var(--line) 44%);
|
|
background: color-mix(in oklab, var(--panel) 76%, var(--brand-soft) 24%);
|
|
color: var(--text);
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
width: 20px;
|
|
height: 20px;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ops-chat-inline-action {
|
|
width: 24px;
|
|
height: 24px;
|
|
padding: 0;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line);
|
|
background: color-mix(in oklab, var(--panel) 80%, var(--panel-soft) 20%);
|
|
color: var(--text);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ops-chat-inline-action:disabled {
|
|
opacity: 0.55;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ops-chat-reply-actions {
|
|
margin-top: 8px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-chat-inline-action.active-up {
|
|
border-color: color-mix(in oklab, #2ca476 58%, var(--line) 42%);
|
|
background: color-mix(in oklab, #2ca476 20%, var(--panel-soft) 80%);
|
|
color: #1f7e5e;
|
|
}
|
|
|
|
.ops-chat-inline-action.active-down {
|
|
border-color: color-mix(in oklab, #d14b4b 58%, var(--line) 42%);
|
|
background: color-mix(in oklab, #d14b4b 20%, var(--panel-soft) 80%);
|
|
color: #9c2f2f;
|
|
}
|
|
|
|
.ops-chat-text {
|
|
white-space: normal;
|
|
word-break: break-word;
|
|
overflow-wrap: anywhere;
|
|
line-height: 1.58;
|
|
font-size: 14px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.ops-chat-text .whitespace-pre-wrap {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.ops-chat-text.is-collapsed {
|
|
max-height: 220px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.ops-chat-text.is-collapsed-user {
|
|
max-height: calc(1.58em * 5);
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.ops-chat-text.is-collapsed::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 42px;
|
|
pointer-events: none;
|
|
background: linear-gradient(to bottom, transparent, color-mix(in oklab, var(--panel-soft) 88%, var(--panel) 12%));
|
|
}
|
|
|
|
.ops-chat-text.is-collapsed-user::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 42px;
|
|
pointer-events: none;
|
|
background: linear-gradient(to bottom, transparent, color-mix(in oklab, var(--panel-soft) 88%, var(--panel) 12%));
|
|
}
|
|
|
|
.ops-chat-text > *:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.ops-chat-text > *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.ops-chat-text p,
|
|
.ops-chat-text ul,
|
|
.ops-chat-text ol {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.ops-chat-text p:empty {
|
|
margin: 0;
|
|
}
|
|
|
|
.ops-chat-text pre {
|
|
margin: 8px 0;
|
|
overflow: auto;
|
|
border-radius: 10px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 75%, transparent);
|
|
background: color-mix(in oklab, var(--panel) 78%, #000 22%);
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
.ops-chat-text code {
|
|
font-family: 'SF Mono', Menlo, Consolas, monospace;
|
|
font-size: 12px;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.ops-chat-attachments {
|
|
margin-top: 8px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-attach-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
max-width: 100%;
|
|
padding: 4px 8px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
text-decoration: none;
|
|
color: var(--text);
|
|
background: color-mix(in oklab, var(--panel) 78%, transparent);
|
|
}
|
|
|
|
.ops-attach-link-icon {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.ops-attach-link-name {
|
|
min-width: 0;
|
|
}
|
|
|
|
.ops-attach-link:hover {
|
|
border-color: color-mix(in oklab, var(--brand) 56%, var(--line) 44%);
|
|
}
|
|
|
|
.ops-avatar {
|
|
width: 34px;
|
|
height: 34px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 0 0 34px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ops-avatar.bot {
|
|
background: #102d63;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ops-avatar.bot img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.ops-avatar.user {
|
|
background: #1f4f8a;
|
|
border-color: #6d98cf;
|
|
color: #e9f2ff;
|
|
}
|
|
|
|
.ops-chat-row.is-user .ops-avatar.user {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.ops-chat-empty {
|
|
border: 1px dashed var(--line);
|
|
border-radius: 12px;
|
|
padding: 12px;
|
|
color: var(--muted);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.ops-thinking-bubble {
|
|
border: 1px solid color-mix(in oklab, var(--brand) 50%, var(--line) 50%);
|
|
background: color-mix(in oklab, var(--brand-soft) 40%, var(--panel-soft) 60%);
|
|
border-radius: 14px;
|
|
padding: 10px 12px;
|
|
min-width: 190px;
|
|
}
|
|
|
|
.ops-thinking-cloud {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-thinking-cloud .dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--brand) 75%, #fff 25%);
|
|
animation: ops-thinking-pulse 1.4s infinite ease-in-out;
|
|
}
|
|
|
|
.ops-thinking-cloud .dot:nth-child(2) {
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
.ops-thinking-cloud .dot:nth-child(3) {
|
|
animation-delay: 0.4s;
|
|
}
|
|
|
|
.ops-thinking-text {
|
|
margin-top: 8px;
|
|
color: var(--subtitle);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
@keyframes ops-thinking-pulse {
|
|
0%, 80%, 100% {
|
|
transform: translateY(0);
|
|
opacity: 0.45;
|
|
}
|
|
40% {
|
|
transform: translateY(-4px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes ops-control-dot {
|
|
0%, 80%, 100% {
|
|
transform: translateY(0);
|
|
opacity: 0.35;
|
|
}
|
|
40% {
|
|
transform: translateY(-2px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.ops-composer {
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: var(--panel-soft);
|
|
padding: 10px;
|
|
display: block;
|
|
}
|
|
|
|
.ops-composer-shell {
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-rows: minmax(96px, auto) auto;
|
|
gap: 0;
|
|
min-height: 108px;
|
|
overflow: hidden;
|
|
border: 1px solid color-mix(in oklab, var(--line) 70%, var(--text) 8%);
|
|
border-radius: 10px;
|
|
background: var(--panel);
|
|
}
|
|
|
|
.ops-chat-top-context {
|
|
width: 100%;
|
|
min-width: 0;
|
|
margin: 0;
|
|
max-height: 120px;
|
|
overflow: auto;
|
|
padding: 6px 10px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: var(--panel-soft);
|
|
}
|
|
|
|
.ops-chat-dock {
|
|
display: grid;
|
|
gap: 8px;
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-composer-float-controls {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 15px;
|
|
z-index: 4;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 6px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ops-control-command-drawer {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
max-width: 0;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
transform: translateX(10px);
|
|
transition: max-width 0.22s ease, opacity 0.18s ease, transform 0.22s ease;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ops-control-command-drawer.is-open {
|
|
max-width: 332px;
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
overflow: visible;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.ops-control-command-chip {
|
|
height: 24px;
|
|
padding: 0 8px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--panel) 94%, transparent);
|
|
color: var(--text);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
|
|
box-shadow: 0 4px 10px rgba(9, 15, 28, 0.08);
|
|
}
|
|
|
|
.ops-control-command-chip .mono {
|
|
font-size: 11px;
|
|
line-height: 1;
|
|
color: var(--brand);
|
|
}
|
|
|
|
.ops-control-command-chip:hover:not(:disabled) {
|
|
border-color: color-mix(in oklab, var(--brand) 56%, var(--line) 44%);
|
|
background: color-mix(in oklab, var(--brand-soft) 28%, var(--panel) 72%);
|
|
}
|
|
|
|
.ops-control-command-chip:disabled {
|
|
opacity: 0.55;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ops-control-date-panel {
|
|
position: fixed;
|
|
width: 220px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 74%, transparent);
|
|
border-radius: 12px;
|
|
background: var(--panel);
|
|
box-shadow: 0 14px 28px rgba(9, 16, 31, 0.2);
|
|
padding: 10px;
|
|
display: grid;
|
|
gap: 10px;
|
|
z-index: 140;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.ops-control-date-label {
|
|
display: grid;
|
|
gap: 6px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: var(--subtitle);
|
|
}
|
|
|
|
.ops-control-date-input {
|
|
min-height: 34px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.ops-control-date-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-control-command-toggle {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 1px solid color-mix(in oklab, var(--brand) 50%, var(--line) 50%);
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--panel) 95%, var(--brand-soft) 5%);
|
|
color: var(--brand);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
|
|
box-shadow: 0 4px 10px rgba(9, 15, 28, 0.08);
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.ops-control-command-toggle:hover {
|
|
transform: translateX(-1px);
|
|
background: color-mix(in oklab, var(--brand-soft) 26%, var(--panel) 74%);
|
|
}
|
|
|
|
.ops-control-command-toggle.is-open {
|
|
background: color-mix(in oklab, var(--brand-soft) 34%, var(--panel) 66%);
|
|
}
|
|
|
|
.ops-composer-quote {
|
|
grid-column: 1 / -1;
|
|
border: 1px solid color-mix(in oklab, var(--brand) 42%, var(--line) 58%);
|
|
border-radius: 10px;
|
|
padding: 8px 10px;
|
|
background: color-mix(in oklab, var(--brand-soft) 34%, var(--panel) 66%);
|
|
min-width: 0;
|
|
}
|
|
|
|
.ops-composer-quote-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
margin-bottom: 6px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: var(--title);
|
|
}
|
|
|
|
.ops-composer-quote-text {
|
|
font-size: 12px;
|
|
line-height: 1.45;
|
|
color: var(--text);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ops-composer-shell .ops-composer-input,
|
|
.ops-composer-shell .ops-composer-input.input {
|
|
min-height: 96px;
|
|
max-height: 220px;
|
|
overflow: auto;
|
|
resize: none;
|
|
font-size: 14px;
|
|
line-height: 1.45;
|
|
padding: 14px 42px 10px 14px;
|
|
border: 0 !important;
|
|
border-bottom: 0 !important;
|
|
border-radius: 10px 10px 0 0;
|
|
background: var(--panel) !important;
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
.ops-composer-shell.is-command-open .ops-composer-input,
|
|
.ops-composer-shell.is-command-open .ops-composer-input.input {
|
|
padding-right: 230px;
|
|
}
|
|
|
|
.ops-composer-shell:focus-within {
|
|
border-color: var(--brand);
|
|
}
|
|
|
|
.ops-composer-shell .ops-composer-input.input:focus,
|
|
.ops-composer-shell .ops-composer-input:focus {
|
|
border: 0 !important;
|
|
border-bottom: 0 !important;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ops-voice-panel {
|
|
min-height: 96px;
|
|
border: 1px dashed color-mix(in oklab, var(--line) 72%, var(--brand) 28%);
|
|
border-radius: 12px;
|
|
background: color-mix(in oklab, var(--panel) 78%, var(--panel-soft) 22%);
|
|
padding: 12px 14px 12px 14px;
|
|
display: grid;
|
|
align-content: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.ops-voice-title {
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.ops-voice-wave {
|
|
height: 28px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 76%, transparent);
|
|
background: color-mix(in oklab, var(--panel-soft) 78%, var(--panel) 22%);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 0 6px;
|
|
overflow: hidden;
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.ops-voice-wave-segment {
|
|
height: 100%;
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 2px;
|
|
padding: 0 6px;
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--panel) 60%, rgba(255, 255, 255, 0.18) 40%);
|
|
}
|
|
|
|
.ops-voice-wave.is-mobile .ops-voice-wave-segment {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.ops-voice-wave.is-desktop .ops-voice-wave-segment {
|
|
flex: 1 1 0;
|
|
}
|
|
|
|
.ops-voice-wave-segment i {
|
|
display: inline-block;
|
|
width: 3px;
|
|
min-width: 3px;
|
|
height: 10px;
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--line) 72%, var(--text) 28%);
|
|
opacity: 0.72;
|
|
}
|
|
|
|
.ops-voice-wave-segment i:nth-child(3n) {
|
|
height: 14px;
|
|
}
|
|
|
|
.ops-voice-wave-segment i:nth-child(4n) {
|
|
height: 18px;
|
|
}
|
|
|
|
.ops-voice-wave-segment i:nth-child(5n) {
|
|
height: 12px;
|
|
}
|
|
|
|
.ops-voice-wave.is-live .ops-voice-wave-segment i {
|
|
background: color-mix(in oklab, var(--brand) 60%, #8ec3ff 40%);
|
|
animation: ops-voice-wave 1.05s ease-in-out infinite;
|
|
}
|
|
|
|
.ops-voice-countdown {
|
|
flex: 0 0 auto;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
color: var(--title);
|
|
min-width: 44px;
|
|
text-align: right;
|
|
}
|
|
|
|
.ops-composer-tools-right {
|
|
position: static;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 6px;
|
|
min-height: 44px;
|
|
padding: 4px 10px 6px 10px;
|
|
border-top: 0;
|
|
background: var(--panel);
|
|
border-radius: 0 0 10px 10px;
|
|
}
|
|
|
|
.ops-composer-tools-right {
|
|
width: auto;
|
|
}
|
|
|
|
.ops-voice-inline {
|
|
min-width: 0;
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.ops-control-command-drawer.is-open {
|
|
max-width: 288px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ops-control-date-panel {
|
|
right: -2px;
|
|
width: min(220px, calc(100vw - 44px));
|
|
}
|
|
|
|
.ops-voice-wave {
|
|
gap: 4px;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.ops-voice-wave-segment {
|
|
padding: 0 4px;
|
|
}
|
|
}
|
|
|
|
.ops-composer-inline-btn {
|
|
width: 30px;
|
|
height: 30px;
|
|
padding: 0;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
background: transparent;
|
|
color: var(--icon-muted);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ops-composer-inline-btn:hover:not(:disabled) {
|
|
background: color-mix(in oklab, var(--panel) 66%, var(--brand-soft) 34%);
|
|
color: var(--icon);
|
|
}
|
|
|
|
.ops-composer-inline-btn.is-active {
|
|
background: color-mix(in oklab, var(--brand-soft) 42%, var(--panel) 58%);
|
|
color: var(--brand);
|
|
}
|
|
|
|
.ops-composer-submit-btn {
|
|
width: 34px;
|
|
height: 34px;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
background: var(--text);
|
|
color: var(--panel);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
box-shadow: 0 8px 18px rgba(9, 15, 28, 0.22);
|
|
}
|
|
|
|
.ops-composer-submit-btn.is-interrupt {
|
|
width: 34px;
|
|
min-width: 34px;
|
|
padding: 0;
|
|
background: #0b1220;
|
|
color: #fff;
|
|
border: 1px solid color-mix(in oklab, #0b1220 72%, var(--line) 28%);
|
|
box-shadow: 0 8px 18px rgba(9, 15, 28, 0.22);
|
|
}
|
|
|
|
.ops-composer-submit-btn:hover:not(:disabled) {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.ops-composer-submit-btn:disabled,
|
|
.ops-composer-inline-btn:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ops-pending-files {
|
|
margin-top: 8px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-user-quoted-reply {
|
|
margin-bottom: 8px;
|
|
border-left: 3px solid color-mix(in oklab, var(--brand) 55%, var(--line) 45%);
|
|
border-radius: 8px;
|
|
background: color-mix(in oklab, var(--panel) 84%, var(--brand-soft) 16%);
|
|
padding: 6px 8px;
|
|
}
|
|
|
|
.ops-user-quoted-label {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
color: var(--subtitle);
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.ops-user-quoted-text {
|
|
font-size: 12px;
|
|
line-height: 1.4;
|
|
color: var(--text-soft);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ops-upload-progress {
|
|
margin-top: 8px;
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-upload-progress-track {
|
|
height: 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 72%, transparent);
|
|
background: color-mix(in oklab, var(--panel) 78%, var(--panel-soft) 22%);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ops-upload-progress-fill {
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
width: 0;
|
|
background: linear-gradient(90deg, color-mix(in oklab, var(--brand) 75%, #7fb8ff 25%), color-mix(in oklab, var(--brand) 55%, #b6ddff 45%));
|
|
transition: width 0.2s ease;
|
|
}
|
|
|
|
.ops-upload-progress-track.is-indeterminate .ops-upload-progress-fill {
|
|
width: 28%;
|
|
animation: ops-upload-indeterminate 1s linear infinite;
|
|
}
|
|
|
|
.ops-upload-progress-text {
|
|
font-size: 11px;
|
|
color: var(--subtitle);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@keyframes ops-upload-indeterminate {
|
|
0% { transform: translateX(-110%); }
|
|
100% { transform: translateX(430%); }
|
|
}
|
|
|
|
@keyframes ops-voice-wave {
|
|
0%, 100% {
|
|
transform: scaleY(0.55);
|
|
opacity: 0.35;
|
|
}
|
|
50% {
|
|
transform: scaleY(1.95);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.ops-pending-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
max-width: 100%;
|
|
border: 1px solid var(--line);
|
|
border-radius: 999px;
|
|
padding: 6px 12px;
|
|
font-size: 13px;
|
|
color: var(--text);
|
|
background: color-mix(in oklab, var(--panel-soft) 78%, transparent);
|
|
}
|
|
|
|
.ops-pending-open {
|
|
max-width: 300px;
|
|
min-width: 0;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.ops-chip-remove {
|
|
width: 34px;
|
|
height: 34px;
|
|
min-width: 34px;
|
|
min-height: 34px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--brand) 28%, var(--line) 72%);
|
|
background: color-mix(in oklab, var(--panel) 92%, #f5f8ff 8%);
|
|
color: color-mix(in oklab, var(--text) 86%, #4b668f 14%);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
}
|
|
|
|
.ops-chip-remove:hover {
|
|
border-color: color-mix(in oklab, var(--brand) 46%, var(--line) 54%);
|
|
background: color-mix(in oklab, var(--panel) 80%, var(--brand-soft) 20%);
|
|
}
|
|
|
|
.ops-chip-remove svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
stroke-width: 2.2;
|
|
}
|
|
|
|
.ops-runtime-panel {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-runtime-shell {
|
|
display: grid;
|
|
grid-template-rows: auto 1fr;
|
|
gap: 10px;
|
|
min-height: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.ops-runtime-head {
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
}
|
|
|
|
.ops-panel-tools {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ops-runtime-view-switch {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.ops-switch-dot {
|
|
position: static;
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 999px;
|
|
background: #ef4444;
|
|
border: 1.5px solid #fff;
|
|
box-shadow: 0 0 0 1px color-mix(in oklab, var(--panel-soft) 82%, transparent);
|
|
}
|
|
|
|
.ops-more-menu {
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
right: 0;
|
|
min-width: 190px;
|
|
z-index: 30;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: var(--panel);
|
|
box-shadow: 0 14px 32px rgba(9, 16, 31, 0.28);
|
|
padding: 6px;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.ops-more-item {
|
|
width: 100%;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
background: transparent;
|
|
color: var(--text);
|
|
padding: 8px 10px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
}
|
|
|
|
.ops-more-item:hover {
|
|
background: color-mix(in oklab, var(--brand-soft) 36%, var(--panel-soft) 64%);
|
|
border-color: color-mix(in oklab, var(--brand) 48%, var(--line) 52%);
|
|
}
|
|
|
|
.ops-more-item.danger {
|
|
color: #d76666;
|
|
}
|
|
|
|
.ops-more-item.danger:hover {
|
|
background: rgba(215, 102, 102, 0.14);
|
|
border-color: rgba(215, 102, 102, 0.34);
|
|
}
|
|
|
|
.ops-template-tabs {
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14px;
|
|
margin: 2px 0 12px;
|
|
padding: 0 6px 8px;
|
|
}
|
|
|
|
.ops-template-tabs::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 2px;
|
|
background: color-mix(in oklab, var(--line) 78%, var(--panel-soft) 22%);
|
|
}
|
|
|
|
.ops-template-tab {
|
|
border: 1px solid transparent;
|
|
border-radius: 12px;
|
|
background: transparent;
|
|
color: color-mix(in oklab, var(--text) 82%, var(--muted) 18%);
|
|
min-height: 54px;
|
|
padding: 10px 14px;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.02em;
|
|
cursor: pointer;
|
|
transition: all 0.16s ease;
|
|
}
|
|
|
|
.ops-template-tab:hover {
|
|
background: color-mix(in oklab, var(--brand-soft) 52%, var(--panel) 48%);
|
|
}
|
|
|
|
.ops-template-tab.is-active {
|
|
background: color-mix(in oklab, var(--brand-soft) 74%, var(--panel) 26%);
|
|
border-color: color-mix(in oklab, var(--brand) 30%, transparent);
|
|
color: color-mix(in oklab, var(--text) 90%, var(--brand) 10%);
|
|
box-shadow: 0 8px 20px rgba(45, 93, 185, 0.08);
|
|
}
|
|
|
|
.ops-template-tab.is-active::after {
|
|
content: "";
|
|
position: relative;
|
|
display: block;
|
|
height: 2px;
|
|
width: calc(100% + 28px);
|
|
left: -14px;
|
|
top: 11px;
|
|
background: color-mix(in oklab, var(--brand) 78%, #ffffff 22%);
|
|
}
|
|
|
|
.ops-template-tab-label {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ops-runtime-scroll {
|
|
min-height: 0;
|
|
overflow: auto;
|
|
display: grid;
|
|
gap: 10px;
|
|
align-content: start;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
.ops-runtime-card {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-topic-feed {
|
|
position: relative;
|
|
display: grid;
|
|
gap: 8px;
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-topic-feed.is-panel {
|
|
height: 100%;
|
|
grid-template-rows: auto auto minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.ops-topic-feed-empty-state {
|
|
min-height: 180px;
|
|
display: grid;
|
|
place-items: center;
|
|
gap: 10px;
|
|
align-content: center;
|
|
text-align: center;
|
|
padding: 18px 10px;
|
|
}
|
|
|
|
.ops-topic-feed-empty-title {
|
|
color: var(--title);
|
|
font-size: 18px;
|
|
font-weight: 800;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.ops-topic-feed-empty-desc {
|
|
max-width: 480px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.ops-topic-feed-toolbar {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.ops-topic-feed-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
min-height: 0;
|
|
max-height: 320px;
|
|
overflow: auto;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
.ops-topic-feed-list.is-panel {
|
|
max-height: none;
|
|
height: 100%;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
.ops-topic-feed-item {
|
|
border: 1px solid color-mix(in oklab, var(--line) 78%, transparent);
|
|
border-radius: 14px;
|
|
background:
|
|
linear-gradient(180deg, color-mix(in oklab, var(--panel) 92%, white 8%), color-mix(in oklab, var(--panel-soft) 78%, transparent)),
|
|
color-mix(in oklab, var(--panel-soft) 82%, transparent);
|
|
padding: 12px;
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.ops-topic-feed-item.unread {
|
|
border-color: color-mix(in oklab, var(--brand) 56%, var(--line) 44%);
|
|
box-shadow:
|
|
inset 3px 0 0 color-mix(in oklab, var(--brand) 72%, transparent),
|
|
0 10px 24px color-mix(in oklab, var(--brand-soft) 12%, transparent);
|
|
}
|
|
|
|
.ops-topic-feed-item-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ops-topic-feed-meta {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ops-topic-feed-meta-right {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-left: auto;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ops-topic-feed-topic-chip,
|
|
.ops-topic-feed-source-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
height: 22px;
|
|
padding: 0 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 75%, transparent);
|
|
background: color-mix(in oklab, var(--panel) 76%, transparent);
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.ops-topic-feed-unread-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 999px;
|
|
background: #ef4444;
|
|
box-shadow: 0 0 0 3px color-mix(in oklab, #ef4444 18%, transparent);
|
|
}
|
|
|
|
.ops-topic-feed-level {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 52px;
|
|
height: 20px;
|
|
border-radius: 999px;
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.ops-topic-feed-level.info {
|
|
color: color-mix(in oklab, var(--brand) 75%, white 25%);
|
|
background: color-mix(in oklab, var(--brand) 18%, transparent);
|
|
border-color: color-mix(in oklab, var(--brand) 46%, transparent);
|
|
}
|
|
|
|
.ops-topic-feed-level.warn {
|
|
color: #9b5d00;
|
|
background: color-mix(in oklab, #f5af48 26%, transparent);
|
|
border-color: color-mix(in oklab, #f5af48 56%, transparent);
|
|
}
|
|
|
|
.ops-topic-feed-level.error {
|
|
color: color-mix(in oklab, var(--err) 82%, white 18%);
|
|
background: color-mix(in oklab, var(--err) 18%, transparent);
|
|
border-color: color-mix(in oklab, var(--err) 52%, transparent);
|
|
}
|
|
|
|
.ops-topic-feed-level.success {
|
|
color: color-mix(in oklab, var(--ok) 78%, white 22%);
|
|
background: color-mix(in oklab, var(--ok) 20%, transparent);
|
|
border-color: color-mix(in oklab, var(--ok) 52%, transparent);
|
|
}
|
|
|
|
.ops-topic-feed-time {
|
|
font-size: 11px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.ops-topic-feed-title {
|
|
font-weight: 700;
|
|
color: var(--text);
|
|
}
|
|
|
|
.ops-topic-feed-content {
|
|
font-size: 13px;
|
|
line-height: 1.58;
|
|
color: var(--text);
|
|
}
|
|
|
|
.ops-topic-card-shell {
|
|
display: grid;
|
|
gap: 10px;
|
|
padding: 2px 0 0;
|
|
}
|
|
|
|
.ops-topic-card-title {
|
|
font-size: 16px;
|
|
font-weight: 800;
|
|
line-height: 1.4;
|
|
color: var(--text);
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.ops-topic-card-summary {
|
|
font-size: 13px;
|
|
line-height: 1.68;
|
|
color: color-mix(in oklab, var(--text) 86%, var(--muted) 14%);
|
|
}
|
|
|
|
.ops-topic-card-highlights {
|
|
display: grid;
|
|
gap: 8px;
|
|
padding: 10px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 68%, transparent);
|
|
border-radius: 12px;
|
|
background: linear-gradient(180deg, color-mix(in oklab, var(--brand-soft) 20%, transparent), color-mix(in oklab, var(--panel-soft) 76%, transparent));
|
|
}
|
|
|
|
.ops-topic-card-highlight {
|
|
display: grid;
|
|
grid-template-columns: 10px 1fr;
|
|
gap: 8px;
|
|
align-items: start;
|
|
font-size: 13px;
|
|
line-height: 1.56;
|
|
color: var(--text);
|
|
}
|
|
|
|
.ops-topic-card-bullet {
|
|
width: 6px;
|
|
height: 6px;
|
|
margin-top: 7px;
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--brand) 72%, transparent);
|
|
box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand-soft) 18%, transparent);
|
|
}
|
|
|
|
.ops-topic-card-snippet {
|
|
padding: 10px 12px;
|
|
border-left: 3px solid color-mix(in oklab, var(--brand) 54%, transparent);
|
|
border-radius: 0 10px 10px 0;
|
|
background: color-mix(in oklab, var(--panel) 74%, transparent);
|
|
color: color-mix(in oklab, var(--text) 72%, var(--muted) 28%);
|
|
font-size: 12px;
|
|
line-height: 1.62;
|
|
}
|
|
|
|
.ops-topic-detail-overlay {
|
|
display: none;
|
|
}
|
|
|
|
.ops-topic-feed-tags {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-topic-feed-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
height: 20px;
|
|
padding: 0 8px;
|
|
border-radius: 999px;
|
|
border: 1px solid color-mix(in oklab, var(--line) 75%, transparent);
|
|
background: color-mix(in oklab, var(--panel) 75%, transparent);
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.ops-topic-feed-item-foot {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-topic-read-state {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-width: 0;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.ops-topic-read-state.is-unread {
|
|
color: color-mix(in oklab, var(--brand) 70%, var(--text) 30%);
|
|
}
|
|
|
|
.ops-topic-read-state.is-read {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.ops-topic-feed-item-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.ops-topic-feed-empty-action {
|
|
color: var(--muted);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.ops-main-mode-tab {
|
|
padding: 0 5px;
|
|
}
|
|
|
|
.ops-main-mode-label {
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
.app-shell-compact .ops-chat-panel,
|
|
.app-shell-compact .ops-chat-shell,
|
|
.app-shell-compact .ops-main-content-shell,
|
|
.app-shell-compact .ops-main-content-frame,
|
|
.app-shell-compact .ops-main-content-body,
|
|
.app-shell-compact .ops-chat-frame {
|
|
min-height: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.app-shell-compact .ops-main-content-body .ops-chat-scroll {
|
|
min-height: 0;
|
|
max-height: none;
|
|
}
|
|
}
|
|
|
|
.ops-runtime-state-card {
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-runtime-state-card:not(.is-visual) {
|
|
min-height: 210px;
|
|
align-content: start;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual {
|
|
min-height: 210px;
|
|
padding: 0;
|
|
gap: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-stage {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
border-radius: inherit;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-face {
|
|
width: 210px;
|
|
height: 140px;
|
|
gap: 34px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-eye {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-eye::after {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-idle .ops-state-eye {
|
|
width: 36px;
|
|
height: 6px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-caption {
|
|
bottom: 14px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-float {
|
|
padding: 6px;
|
|
right: 22%;
|
|
top: 24%;
|
|
}
|
|
|
|
.ops-runtime-mode-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-runtime-mode-toggle {
|
|
display: inline-flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-runtime-mode-toggle .btn.active {
|
|
border-color: color-mix(in oklab, var(--brand) 70%, var(--line) 30%);
|
|
background: color-mix(in oklab, var(--brand-soft) 58%, var(--panel-soft) 42%);
|
|
}
|
|
|
|
.ops-state-stage {
|
|
position: relative;
|
|
height: 160px;
|
|
border: 0;
|
|
border-radius: 10px;
|
|
display: grid;
|
|
place-items: center;
|
|
background:
|
|
radial-gradient(circle at 20% 25%, rgba(95, 136, 210, 0.12), transparent 40%),
|
|
radial-gradient(circle at 82% 70%, rgba(53, 94, 176, 0.1), transparent 40%),
|
|
color-mix(in oklab, var(--panel-soft) 72%, var(--panel) 28%);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ops-state-model {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
max-width: calc(100% - 28px);
|
|
border: 1px solid rgba(148, 179, 235, 0.55);
|
|
border-radius: 999px;
|
|
background: rgba(11, 24, 48, 0.58);
|
|
color: #dce9ff;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
padding: 3px 10px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ops-state-face {
|
|
width: 148px;
|
|
height: 96px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(148, 179, 235, 0.55);
|
|
background: rgba(19, 37, 74, 0.55);
|
|
box-shadow:
|
|
0 8px 30px rgba(10, 22, 44, 0.35),
|
|
inset 0 0 0 1px rgba(156, 185, 241, 0.18);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 26px;
|
|
}
|
|
|
|
.ops-state-eye {
|
|
width: 22px;
|
|
height: 22px;
|
|
position: relative;
|
|
border-radius: 999px;
|
|
border: 3px solid #d8e7ff;
|
|
background: rgba(232, 242, 255, 0.95);
|
|
box-shadow: 0 0 0 1px rgba(145, 178, 234, 0.35);
|
|
}
|
|
|
|
.ops-state-eye::after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 999px;
|
|
background: #1b3569;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.ops-state-eye::before {
|
|
content: "";
|
|
display: none;
|
|
}
|
|
|
|
.ops-state-caption {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-size: 11px;
|
|
letter-spacing: 0.08em;
|
|
color: color-mix(in oklab, var(--text) 70%, var(--muted) 30%);
|
|
}
|
|
|
|
.ops-state-float {
|
|
position: absolute;
|
|
color: #f2f7ff;
|
|
border: 1px solid rgba(163, 187, 226, 0.65);
|
|
background: rgba(17, 36, 71, 0.72);
|
|
border-radius: 999px;
|
|
padding: 4px;
|
|
right: 24%;
|
|
top: 26%;
|
|
}
|
|
|
|
.ops-state-float.state-thinking {
|
|
animation: ops-state-orbit 1.8s linear infinite;
|
|
}
|
|
|
|
.ops-state-float.state-tool {
|
|
animation: ops-tool-bob 0.7s ease-in-out infinite;
|
|
}
|
|
|
|
.ops-state-float.state-success {
|
|
color: #62e2ad;
|
|
border-color: rgba(98, 226, 173, 0.6);
|
|
}
|
|
|
|
.ops-state-float.state-error {
|
|
color: #ff9b9b;
|
|
border-color: rgba(255, 155, 155, 0.6);
|
|
}
|
|
|
|
.ops-state-idle .ops-state-eye {
|
|
width: 28px;
|
|
height: 4px;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
background: #d8e7ff;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ops-state-idle .ops-state-eye::after {
|
|
display: none;
|
|
}
|
|
|
|
.ops-state-thinking .ops-state-face {
|
|
animation: ops-state-breathe 1.25s ease-in-out infinite;
|
|
}
|
|
|
|
.ops-state-thinking .ops-state-eye::after {
|
|
animation: ops-eye-scan 1.3s ease-in-out infinite;
|
|
}
|
|
|
|
.ops-state-tool_call .ops-state-face {
|
|
animation: ops-state-breathe 0.8s ease-in-out infinite;
|
|
}
|
|
|
|
.ops-state-tool_call .ops-state-eye::after {
|
|
animation: ops-eye-scan-fast 0.7s ease-in-out infinite;
|
|
}
|
|
|
|
.ops-state-success .ops-state-face {
|
|
box-shadow:
|
|
0 8px 30px rgba(11, 48, 37, 0.3),
|
|
inset 0 0 0 1px rgba(112, 225, 172, 0.35);
|
|
}
|
|
|
|
.ops-state-success .ops-state-eye {
|
|
width: 22px;
|
|
height: 12px;
|
|
border: 0;
|
|
border-top: 3px solid #78dfb4;
|
|
border-radius: 999px;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
transform: translateY(3px);
|
|
}
|
|
|
|
.ops-state-success .ops-state-eye.left {
|
|
transform: translateY(3px) rotate(-8deg);
|
|
}
|
|
|
|
.ops-state-success .ops-state-eye.right {
|
|
transform: translateY(3px) rotate(8deg);
|
|
}
|
|
|
|
.ops-state-success .ops-state-eye::after {
|
|
display: none;
|
|
}
|
|
|
|
.ops-state-error .ops-state-face {
|
|
box-shadow:
|
|
0 8px 30px rgba(57, 19, 19, 0.32),
|
|
inset 0 0 0 1px rgba(255, 155, 155, 0.32);
|
|
}
|
|
|
|
.ops-state-error .ops-state-eye {
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 0;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ops-state-error .ops-state-eye::after,
|
|
.ops-state-error .ops-state-eye::before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
width: 18px;
|
|
height: 3px;
|
|
border-radius: 999px;
|
|
background: #ff9b9b;
|
|
}
|
|
|
|
.ops-state-error .ops-state-eye::after {
|
|
transform: translate(-50%, -50%) rotate(45deg);
|
|
}
|
|
|
|
.ops-state-error .ops-state-eye::before {
|
|
transform: translate(-50%, -50%) rotate(-45deg);
|
|
}
|
|
|
|
.ops-state-error .ops-state-face,
|
|
.ops-state-stopped .ops-state-face,
|
|
.ops-state-exited .ops-state-face {
|
|
filter: saturate(0.75);
|
|
}
|
|
|
|
.ops-state-stopped .ops-state-eye,
|
|
.ops-state-exited .ops-state-eye {
|
|
width: 24px;
|
|
height: 3px;
|
|
border: 0;
|
|
background: color-mix(in oklab, var(--muted) 68%, #9fb4dc 32%);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.ops-state-stopped .ops-state-eye::after,
|
|
.ops-state-exited .ops-state-eye::after {
|
|
display: none;
|
|
}
|
|
|
|
.ops-state-unknown .ops-state-eye,
|
|
.ops-state-info .ops-state-eye {
|
|
animation: none;
|
|
}
|
|
|
|
@keyframes ops-state-breathe {
|
|
0%, 100% { transform: scale(1); }
|
|
50% { transform: scale(1.05); }
|
|
}
|
|
|
|
@keyframes ops-eye-scan {
|
|
0%, 100% { transform: translate(-50%, -50%) translateX(0); }
|
|
30% { transform: translate(-50%, -50%) translateX(-2px); }
|
|
65% { transform: translate(-50%, -50%) translateX(2px); }
|
|
}
|
|
|
|
@keyframes ops-eye-scan-fast {
|
|
0%, 100% { transform: translate(-50%, -50%) translateX(0); }
|
|
50% { transform: translate(-50%, -50%) translateX(2px); }
|
|
}
|
|
|
|
@keyframes ops-state-orbit {
|
|
0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
|
|
100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
|
|
}
|
|
|
|
@keyframes ops-tool-bob {
|
|
0%, 100% { transform: rotate(0deg); }
|
|
50% { transform: rotate(-15deg) translateY(-1px); }
|
|
}
|
|
|
|
.ops-cron-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.ops-skills-list-scroll {
|
|
max-height: min(56vh, 520px);
|
|
overflow: auto;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.ops-modal-scrollable {
|
|
max-height: min(92vh, 860px);
|
|
overflow: auto;
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
.ops-config-modal {
|
|
min-height: clamp(480px, 68vh, 760px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.ops-config-list-scroll {
|
|
min-height: clamp(240px, 38vh, 380px);
|
|
max-height: min(56vh, 600px);
|
|
overflow: auto;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.ops-config-card-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
}
|
|
|
|
.ops-config-card-main {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 2px;
|
|
}
|
|
|
|
.ops-config-card-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 6px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ops-config-collapsed-meta {
|
|
font-size: 12px;
|
|
color: var(--muted);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 520px;
|
|
}
|
|
|
|
.ops-config-new-card {
|
|
border-color: color-mix(in oklab, var(--brand) 56%, var(--line) 44%);
|
|
background:
|
|
linear-gradient(180deg, color-mix(in oklab, var(--brand-soft) 22%, var(--panel) 78%), color-mix(in oklab, var(--panel-soft) 82%, transparent)),
|
|
var(--panel);
|
|
box-shadow:
|
|
inset 0 0 0 1px color-mix(in oklab, var(--brand) 12%, transparent),
|
|
0 10px 28px color-mix(in oklab, var(--brand-soft) 14%, transparent);
|
|
}
|
|
|
|
.ops-plain-icon-btn {
|
|
width: 28px;
|
|
height: 28px;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: var(--muted);
|
|
border-radius: 8px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ops-plain-icon-btn:hover {
|
|
background: color-mix(in oklab, var(--brand-soft) 22%, transparent);
|
|
color: var(--text);
|
|
}
|
|
|
|
.ops-plain-icon-btn:disabled {
|
|
opacity: 0.45;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.ops-topic-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 10px;
|
|
margin-top: 8px;
|
|
align-items: start;
|
|
}
|
|
|
|
.ops-config-field {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-config-field-full {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.ops-config-footer {
|
|
position: sticky;
|
|
bottom: 0;
|
|
background: var(--panel);
|
|
border-top: 1px solid color-mix(in oklab, var(--line) 78%, transparent);
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.ops-topic-create-menu-wrap {
|
|
position: relative;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.ops-skill-add-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
padding-top: 10px;
|
|
border-top: 1px solid color-mix(in oklab, var(--line) 82%, transparent);
|
|
}
|
|
|
|
.ops-skill-add-hint {
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.ops-skill-create-trigger {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ops-skill-create-trigger svg {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.ops-topic-create-menu {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: calc(100% + 8px);
|
|
z-index: 40;
|
|
min-width: 220px;
|
|
padding: 6px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
background: var(--panel);
|
|
box-shadow: 0 14px 32px rgba(9, 16, 31, 0.28);
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.ops-topic-create-menu-item {
|
|
border: 0;
|
|
background: transparent;
|
|
color: var(--text);
|
|
border-radius: 8px;
|
|
text-align: left;
|
|
padding: 8px 10px;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ops-topic-create-menu-item:hover {
|
|
background: color-mix(in oklab, var(--brand-soft) 22%, transparent);
|
|
}
|
|
|
|
@media (max-width: 920px) {
|
|
.ops-config-modal {
|
|
min-height: clamp(420px, 62vh, 640px);
|
|
}
|
|
|
|
.ops-config-list-scroll {
|
|
min-height: 220px;
|
|
}
|
|
|
|
.ops-topic-grid {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.ops-config-card-actions {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.ops-config-collapsed-meta {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.ops-skill-add-bar {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.ops-skill-create-trigger {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.ops-config-footer {
|
|
position: static;
|
|
border-top: 0;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.ops-cron-list-scroll {
|
|
max-height: min(58vh, 560px);
|
|
overflow: auto;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.ops-cron-item {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 8px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
background: color-mix(in oklab, var(--panel-soft) 82%, transparent);
|
|
padding: 8px;
|
|
}
|
|
|
|
.ops-cron-main {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.ops-cron-name {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
color: var(--text);
|
|
}
|
|
|
|
.ops-cron-meta {
|
|
font-size: 12px;
|
|
color: var(--muted);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ops-cron-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-runtime-row {
|
|
display: grid;
|
|
grid-template-columns: 90px 1fr;
|
|
gap: 8px;
|
|
align-items: start;
|
|
color: var(--text);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.ops-runtime-row span {
|
|
color: var(--subtitle);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.ops-runtime-action-inline {
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 6px;
|
|
}
|
|
|
|
.ops-runtime-action-text {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 3;
|
|
-webkit-box-orient: vertical;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
overflow-wrap: anywhere;
|
|
line-height: 1.54;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.ops-runtime-expand-btn {
|
|
border: 1px solid color-mix(in oklab, var(--brand) 56%, var(--line) 44%);
|
|
background: color-mix(in oklab, var(--panel) 76%, var(--brand-soft) 24%);
|
|
color: var(--text);
|
|
border-radius: 999px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
width: 22px;
|
|
height: 22px;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.ops-preview {
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
padding: 8px 10px;
|
|
background: var(--panel);
|
|
white-space: pre-wrap;
|
|
line-height: 1.5;
|
|
max-height: 140px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.ops-event-list {
|
|
display: grid;
|
|
gap: 8px;
|
|
max-height: 240px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.ops-event-item {
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
padding: 8px;
|
|
display: grid;
|
|
grid-template-columns: 86px 1fr auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
background: var(--panel);
|
|
}
|
|
|
|
.ops-event-state {
|
|
font-size: 11px;
|
|
font-weight: 800;
|
|
border-radius: 999px;
|
|
border: 1px solid;
|
|
padding: 2px 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.ops-event-state.thinking {
|
|
color: #61a0ff;
|
|
border-color: #5c88d8;
|
|
background: rgba(95, 146, 229, 0.15);
|
|
}
|
|
|
|
.ops-event-state.tool_call {
|
|
color: #4fd1b0;
|
|
border-color: #3ca98f;
|
|
background: rgba(60, 169, 143, 0.16);
|
|
}
|
|
|
|
.ops-event-state.success {
|
|
color: #4fc790;
|
|
border-color: #2ca476;
|
|
background: rgba(44, 164, 118, 0.16);
|
|
}
|
|
|
|
.ops-event-state.error {
|
|
color: #e56a6a;
|
|
border-color: #cf5555;
|
|
background: rgba(209, 75, 75, 0.2);
|
|
}
|
|
|
|
.ops-event-state.info {
|
|
color: #7ea3e6;
|
|
border-color: #5e7fb8;
|
|
background: rgba(94, 127, 184, 0.16);
|
|
}
|
|
|
|
.ops-event-text {
|
|
font-size: 12px;
|
|
color: var(--text);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.ops-event-time {
|
|
font-size: 11px;
|
|
color: var(--subtitle);
|
|
}
|
|
|
|
.ops-empty-inline {
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
padding: 4px 2px;
|
|
}
|
|
|
|
.ops-action-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 8px;
|
|
}
|
|
|
|
.workspace-panel {
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
min-width: 0;
|
|
min-height: 340px;
|
|
display: grid;
|
|
grid-template-rows: 1fr auto;
|
|
}
|
|
|
|
.workspace-toolbar {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: stretch;
|
|
min-width: 0;
|
|
}
|
|
|
|
.workspace-path-wrap {
|
|
min-width: 0;
|
|
flex: 1 1 auto;
|
|
border: 1px solid color-mix(in oklab, var(--line) 78%, transparent);
|
|
border-radius: 10px;
|
|
background: color-mix(in oklab, var(--panel) 58%, var(--panel-soft) 42%);
|
|
padding: 8px 10px;
|
|
}
|
|
|
|
.workspace-toolbar-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-left: auto;
|
|
min-width: 0;
|
|
flex: 0 1 auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.workspace-refresh-icon-btn {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--line);
|
|
background: var(--panel-soft);
|
|
color: var(--icon);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
|
|
}
|
|
|
|
.workspace-refresh-icon-btn:hover {
|
|
border-color: color-mix(in oklab, var(--brand) 60%, var(--line) 40%);
|
|
background: color-mix(in oklab, var(--brand-soft) 42%, var(--panel-soft) 58%);
|
|
}
|
|
|
|
.workspace-refresh-icon-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.workspace-auto-switch {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: var(--subtitle);
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
user-select: none;
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.workspace-auto-switch-label {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.workspace-auto-switch input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.workspace-auto-switch-track {
|
|
position: relative;
|
|
width: 34px;
|
|
height: 20px;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--line);
|
|
background: color-mix(in oklab, var(--panel-soft) 85%, var(--panel) 15%);
|
|
transition: background 0.2s ease, border-color 0.2s ease;
|
|
}
|
|
|
|
.workspace-auto-switch-track::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 2px;
|
|
top: 2px;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 999px;
|
|
background: color-mix(in oklab, var(--text) 75%, #fff 25%);
|
|
transition: transform 0.2s ease, background 0.2s ease;
|
|
}
|
|
|
|
.workspace-auto-switch input:checked + .workspace-auto-switch-track {
|
|
border-color: color-mix(in oklab, var(--brand) 70%, var(--line) 30%);
|
|
background: color-mix(in oklab, var(--brand) 42%, var(--panel-soft) 58%);
|
|
}
|
|
|
|
.workspace-auto-switch input:checked + .workspace-auto-switch-track::after {
|
|
transform: translateX(14px);
|
|
background: #fff;
|
|
}
|
|
|
|
.workspace-path {
|
|
font-size: 11px;
|
|
color: var(--text);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
min-width: 0;
|
|
}
|
|
|
|
.workspace-search-toolbar {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.workspace-list {
|
|
background: var(--panel);
|
|
overflow: auto;
|
|
padding: 8px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.workspace-entry {
|
|
width: 100%;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
background: color-mix(in oklab, var(--panel-soft) 70%, transparent);
|
|
color: var(--text);
|
|
text-align: left;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
margin-bottom: 6px;
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.workspace-entry .workspace-entry-name {
|
|
flex: 1;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.workspace-entry .workspace-entry-meta {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
margin-top: 1px;
|
|
flex: 0 0 auto;
|
|
max-width: 84px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.workspace-entry.dir {
|
|
border-color: color-mix(in oklab, var(--line) 80%, transparent);
|
|
}
|
|
|
|
.workspace-entry.nav-up {
|
|
border-style: dashed;
|
|
}
|
|
|
|
.workspace-entry.file {
|
|
cursor: pointer;
|
|
border-color: color-mix(in oklab, var(--line) 80%, transparent);
|
|
}
|
|
|
|
.workspace-entry:hover {
|
|
border-color: color-mix(in oklab, var(--brand) 65%, var(--line) 35%);
|
|
background: color-mix(in oklab, var(--brand-soft) 45%, transparent);
|
|
}
|
|
|
|
.workspace-entry.disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.workspace-hover-panel {
|
|
position: fixed;
|
|
z-index: 140;
|
|
width: min(420px, calc(100vw - 16px));
|
|
border: 1px solid color-mix(in oklab, var(--line) 70%, var(--brand) 30%);
|
|
border-radius: 10px;
|
|
background: color-mix(in oklab, var(--panel) 90%, #000 10%);
|
|
box-shadow: 0 12px 26px rgba(7, 13, 26, 0.28);
|
|
padding: 8px 10px;
|
|
display: grid;
|
|
gap: 5px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.workspace-hover-panel.is-above {
|
|
transform: translateY(-100%);
|
|
}
|
|
|
|
.workspace-entry-info-row {
|
|
display: grid;
|
|
grid-template-columns: 60px 1fr;
|
|
gap: 8px;
|
|
align-items: start;
|
|
}
|
|
|
|
.workspace-entry-info-label {
|
|
color: var(--subtitle);
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.workspace-entry-info-value {
|
|
color: var(--text);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
line-height: 1.35;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.workspace-entry-info-path {
|
|
min-width: 0;
|
|
word-break: normal;
|
|
}
|
|
|
|
.workspace-entry-info-path .workspace-path-segments {
|
|
display: flex;
|
|
width: 100%;
|
|
overflow: visible;
|
|
}
|
|
|
|
.workspace-hint {
|
|
background: var(--panel-soft);
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
border-bottom: 1px solid var(--line);
|
|
padding: 7px 9px;
|
|
}
|
|
|
|
.modal-preview {
|
|
width: min(1080px, 95vw);
|
|
height: min(860px, 92vh);
|
|
max-height: 92vh;
|
|
}
|
|
|
|
.modal-preview-fullscreen {
|
|
width: 100vw;
|
|
max-width: 100vw;
|
|
height: 100vh;
|
|
max-height: 100vh;
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.modal-preview-fullscreen .workspace-preview-body {
|
|
min-height: calc(100vh - 170px);
|
|
max-height: calc(100vh - 170px);
|
|
}
|
|
|
|
.modal-title-row.workspace-preview-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
position: relative;
|
|
padding-right: 72px;
|
|
min-height: 28px;
|
|
}
|
|
|
|
.workspace-preview-header-text {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 4px;
|
|
}
|
|
|
|
.workspace-preview-path-row {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.workspace-preview-path-row > span:first-child {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: normal;
|
|
}
|
|
|
|
.workspace-path-segments {
|
|
min-width: 0;
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
row-gap: 2px;
|
|
column-gap: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.workspace-path-segment {
|
|
min-width: 0;
|
|
max-width: 100%;
|
|
overflow-wrap: anywhere;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.workspace-path-separator {
|
|
opacity: 0.6;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.workspace-preview-copy-name {
|
|
flex: 0 0 auto;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 18px;
|
|
height: 18px;
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent;
|
|
color: var(--muted);
|
|
cursor: pointer;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.workspace-preview-copy-name:hover {
|
|
color: var(--text);
|
|
background: transparent;
|
|
}
|
|
|
|
.workspace-preview-copy-name:focus-visible {
|
|
outline: 2px solid color-mix(in oklab, var(--brand) 40%, transparent);
|
|
outline-offset: 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.workspace-preview-header-actions {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
flex: 0 0 auto;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.workspace-preview-body {
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
background: color-mix(in oklab, var(--panel-soft) 76%, var(--panel) 24%);
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.workspace-preview-body.is-editing {
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.workspace-preview-body.media {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 18px;
|
|
}
|
|
|
|
.workspace-preview-embed {
|
|
width: 100%;
|
|
min-height: 68vh;
|
|
border: 0;
|
|
background: #fff;
|
|
}
|
|
|
|
.workspace-preview-body pre {
|
|
margin: 0;
|
|
padding: 12px;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
line-height: 1.56;
|
|
color: var(--text);
|
|
font-size: 13px;
|
|
font-family: 'SF Mono', Menlo, Consolas, monospace;
|
|
}
|
|
|
|
.workspace-preview-body.markdown pre {
|
|
margin: 0;
|
|
}
|
|
|
|
.workspace-preview-editor {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 100%;
|
|
max-height: none;
|
|
padding: 14px 16px;
|
|
border: 0;
|
|
border-radius: 10px;
|
|
resize: vertical;
|
|
background: transparent;
|
|
color: var(--text);
|
|
line-height: 1.68;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
}
|
|
|
|
.workspace-preview-editor:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.workspace-preview-editor-shell {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 0;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.workspace-preview-image {
|
|
display: block;
|
|
max-width: 100%;
|
|
max-height: 70vh;
|
|
width: auto;
|
|
height: auto;
|
|
object-fit: contain;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.workspace-markdown {
|
|
padding: 12px 14px;
|
|
color: var(--text);
|
|
line-height: 1.72;
|
|
font-size: 14px;
|
|
font-family: 'SF Pro Display', 'PingFang SC', 'Microsoft YaHei', sans-serif;
|
|
}
|
|
|
|
.workspace-markdown > *:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.workspace-markdown > *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.workspace-markdown h1,
|
|
.workspace-markdown h2,
|
|
.workspace-markdown h3,
|
|
.workspace-markdown h4 {
|
|
margin: 16px 0 8px;
|
|
color: var(--text);
|
|
font-weight: 800;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.workspace-markdown h1 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.workspace-markdown h2 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.workspace-markdown h3 {
|
|
font-size: 17px;
|
|
}
|
|
|
|
.workspace-markdown p {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.workspace-markdown ul,
|
|
.workspace-markdown ol {
|
|
margin: 8px 0 8px 20px;
|
|
padding: 0;
|
|
}
|
|
|
|
.workspace-markdown li {
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.workspace-markdown blockquote {
|
|
margin: 10px 0;
|
|
padding: 8px 12px;
|
|
border-left: 3px solid color-mix(in oklab, var(--brand) 50%, var(--line) 50%);
|
|
background: color-mix(in oklab, var(--panel-soft) 76%, var(--panel) 24%);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.workspace-markdown hr {
|
|
border: 0;
|
|
border-top: 1px solid var(--line);
|
|
margin: 14px 0;
|
|
}
|
|
|
|
.workspace-markdown code {
|
|
font-family: 'SF Mono', Menlo, Consolas, monospace;
|
|
background: color-mix(in oklab, var(--panel-soft) 76%, var(--panel) 24%);
|
|
border: 1px solid var(--line);
|
|
border-radius: 6px;
|
|
padding: 1px 6px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.workspace-markdown pre {
|
|
margin: 10px 0;
|
|
padding: 10px 12px;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
line-height: 1.55;
|
|
background: color-mix(in oklab, var(--panel-soft) 70%, var(--panel) 30%);
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.workspace-markdown pre code {
|
|
border: none;
|
|
background: transparent;
|
|
padding: 0;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.workspace-markdown table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 10px 0;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.workspace-markdown th,
|
|
.workspace-markdown td {
|
|
border: 1px solid var(--line);
|
|
padding: 6px 8px;
|
|
text-align: left;
|
|
}
|
|
|
|
.workspace-markdown th {
|
|
background: color-mix(in oklab, var(--panel-soft) 74%, var(--panel) 26%);
|
|
}
|
|
|
|
.workspace-markdown a {
|
|
color: color-mix(in oklab, var(--brand) 80%, #5fa6ff 20%);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.workspace-preview-meta {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.app-shell[data-theme='dark'] .ops-chat-bubble.assistant {
|
|
background: #112850;
|
|
}
|
|
|
|
.app-shell[data-theme='dark'] .ops-chat-bubble.user {
|
|
background: #0f2f35;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-chat-bubble.assistant {
|
|
--bubble-bg: #eaf1ff;
|
|
--bubble-border: #a9c1ee;
|
|
background: var(--bubble-bg);
|
|
border-color: var(--bubble-border);
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-chat-bubble.user {
|
|
--bubble-bg: #e8f6f2;
|
|
--bubble-border: #9ccfc2;
|
|
background: var(--bubble-bg);
|
|
border-color: var(--bubble-border);
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-avatar.bot {
|
|
background: #e6efff;
|
|
border-color: #a5bfe8;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-avatar.user {
|
|
background: #edf4ff;
|
|
border-color: #b1c7ea;
|
|
color: #274a7d;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-chat-scroll,
|
|
.app-shell[data-theme='light'] .ops-chat-head,
|
|
.app-shell[data-theme='light'] .ops-composer,
|
|
.app-shell[data-theme='light'] .ops-bot-card,
|
|
.app-shell[data-theme='light'] .ops-runtime-card {
|
|
background: #f7fbff;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-bot-card.state-running {
|
|
background: linear-gradient(145deg, #edfdf6, #f7fffb);
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-bot-card.state-stopped {
|
|
background: linear-gradient(145deg, #fdf0f2, #fff7f8);
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-bot-card.state-disabled {
|
|
background: linear-gradient(145deg, #eff2f6, #f8fafc);
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-bot-card.is-active {
|
|
border-color: #3f74df;
|
|
box-shadow:
|
|
0 0 0 2px rgba(63, 116, 223, 0.45),
|
|
0 16px 32px rgba(63, 116, 223, 0.26),
|
|
inset 0 0 0 1px rgba(63, 116, 223, 0.78);
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .ops-preview,
|
|
.app-shell[data-theme='light'] .ops-status-pill {
|
|
background: #ffffff;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .workspace-list {
|
|
background: #ffffff;
|
|
}
|
|
|
|
.app-shell[data-theme='light'] .workspace-hint,
|
|
.app-shell[data-theme='light'] .workspace-path,
|
|
.app-shell[data-theme='light'] .workspace-path-wrap {
|
|
background: #f7fbff;
|
|
}
|
|
|
|
@media (max-width: 1160px) {
|
|
.ops-chat-scroll {
|
|
min-height: 320px;
|
|
max-height: 55vh;
|
|
}
|
|
|
|
.ops-chat-bubble {
|
|
max-width: 96%;
|
|
}
|
|
|
|
.ops-composer {
|
|
padding: 8px;
|
|
}
|
|
|
|
.workspace-panel {
|
|
min-height: 280px;
|
|
grid-template-rows: 1fr auto;
|
|
}
|
|
|
|
.workspace-toolbar {
|
|
gap: 6px;
|
|
}
|
|
|
|
.workspace-path-wrap {
|
|
flex: 1;
|
|
}
|
|
|
|
.ops-runtime-state-card {
|
|
min-height: 0;
|
|
}
|
|
|
|
.ops-runtime-state-card:not(.is-visual) {
|
|
min-height: 170px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual {
|
|
min-height: 170px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-stage {
|
|
min-height: 100%;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-face {
|
|
width: 172px;
|
|
height: 114px;
|
|
gap: 28px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-eye {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.ops-runtime-state-card.is-visual .ops-state-idle .ops-state-eye {
|
|
width: 30px;
|
|
height: 5px;
|
|
}
|
|
}
|