Files
grimoire/src/components/command-launcher.css
Alejandro Gómez b7fbaf5e46 feat: copy bech32
2025-12-11 21:54:02 +01:00

201 lines
3.7 KiB
CSS

/* Command Launcher Styles - Terminal Aesthetic */
.grimoire-command-launcher {
max-width: 640px;
padding: 0;
overflow: hidden;
}
.grimoire-command-content {
width: 100%;
}
.command-launcher-wrapper {
width: 100%;
background: hsl(var(--background));
}
.command-input {
width: 100%;
padding: 16px 20px;
background: transparent;
border: none;
border-bottom: 1px solid hsl(var(--border));
font-family: monospace;
font-size: 16px;
color: hsl(var(--foreground));
outline: none;
}
.command-input::placeholder {
color: hsl(var(--muted-foreground));
font-family: monospace;
}
.command-hint {
padding: 8px 20px;
border-bottom: 1px solid hsl(var(--border));
font-family: monospace;
font-size: 12px;
display: flex;
align-items: center;
gap: 8px;
background: hsl(var(--muted));
}
.command-hint-label {
color: hsl(var(--muted-foreground));
}
.command-hint-command {
color: hsl(var(--foreground));
font-weight: 600;
}
.command-hint-args {
color: hsl(var(--accent));
}
.command-list {
max-height: 400px;
overflow-y: auto;
padding: 8px;
}
.command-empty {
padding: 32px 20px;
text-align: center;
color: hsl(var(--muted-foreground));
font-size: 14px;
font-family: monospace;
}
.command-group {
margin-bottom: 12px;
}
.command-group [cmdk-group-heading] {
padding: 8px 12px 4px;
font-size: 11px;
font-weight: 600;
color: hsl(var(--muted-foreground));
text-transform: uppercase;
letter-spacing: 0.05em;
font-family: monospace;
}
.command-item {
padding: 10px 12px;
cursor: pointer;
transition: all 0.1s ease;
margin-bottom: 2px;
border: 1px solid transparent;
}
/* Inverted selection - terminal style */
.command-item[aria-selected="true"] {
background: hsl(var(--foreground));
color: hsl(var(--background));
border-color: hsl(var(--foreground));
}
.command-item[aria-selected="false"]:hover {
background: hsl(var(--muted));
border-color: hsl(var(--border));
}
/* Exact match indicator */
.command-item[data-exact-match="true"] {
border-color: hsl(var(--accent));
}
.command-item-content {
display: flex;
flex-direction: column;
gap: 4px;
}
.command-item-name {
display: flex;
align-items: baseline;
gap: 8px;
font-family: monospace;
font-size: 14px;
}
.command-name {
font-weight: 600;
}
.command-args {
color: hsl(var(--muted-foreground));
font-size: 12px;
}
.command-item[aria-selected="true"] .command-args {
color: hsl(var(--background));
opacity: 0.7;
}
.command-match-indicator {
margin-left: auto;
color: hsl(var(--accent));
font-size: 12px;
}
.command-item[aria-selected="true"] .command-match-indicator {
color: hsl(var(--background));
}
.command-item-description {
font-size: 12px;
color: hsl(var(--muted-foreground));
font-family: monospace;
}
.command-item[aria-selected="true"] .command-item-description {
color: hsl(var(--background));
opacity: 0.8;
}
.command-footer {
padding: 12px 20px;
border-top: 1px solid hsl(var(--border));
display: flex;
align-items: center;
justify-content: space-between;
font-size: 12px;
color: hsl(var(--muted-foreground));
font-family: monospace;
}
.command-footer-status {
color: hsl(var(--accent));
font-weight: 600;
}
.command-footer kbd {
padding: 2px 6px;
background: hsl(var(--muted));
border: 1px solid hsl(var(--border));
font-size: 11px;
font-family: monospace;
margin: 0 4px;
}
/* Scrollbar styling to match terminal aesthetic */
.command-list::-webkit-scrollbar {
width: 8px;
}
.command-list::-webkit-scrollbar-track {
background: transparent;
}
.command-list::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2);
}
.command-list::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.3);
}