优化只能创作里的图片创作
This commit is contained in:
@@ -188,6 +188,65 @@
|
||||
display: none;
|
||||
}
|
||||
|
||||
.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;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.omni-reply-guide-options button {
|
||||
min-height: 30px;
|
||||
padding: 0 12px;
|
||||
border: 1px solid var(--border-faint);
|
||||
border-radius: var(--r-md);
|
||||
color: var(--accent-black);
|
||||
background: var(--surface);
|
||||
font: inherit;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
|
||||
}
|
||||
|
||||
.omni-reply-guide-options button:hover:not(:disabled) {
|
||||
border-color: var(--heat-40);
|
||||
color: var(--heat);
|
||||
background: var(--heat-12);
|
||||
}
|
||||
|
||||
.omni-reply-guide-options button.primary {
|
||||
border-color: var(--heat-20);
|
||||
color: var(--heat);
|
||||
background: var(--heat-12);
|
||||
}
|
||||
|
||||
.omni-reply-guide-options button:disabled {
|
||||
color: var(--black-alpha-48);
|
||||
background: var(--black-alpha-4);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
|
||||
.omni-chat-row.is-user .omni-chat-bubble {
|
||||
align-items: flex-end;
|
||||
@@ -1481,7 +1540,10 @@
|
||||
position: relative;
|
||||
/* 不要压过 sticky composer(z-index:3);下拉菜单自身另有更高 z-index */
|
||||
z-index: 1;
|
||||
width: min(760px, 100%);
|
||||
/* 和其余助手卡片一样预留左侧头像对齐位。
|
||||
资源面板打开时会话栏会收窄,不能再用 100% 后额外叠加 44px 左边距。 */
|
||||
box-sizing: border-box;
|
||||
width: min(760px, calc(100% - 44px));
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
|
||||
Reference in New Issue
Block a user