mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
37 lines
723 B
CSS
37 lines
723 B
CSS
.sessionLogButton {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 111px;
|
|
height: 32px;
|
|
padding: 6px 12px;
|
|
gap: 4px;
|
|
border: 1px solid var(--dsw-alias-border-l2);
|
|
border-radius: 18px;
|
|
color: var(--dsw-alias-label-primary);
|
|
background: transparent;
|
|
font-family: var(--dsw-font-family);
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sessionLogButton:hover:not(:disabled) {
|
|
background: var(--dsw-alias-interactive-bg-hover);
|
|
}
|
|
|
|
.sessionLogButton:disabled {
|
|
color: var(--dsw-alias-label-dimmed);
|
|
cursor: wait;
|
|
}
|
|
|
|
.sessionLogButton span,
|
|
.sessionLogButton svg {
|
|
flex: none;
|
|
}
|
|
|
|
.sessionLogButton span {
|
|
white-space: nowrap;
|
|
}
|