大量优化修改扣积分规则
This commit is contained in:
@@ -1760,28 +1760,41 @@
|
||||
.image-workbench .ic-param.open .ic-param-btn svg { transform: rotate(180deg); }
|
||||
.image-workbench .ic-param-menu {
|
||||
position: absolute; bottom: calc(100% + 6px); left: -2px;
|
||||
min-width: 140px;
|
||||
min-width: max(100%, 180px);
|
||||
width: max-content;
|
||||
max-width: min(280px, calc(100vw - 24px));
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border-faint);
|
||||
border-radius: var(--r-md);
|
||||
box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
|
||||
padding: 4px;
|
||||
border: 1px solid rgba(34, 42, 54, 0.10);
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 12px 30px rgba(20, 27, 38, 0.12);
|
||||
padding: 6px;
|
||||
display: none;
|
||||
z-index: 30;
|
||||
z-index: 40;
|
||||
}
|
||||
.image-workbench .ic-param.open .ic-param-menu { display: block; }
|
||||
.image-workbench .ic-param.open .ic-param-menu { display: grid; gap: 3px; }
|
||||
.image-workbench .ic-param-menu .mi {
|
||||
width: 100%;
|
||||
min-height: 36px;
|
||||
display: flex; align-items: center; gap: 8px;
|
||||
padding: 7px 10px;
|
||||
border: 0; border-radius: var(--r-sm);
|
||||
border: 0; border-radius: 8px;
|
||||
background: transparent;
|
||||
font-size: 13px; color: var(--accent-black);
|
||||
font-family: inherit; text-align: left; cursor: pointer;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.image-workbench .ic-param-menu .mi:hover { background: var(--black-alpha-4); }
|
||||
.image-workbench .ic-param-menu .mi.selected {
|
||||
background: var(--heat-8);
|
||||
color: var(--heat);
|
||||
font-weight: 600;
|
||||
}
|
||||
.image-workbench .ic-param-menu .mi .mi-check {
|
||||
margin-left: auto;
|
||||
flex: 0 0 auto;
|
||||
visibility: hidden;
|
||||
color: var(--heat);
|
||||
}
|
||||
.image-workbench .ic-param-menu .mi:hover { background: var(--background-lighter); }
|
||||
.image-workbench .ic-param-menu .mi.selected { color: var(--heat); font-weight: 600; }
|
||||
.image-workbench .ic-param-menu .mi .mi-check { margin-left: auto; visibility: hidden; color: var(--heat); }
|
||||
.image-workbench .ic-param-menu .mi.selected .mi-check { visibility: visible; }
|
||||
|
||||
/* ============================================================
|
||||
@@ -3040,7 +3053,9 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 14px;
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.yz-image .new-conversation {
|
||||
height: 46px;
|
||||
@@ -3070,24 +3085,38 @@
|
||||
gap: 4px;
|
||||
}
|
||||
.yz-image .history-item {
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 10px;
|
||||
padding: 10px 12px;
|
||||
border-radius: 10px;
|
||||
color: var(--text);
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
}
|
||||
.yz-image .history-item:hover { background: rgba(34, 42, 54, 0.045); }
|
||||
.yz-image .history-item.active { background: rgba(0, 47, 167, 0.075); }
|
||||
.yz-image .history-item .nm {
|
||||
min-width: 0;
|
||||
flex: 1;
|
||||
flex: 1 1 auto;
|
||||
overflow: hidden;
|
||||
font-size: 13px;
|
||||
line-height: 1.35;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.yz-image .history-item .ic-conv-acts { display: flex; gap: 2px; }
|
||||
.yz-image .history-item.active .nm { color: var(--klein); font-weight: 600; }
|
||||
.yz-image .history-item .ic-conv-acts {
|
||||
flex: 0 0 auto;
|
||||
display: none;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
}
|
||||
.yz-image .history-item:hover .ic-conv-acts,
|
||||
.yz-image .history-item:focus-within .ic-conv-acts { display: inline-flex; }
|
||||
.yz-image .history-empty {
|
||||
margin: 6px 4px;
|
||||
color: var(--muted);
|
||||
@@ -3419,7 +3448,12 @@
|
||||
color: var(--klein);
|
||||
background: rgba(0, 47, 167, 0.075);
|
||||
}
|
||||
.yz-image .ic-param-menu .mi.selected { color: var(--klein); }
|
||||
.yz-image .ic-param-menu .mi.selected {
|
||||
background: rgba(0, 47, 167, 0.08);
|
||||
color: var(--klein);
|
||||
}
|
||||
.yz-image .ic-param-menu .mi.selected .mi-check { color: var(--klein); }
|
||||
|
||||
.yz-image .image-reference-thumbs button {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
||||
Reference in New Issue
Block a user