mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-06-28 08:49:57 +02:00
Add files via upload
This commit is contained in:
+132
-1
@@ -11153,6 +11153,124 @@ tr.mcp-stats-tool-row[data-tool-name]:focus-visible {
|
||||
padding: 0 8px;
|
||||
}
|
||||
|
||||
.section-header-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.conversation-sort-dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.conversation-sort-btn {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.conversation-sort-btn:hover,
|
||||
.conversation-sort-btn[aria-expanded="true"] {
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.conversation-sort-menu {
|
||||
position: absolute;
|
||||
top: calc(100% + 4px);
|
||||
right: 0;
|
||||
z-index: 200;
|
||||
min-width: 156px;
|
||||
padding: 4px;
|
||||
background: var(--bg-primary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.conversation-sort-option {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
padding: 7px 8px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--text-primary);
|
||||
font-size: 0.8125rem;
|
||||
cursor: pointer;
|
||||
border-radius: 6px;
|
||||
text-align: left;
|
||||
transition: background 0.15s ease, color 0.15s ease;
|
||||
}
|
||||
|
||||
.conversation-sort-option:hover {
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.conversation-sort-option.is-selected {
|
||||
background: rgba(0, 102, 255, 0.08);
|
||||
color: var(--accent-color);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.conversation-sort-option.is-selected:hover {
|
||||
background: rgba(0, 102, 255, 0.12);
|
||||
}
|
||||
|
||||
.conversation-sort-option-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
border-radius: 7px;
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-muted);
|
||||
transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
|
||||
}
|
||||
|
||||
.conversation-sort-option:hover .conversation-sort-option-icon {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.conversation-sort-option.is-selected .conversation-sort-option-icon {
|
||||
background: rgba(0, 102, 255, 0.12);
|
||||
color: var(--accent-color);
|
||||
box-shadow: inset 0 0 0 1px rgba(0, 102, 255, 0.16);
|
||||
}
|
||||
|
||||
.conversation-sort-option-label {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.conversation-sort-option-check {
|
||||
flex-shrink: 0;
|
||||
width: 14px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
color: var(--accent-color);
|
||||
opacity: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.conversation-sort-option.is-selected .conversation-sort-option-check {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 0.8125rem;
|
||||
font-weight: 600;
|
||||
@@ -13818,10 +13936,23 @@ tr.mcp-stats-tool-row[data-tool-name]:focus-visible {
|
||||
}
|
||||
|
||||
.batch-task-header .batch-task-edit-btn {
|
||||
/* 仅把“编辑”(首个操作按钮)推到最右,避免多个按钮都 margin-left:auto 导致挤压/错位 */
|
||||
/* 仅把「编辑」(首个操作按钮)推到最右,避免多个按钮都 margin-left:auto 导致挤压/错位 */
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.batch-task-header .batch-task-edit-btn--push {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.batch-task-header .batch-task-run-btn {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.batch-task-header .batch-task-run-btn:disabled {
|
||||
opacity: 0.55;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.batch-task-header .batch-task-delete-btn {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user