qwen-code/packages/web-shell/client/components/messages/EnhancedMarkdownTable.module.css
jifeng 5b2d1369b5
fix(web-shell): refine markdown table interactions (#6500)
* fix(web-shell): refine markdown table interactions

* fix(web-shell): preserve active column when closing filters
2026-07-08 08:37:56 +00:00

545 lines
9.4 KiB
CSS

.tableShell {
position: relative;
max-width: 100%;
margin: 8px 0;
overflow: visible;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--card);
}
.toolbar {
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
padding: 6px 8px;
border-bottom: 1px solid var(--border);
background: var(--subtle-bg);
font-size: 12px;
}
.summary {
color: var(--foreground);
font-weight: 600;
}
.hint {
color: var(--muted-foreground);
}
.selection {
color: var(--agent-blue-500);
font-weight: 600;
}
.copyButton,
.secondaryButton,
.primaryButton {
padding: 3px 8px;
border: 1px solid var(--border);
border-radius: 4px;
color: var(--foreground);
font: inherit;
cursor: pointer;
}
.copyCheck {
margin-right: 4px;
}
.copyButton,
.secondaryButton {
background: var(--card);
}
.primaryButton {
border-color: var(--agent-blue-500);
background: var(--agent-blue-500);
color: var(--card);
}
.copyButton:hover,
.secondaryButton:hover {
background: var(--subtle-bg-strong);
}
.primaryButton:hover {
filter: brightness(1.08);
}
.scroller {
max-width: 100%;
max-height: min(60vh, 520px);
overflow: auto;
outline: none;
}
.scroller:focus-visible {
outline: 2px solid var(--agent-blue-500);
outline-offset: -2px;
}
.table {
--action-column-width: 72px;
width: max-content;
min-width: 100%;
border-collapse: separate;
border-spacing: 0;
font-size: 13px;
}
.headerCell,
.cell {
border-right: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.headerCell:last-child,
.cell:last-child {
border-right: none;
}
.headerCell {
position: sticky;
top: 0;
z-index: 3;
min-width: 120px;
max-width: 360px;
overflow: visible;
background: var(--card);
color: var(--foreground);
font-weight: 600;
text-align: left;
}
.frozenHeaderCell {
left: var(--action-column-width);
z-index: 5;
}
.headerControls {
display: flex;
align-items: stretch;
min-width: 0;
}
.headerButton {
display: flex;
min-width: 0;
flex: 1 1 auto;
gap: 8px;
align-items: center;
justify-content: space-between;
padding: 7px 8px;
border: none;
background: transparent;
color: inherit;
font: inherit;
text-align: left;
cursor: pointer;
}
.headerButton:hover,
.filterTrigger:hover {
background: var(--subtle-bg-strong);
}
.headerText {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.sortIcon {
flex: 0 0 auto;
color: var(--muted-foreground);
font-size: 11px;
}
.filterTrigger {
flex: 0 0 28px;
border: none;
border-left: 1px solid var(--border);
background: transparent;
color: var(--muted-foreground);
font: inherit;
cursor: pointer;
}
.activeHeaderCell {
background: color-mix(in srgb, var(--agent-blue-500) 8%, var(--card));
}
.reorderHandle {
flex: 0 0 0;
width: 0;
min-width: 0;
padding: 0;
overflow: hidden;
border: none;
border-left: 0 solid transparent;
background: transparent;
color: var(--muted-foreground);
font: inherit;
font-size: 12px;
cursor: grab;
opacity: 0;
pointer-events: none;
transition:
flex-basis 120ms ease,
width 120ms ease,
opacity 120ms ease,
border-color 120ms ease,
background 120ms ease;
}
.reorderHandleVisible,
.reorderHandle:focus-visible,
.reorderHandle:active {
flex-basis: 24px;
width: 24px;
border-left-width: 1px;
border-left-color: var(--border);
opacity: 1;
pointer-events: auto;
}
.reorderHandle:active {
cursor: grabbing;
}
.reorderHandle:hover,
.reorderHandle:focus-visible {
background: var(--subtle-bg-strong);
}
.resizeHandle {
position: absolute;
top: 0;
right: -3px;
z-index: 7;
width: 6px;
height: 100%;
padding: 0;
border: none;
background: transparent;
cursor: col-resize;
}
.resizeHandle:hover,
.resizeHandle:focus-visible {
background: color-mix(in srgb, var(--agent-blue-500) 45%, transparent);
outline: none;
}
.filterTriggerActive {
background: color-mix(in srgb, var(--agent-blue-500) 18%, transparent);
color: var(--agent-blue-500);
}
.filterMenu {
position: fixed;
z-index: 1000;
width: 300px;
max-width: min(320px, 80vw);
max-height: min(430px, calc(100vh - 16px));
overflow: auto;
border: 1px solid var(--border);
border-radius: 8px;
background: var(--card);
box-shadow: 0 16px 36px rgb(0 0 0 / 34%);
color: var(--foreground);
font-size: 12px;
font-weight: 400;
}
.filterMenuTitle {
padding: 9px 10px;
border-bottom: 1px solid var(--border);
color: var(--foreground);
font-weight: 700;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.filterMenuSection {
display: flex;
flex-direction: column;
gap: 6px;
padding: 8px 10px;
border-bottom: 1px solid var(--border);
}
.filterMenuAction {
width: 100%;
padding: 5px 7px;
border: none;
border-radius: 4px;
background: transparent;
color: var(--foreground);
font: inherit;
text-align: left;
cursor: pointer;
}
.filterMenuAction:hover,
.activeAction {
background: var(--subtle-bg-strong);
}
.activeAction {
color: var(--agent-blue-500);
font-weight: 600;
}
.filterSearch,
.conditionInput,
.conditionSelect {
width: 100%;
box-sizing: border-box;
padding: 5px 7px;
border: 1px solid var(--border);
border-radius: 4px;
background: var(--muted);
color: var(--foreground);
font: inherit;
}
.filterSearch::placeholder,
.conditionInput::placeholder {
color: var(--muted-foreground);
}
.filterOptionList {
max-height: 170px;
overflow: auto;
border: 1px solid var(--border);
border-radius: 4px;
background: var(--muted);
}
.filterOption {
display: flex;
gap: 7px;
align-items: center;
min-height: 26px;
padding: 3px 6px;
color: var(--foreground);
cursor: pointer;
}
.filterOption:hover {
background: var(--subtle-bg-strong);
}
.filterOption input {
flex: 0 0 auto;
}
.optionLabel {
min-width: 0;
flex: 1 1 auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.optionCount {
margin-left: auto;
color: var(--muted-foreground);
font-variant-numeric: tabular-nums;
}
.optionLimitHint {
padding: 7px;
color: var(--muted-foreground);
text-align: center;
}
.conditionTitle {
color: var(--muted-foreground);
font-weight: 600;
}
.conditionInputs {
display: flex;
gap: 6px;
}
.filterFooter {
display: flex;
gap: 6px;
align-items: center;
padding: 8px 10px;
}
.footerSpacer {
flex: 1 1 auto;
}
.cell {
min-width: 120px;
max-width: 360px;
padding: 6px 8px;
background: var(--card);
color: var(--foreground);
text-align: left;
vertical-align: top;
white-space: pre-wrap;
overflow-wrap: anywhere;
cursor: cell;
}
.dragging .cell {
user-select: none;
}
.evenRow .cell {
background: color-mix(in srgb, var(--subtle-bg) 55%, transparent);
}
tr:hover .cell {
background: var(--subtle-bg-strong);
}
.selectedCell,
.evenRow .selectedCell,
tr:hover .selectedCell {
background: color-mix(in srgb, var(--agent-blue-500) 20%, transparent);
box-shadow: inset 0 0 0 1px var(--agent-blue-500);
}
.actionHeaderCell,
.actionCell {
width: var(--action-column-width);
min-width: var(--action-column-width);
max-width: var(--action-column-width);
text-align: center;
}
.stickyActionHeaderCell,
.stickyActionCell {
position: sticky;
left: 0;
z-index: 6;
}
.stickyActionHeaderCell {
z-index: 8;
}
.actionCell {
padding: 4px 6px;
cursor: default;
user-select: none;
}
.frozenCell {
position: sticky;
left: var(--action-column-width);
z-index: 4;
}
.stickyActionHeaderCell,
.frozenHeaderCell,
.stickyActionCell,
.frozenCell {
background: var(--card);
}
.activeHeaderCell.frozenHeaderCell {
background: color-mix(in srgb, var(--agent-blue-500) 8%, var(--card));
}
.evenRow .stickyActionCell,
.evenRow .frozenCell {
background: linear-gradient(var(--subtle-bg), var(--subtle-bg)), var(--card);
}
tr:hover .stickyActionCell,
tr:hover .frozenCell {
background:
linear-gradient(var(--subtle-bg-strong), var(--subtle-bg-strong)),
var(--card);
}
.stickyActionCell.selectedCell,
.frozenCell.selectedCell,
.evenRow .stickyActionCell.selectedCell,
.evenRow .frozenCell.selectedCell,
tr:hover .stickyActionCell.selectedCell,
tr:hover .frozenCell.selectedCell {
background:
linear-gradient(
color-mix(in srgb, var(--agent-blue-500) 20%, transparent),
color-mix(in srgb, var(--agent-blue-500) 20%, transparent)
),
var(--card);
box-shadow: inset 0 0 0 1px var(--agent-blue-500);
}
.rowDetailButton {
padding: 3px 7px;
border: 1px solid var(--border);
border-radius: 4px;
background: var(--card);
color: var(--foreground);
font: inherit;
cursor: pointer;
}
.rowDetailButton:hover,
.rowDetailButton[aria-expanded='true'] {
background: var(--subtle-bg-strong);
}
.detailRow {
background: var(--subtle-bg);
}
.detailCell {
padding: 0;
border-bottom: 1px solid var(--border);
background: var(--subtle-bg);
color: var(--foreground);
}
.detailPanel {
display: grid;
gap: 7px;
padding: 10px 12px;
}
.detailTitle {
color: var(--foreground);
font-weight: 700;
}
.detailItem {
display: grid;
grid-template-columns: minmax(90px, 180px) minmax(0, 1fr);
gap: 10px;
}
.detailLabel {
color: var(--muted-foreground);
font-weight: 600;
}
.detailValue {
min-width: 0;
color: var(--foreground);
overflow-wrap: anywhere;
white-space: pre-wrap;
}
.emptyState {
padding: 16px;
color: var(--muted-foreground);
font-size: 13px;
text-align: center;
}