Add files via upload

This commit is contained in:
公明
2026-07-01 14:27:05 +08:00
committed by GitHub
parent 4f7b21cb7e
commit 9964e13197
7 changed files with 638 additions and 218 deletions
+98 -5
View File
@@ -2257,18 +2257,80 @@ header {
left: 0;
right: 0;
z-index: 200;
max-height: 280px;
overflow-x: hidden;
overflow-y: auto;
padding: 4px;
max-height: 320px;
overflow: hidden;
padding: 0;
background: var(--bg-primary);
border: 1px solid var(--border-color);
border-radius: 8px;
box-shadow: var(--shadow-lg);
flex-direction: column;
}
.conversation-project-filter-ui.open .conversation-project-filter-dropdown {
display: block;
display: flex;
}
.conversation-project-filter-search {
flex-shrink: 0;
padding: 8px;
border-bottom: 1px solid var(--border-color);
background: var(--bg-primary);
}
.conversation-project-filter-search-input {
width: 100%;
padding: 6px 10px;
border: 1px solid var(--border-color);
border-radius: 6px;
font-size: 0.8125rem;
background: var(--bg-primary);
color: var(--text-primary);
font-family: inherit;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.conversation-project-filter-search-input:focus {
outline: none;
border-color: var(--accent-color);
box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}
.conversation-project-filter-search-input::placeholder {
color: var(--text-muted);
}
.conversation-project-filter-options {
flex: 1;
min-height: 0;
overflow-x: hidden;
overflow-y: auto;
padding: 4px;
}
.conversation-project-filter-empty {
padding: 10px 12px;
text-align: center;
color: var(--text-muted);
font-size: 0.8125rem;
line-height: 1.4;
}
.conversation-project-filter-hint,
.conversation-project-filter-status {
padding: 8px 12px;
text-align: center;
color: var(--text-muted);
font-size: 0.75rem;
line-height: 1.4;
}
.conversation-project-filter-status {
color: var(--text-secondary);
}
.conversation-project-filter-option[hidden] {
display: none !important;
}
.conversation-project-filter-option {
@@ -26976,6 +27038,37 @@ body.app-modal-open {
min-height: 0;
width: 100%;
}
.chat-project-panel-search {
flex-shrink: 0;
padding: 0 0 8px;
width: 100%;
}
.chat-project-panel-search-input {
width: 100%;
padding: 7px 10px;
border: 1px solid var(--border-color);
border-radius: 6px;
font-size: 0.8125rem;
background: var(--bg-primary);
color: var(--text-primary);
font-family: inherit;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.chat-project-panel-search-input:focus {
outline: none;
border-color: var(--accent-color);
box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}
.chat-project-panel-search-input::placeholder {
color: var(--text-muted);
}
.chat-project-panel-hint {
padding: 10px 4px 4px;
font-size: 0.75rem;
color: var(--text-muted);
text-align: center;
line-height: 1.4;
}
.chat-project-panel .role-selection-list-main {
flex: 1;
min-height: 0;