refactor(vscode-ide-companion): remove merged timeline CSS file

- Remove MergedSimpleTimeline.css in favor of SimpleTimeline.css
This commit is contained in:
yiliang114
2025-12-04 01:54:16 +08:00
parent 5701a3c897
commit b1901f103f

View File

@@ -1,55 +0,0 @@
/**
* @license
* Copyright 2025 Qwen Team
* SPDX-License-Identifier: Apache-2.0
*
* Simplified timeline styles for tool calls and messages
* Merged version of both SimpleTimeline.css files
*/
/* Basic timeline container */
.simple-toolcall-container,
.simple-timeline-container {
position: relative;
padding-left: 30px;
padding-top: 8px;
padding-bottom: 8px;
}
/* Timeline connector - simple version */
.simple-toolcall-container::after,
.simple-timeline-container::after {
content: '';
position: absolute;
left: 12px;
top: 0;
bottom: 0;
width: 1px;
background-color: var(--app-primary-border-color);
}
/* First item connector starts lower */
.simple-toolcall-container:first-child::after,
.simple-timeline-container:first-child::after {
top: 24px;
}
/* Last item connector ends higher */
.simple-toolcall-container:last-child::after,
.simple-timeline-container:last-child::after {
height: calc(100% - 24px);
top: 0;
bottom: auto;
}
/* Bullet point */
.simple-toolcall-container::before,
.simple-timeline-container::before {
content: '\25cf';
position: absolute;
left: 8px;
padding-top: 2px;
font-size: 10px;
color: var(--app-secondary-foreground);
z-index: 2;
}