mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
51 lines
977 B
CSS
51 lines
977 B
CSS
/**
|
|
* @license
|
|
* Copyright 2025 Qwen Team
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Simplified timeline styles for tool calls
|
|
*/
|
|
|
|
/* Basic timeline container */
|
|
.simple-toolcall-container {
|
|
position: relative;
|
|
padding-left: 30px;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
/* Timeline connector - simple version */
|
|
.simple-toolcall-container::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 12px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 1px;
|
|
background-color: var(--app-primary-border-color);
|
|
z-index: 1;
|
|
}
|
|
|
|
/* First item connector starts lower */
|
|
.simple-toolcall-container:first-child::after {
|
|
top: 24px;
|
|
}
|
|
|
|
/* Last item connector ends higher */
|
|
.simple-toolcall-container:last-child::after {
|
|
height: calc(100% - 24px);
|
|
top: 0;
|
|
bottom: auto;
|
|
}
|
|
|
|
/* Bullet point */
|
|
.simple-toolcall-container::before {
|
|
content: '\25cf';
|
|
position: absolute;
|
|
left: 8px;
|
|
padding-top: 2px;
|
|
font-size: 10px;
|
|
color: var(--app-secondary-foreground);
|
|
z-index: 2;
|
|
}
|