mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
- Increase message logging truncation limit from 500 to 1500 characters - Fix permission option mapping logic for reject_once/cancel options - Add TODO comments for diff accept/cancel responses during permission requests Resolves issues with permission handling and improves debugging capabilities.
39 lines
935 B
CSS
39 lines
935 B
CSS
/**
|
|
* @license
|
|
* Copyright 2025 Qwen Team
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
@import url('../Assistant/AssistantMessage.css');
|
|
|
|
/* Subtle shimmering highlight across the loading text */
|
|
@keyframes waitingMessageShimmer {
|
|
0% {
|
|
background-position: -200% 0;
|
|
}
|
|
100% {
|
|
background-position: 200% 0;
|
|
}
|
|
}
|
|
|
|
.loading-text-shimmer {
|
|
/* Use the theme foreground as the base color, with a moving light band */
|
|
background-image: linear-gradient(
|
|
90deg,
|
|
var(--app-secondary-foreground) 0%,
|
|
var(--app-secondary-foreground) 40%,
|
|
rgba(255, 255, 255, 0.95) 50%,
|
|
var(--app-secondary-foreground) 60%,
|
|
var(--app-secondary-foreground) 100%
|
|
);
|
|
background-size: 200% 100%;
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent; /* text color comes from the gradient */
|
|
animation: waitingMessageShimmer 1.6s linear infinite;
|
|
}
|
|
|
|
.interrupted-item::after {
|
|
display: none;
|
|
}
|