Spaces:
Running
Running
| /* ── thinking toggle ── */ | |
| #hy-chat .thinking-block { | |
| background: none ; | |
| border: none ; | |
| padding: 0 ; | |
| margin: 6px 0 10px ; | |
| } | |
| #hy-chat .thinking-block summary { | |
| cursor: pointer; | |
| font-size: 13px ; | |
| font-weight: 400 ; | |
| color: #8a8a8e ; | |
| padding: 0 ; | |
| list-style: none ; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 4px; | |
| } | |
| #hy-chat .thinking-block summary:hover { color: #666 ; } | |
| .dark #hy-chat .thinking-block summary { color: #808080 ; } | |
| .dark #hy-chat .thinking-block summary:hover { color: #aaa ; } | |
| #hy-chat .thinking-block summary::marker, | |
| #hy-chat .thinking-block summary::-webkit-details-marker { display: none ; } | |
| #hy-chat .thinking-block summary::after { content: " ›" ; font-size: 13px; color: #bbb; } | |
| #hy-chat .thinking-block[open] summary::after { content: " ⌄" ; } | |
| #hy-chat .thinking-block[open] summary { margin-bottom: 8px ; } | |
| #hy-chat .thinking-block[open] > :not(summary) { | |
| font-size: 13px; color: #666; line-height: 1.7; | |
| padding: 12px 16px; background: #f8f8fa ; border-radius: 8px; | |
| max-height: 300px; overflow-y: auto; border-left: 2px solid #e5e5ea ; | |
| } | |
| .dark #hy-chat .thinking-block[open] > :not(summary) { | |
| color: #909090 ; background: #1c1c1c ; | |
| border-left-color: #333 ; | |
| } | |