| 1 | /* Ported from DeepSeek Harness c291e7961a (MIT). */ |
| 2 | .dsh-Pill-pill { |
| 3 | display: inline-flex; |
| 4 | align-items: center; |
| 5 | gap: 4px; |
| 6 | height: 24px; |
| 7 | padding: 0 8px; |
| 8 | border: none; |
| 9 | border-radius: 12px; |
| 10 | font-size: 12px; |
| 11 | line-height: 18px; |
| 12 | color: var(--dsw-alias-label-secondary); |
| 13 | background: var(--dsw-alias-bg-layer-2); |
| 14 | } |
| 15 | |
| 16 | .dsh-Pill-interactive { |
| 17 | cursor: pointer; |
| 18 | } |
| 19 | |
| 20 | .dsh-Pill-interactive:hover { |
| 21 | background: var(--dsw-alias-interactive-bg-hover); |
| 22 | } |
| 23 | |
| 24 | .dsh-Pill-active { |
| 25 | color: var(--dsw-alias-label-primary); |
| 26 | background: var(--dsw-alias-button-ghost-active-fill); |
| 27 | box-shadow: inset 0 0 0 1px var(--dsw-alias-button-ghost-active-border); |
| 28 | } |
| 29 |