add prompt history rocker

This commit is contained in:
Shantur Rathore
2025-12-06 23:13:01 +00:00
parent de432106e5
commit b9394fb467
2 changed files with 133 additions and 23 deletions

View File

@@ -23,7 +23,7 @@
}
.prompt-input {
@apply flex-1 w-full min-h-[56px] max-h-[96px] px-3 pt-2.5 pb-4 border rounded-md text-sm resize-none outline-none transition-colors;
@apply flex-1 w-full min-h-[56px] max-h-[96px] pl-3 pr-10 pt-2.5 pb-4 border rounded-md text-sm resize-none outline-none transition-colors;
font-family: inherit;
background-color: var(--surface-base);
color: inherit;
@@ -51,6 +51,42 @@
color: var(--text-primary);
}
.prompt-history-top,
.prompt-history-bottom {
position: absolute;
right: 0.35rem;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.prompt-history-top {
top: 0.3rem;
}
.prompt-history-bottom {
bottom: 0.3rem;
}
.prompt-history-button {
@apply w-8 h-8 flex items-center justify-center rounded-md;
color: var(--text-muted);
background-color: rgba(15, 23, 42, 0.04);
transition: background-color 0.15s ease, color 0.15s ease;
padding: 0;
}
.prompt-history-button:hover:not(:disabled) {
background-color: var(--surface-secondary);
color: var(--text-primary);
}
.prompt-history-button:disabled {
opacity: 0.4;
cursor: not-allowed;
}
.prompt-overlay-text {
display: inline-flex;
align-items: center;