修改全能创作
This commit is contained in:
@@ -190,28 +190,12 @@
|
||||
|
||||
.omni-reply-guide {
|
||||
margin-top: 8px;
|
||||
padding-top: 8px;
|
||||
border-top: 1px dashed var(--border-faint);
|
||||
}
|
||||
|
||||
.omni-reply-guide p {
|
||||
margin: 0 0 8px;
|
||||
color: var(--black-alpha-56);
|
||||
font-size: 12px;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.omni-reply-guide p > span {
|
||||
margin-right: 6px;
|
||||
color: var(--accent-black);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 11px;
|
||||
letter-spacing: .04em;
|
||||
}
|
||||
|
||||
.omni-reply-guide-options {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
@@ -247,6 +231,29 @@
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.omni-reply-custom-input {
|
||||
display: flex;
|
||||
flex: 1 1 220px;
|
||||
gap: 6px;
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.omni-reply-custom-input .input {
|
||||
min-width: 0;
|
||||
height: 30px;
|
||||
padding: 0 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.omni-reply-custom-input button {
|
||||
flex: 0 0 30px;
|
||||
width: 30px;
|
||||
padding: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
|
||||
.omni-chat-row.is-user .omni-chat-bubble {
|
||||
align-items: flex-end;
|
||||
@@ -1261,10 +1268,24 @@
|
||||
|
||||
.omni-strategy-grid,
|
||||
.omni-plan-points,
|
||||
.omni-plan-timeline {
|
||||
.omni-plan-timeline,
|
||||
.omni-direction-list {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.omni-direction-card {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.omni-direction-custom {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.omni-direction-custom button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.omni-plan-summary {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
@@ -1290,6 +1311,144 @@
|
||||
padding: 14px 18px 16px;
|
||||
}
|
||||
|
||||
/* 剧情反转预设的方向选择:三个完整方向直接平铺,避免只留一句「我准备了三个方向」。 */
|
||||
.omni-direction-card {
|
||||
box-sizing: border-box;
|
||||
width: min(760px, calc(100% - 44px));
|
||||
margin: 0 0 24px 44px;
|
||||
overflow: hidden;
|
||||
border-radius: 8px;
|
||||
background: var(--surface);
|
||||
box-shadow: inset 0 0 0 1px var(--border-faint);
|
||||
}
|
||||
|
||||
.omni-direction-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: 62px;
|
||||
padding: 12px 16px;
|
||||
box-shadow: inset 0 -1px 0 var(--border-faint);
|
||||
}
|
||||
|
||||
.omni-direction-head > div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.omni-direction-head strong {
|
||||
color: var(--accent-black);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.omni-direction-head span {
|
||||
color: var(--black-alpha-56);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.omni-direction-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
padding: 14px 16px;
|
||||
}
|
||||
|
||||
.omni-direction-list > button {
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 7px;
|
||||
padding: 12px;
|
||||
border: 0;
|
||||
border-radius: 8px;
|
||||
background: var(--background-base);
|
||||
box-shadow: inset 0 0 0 1px var(--border-faint);
|
||||
color: var(--accent-black);
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
transition: background 200ms ease, box-shadow 200ms ease, transform 100ms ease;
|
||||
}
|
||||
|
||||
.omni-direction-list > button:hover:not(:disabled) {
|
||||
background: var(--background-lighter);
|
||||
box-shadow: inset 0 0 0 1px var(--black-alpha-24);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.omni-direction-list > button:focus-visible {
|
||||
outline: none;
|
||||
box-shadow: inset 0 0 0 1px var(--heat), 0 0 0 2px var(--heat-40);
|
||||
}
|
||||
|
||||
.omni-direction-list > button.is-selected {
|
||||
background: var(--heat-12);
|
||||
box-shadow: inset 0 0 0 1px var(--heat-40);
|
||||
}
|
||||
|
||||
.omni-direction-list > button:disabled {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.omni-direction-index,
|
||||
.omni-direction-list small {
|
||||
color: var(--black-alpha-56);
|
||||
font-size: 11px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.omni-direction-list > button > strong {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.omni-direction-list p {
|
||||
margin: 0;
|
||||
color: var(--black-alpha-64);
|
||||
font-size: 12px;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.omni-direction-list p b {
|
||||
display: block;
|
||||
margin-bottom: 2px;
|
||||
color: var(--accent-black);
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.omni-direction-custom {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
padding: 0 16px 16px;
|
||||
}
|
||||
|
||||
.omni-direction-custom .input {
|
||||
min-width: 0;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.omni-direction-custom button {
|
||||
height: 36px;
|
||||
flex: 0 0 auto;
|
||||
padding: 0 14px;
|
||||
border: 0;
|
||||
border-radius: 8px;
|
||||
background: var(--accent-black);
|
||||
color: var(--surface);
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.omni-direction-custom button:disabled {
|
||||
background: var(--black-alpha-12);
|
||||
color: var(--black-alpha-48);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.omni-elicit-field > label {
|
||||
display: block;
|
||||
margin-bottom: 9px;
|
||||
|
||||
Reference in New Issue
Block a user