| 1 | /* Ported from DeepSeek Harness c291e7961a; MIT, see LICENSE. */ |
| 2 | .dsh-TurnProcessNodeView-root { |
| 3 | box-sizing: border-box; |
| 4 | display: flex; |
| 5 | align-items: center; |
| 6 | width: 100%; |
| 7 | min-width: 0; |
| 8 | height: 33px; |
| 9 | padding: 0 0 8px; |
| 10 | border: none; |
| 11 | border-bottom: 0.5px solid var(--dsw-alias-border-l2); |
| 12 | background: none; |
| 13 | color: var(--dsw-alias-label-secondary); |
| 14 | cursor: pointer; |
| 15 | text-align: left; |
| 16 | } |
| 17 | |
| 18 | .dsh-TurnProcessNodeView-root:not([data-open]) { |
| 19 | margin-bottom: 8px; |
| 20 | } |
| 21 | |
| 22 | .dsh-TurnProcessNodeView-chevron { |
| 23 | flex: none; |
| 24 | width: 16px; |
| 25 | height: 16px; |
| 26 | margin-left: 6px; |
| 27 | color: var(--dsw-alias-label-tertiary); |
| 28 | transform: rotate(-90deg); |
| 29 | transition: transform 100ms ease; |
| 30 | } |
| 31 | |
| 32 | .dsh-TurnProcessNodeView-root[data-open] .dsh-TurnProcessNodeView-chevron { |
| 33 | transform: rotate(0deg); |
| 34 | } |
| 35 | |
| 36 | .dsh-TurnProcessNodeView-label { |
| 37 | min-width: 0; |
| 38 | overflow: hidden; |
| 39 | font-size: 14px; |
| 40 | line-height: 24px; |
| 41 | text-overflow: ellipsis; |
| 42 | white-space: nowrap; |
| 43 | } |
| 44 | |
| 45 | @media (prefers-reduced-motion: reduce) { |
| 46 | .dsh-TurnProcessNodeView-chevron { |
| 47 | transition: none; |
| 48 | } |
| 49 | } |
| 50 |