mirror of https://github.com/openclaw/openclaw.git
fix(ui): constrain cron job entries within list boundary
This commit is contained in:
parent
b83c5fb8e0
commit
69cc35c9bd
|
|
@ -920,6 +920,7 @@
|
|||
.cron-workspace-main {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.cron-workspace-form {
|
||||
|
|
@ -1660,6 +1661,8 @@
|
|||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
letter-spacing: -0.015em;
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.cron-job {
|
||||
|
|
@ -1711,6 +1714,8 @@
|
|||
.cron-job-detail-value {
|
||||
font-size: 13px;
|
||||
line-height: 1.35;
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.cron-job-state {
|
||||
|
|
@ -1737,6 +1742,8 @@
|
|||
color: var(--text);
|
||||
font-size: 12px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.cron-job-status-pill {
|
||||
|
|
|
|||
Loading…
Reference in New Issue