Initial release v1.0.0
This commit is contained in:
+146
@@ -0,0 +1,146 @@
|
||||
/* ── Recording Controls Modal ── */
|
||||
.recording-controls .modal-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
.recording-controls .button-group {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.recording-controls .button-component {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 6px 12px;
|
||||
border-radius: 6px;
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
cursor: pointer;
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
.recording-controls .button-component:hover {
|
||||
background-color: var(--interactive-accent-hover);
|
||||
}
|
||||
.recording-controls .button-component:disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.recording-controls .button-component svg {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
/* ── Model Browser Suggestion ── */
|
||||
.model-suggestion {
|
||||
padding: 4px 0;
|
||||
}
|
||||
.model-suggestion-name {
|
||||
font-weight: 500;
|
||||
}
|
||||
.model-suggestion-id {
|
||||
font-size: 0.8em;
|
||||
opacity: 0.6;
|
||||
}
|
||||
.model-suggestion-badge {
|
||||
margin-left: 8px;
|
||||
padding: 0 6px;
|
||||
border-radius: 4px;
|
||||
background-color: var(--color-green);
|
||||
color: var(--text-on-accent);
|
||||
font-size: 0.75em;
|
||||
}
|
||||
.model-suggestion-desc {
|
||||
font-size: 0.75em;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* ── Property Prompt Modal ── */
|
||||
.modal-button-container {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
justify-content: flex-end;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
/* ── API Key Modal ── */
|
||||
.api-key-modal input {
|
||||
width: 100%;
|
||||
padding: 8px;
|
||||
margin-bottom: 16px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
background-color: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* ── Settings Tab Bar ── */
|
||||
.nibbleai-tab-bar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
padding: 4px 0 12px 0;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.nibbleai-tab {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 6px 14px;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
font-size: var(--font-ui-small);
|
||||
transition: background 0.15s, color 0.15s;
|
||||
white-space: nowrap;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.nibbleai-tab:hover {
|
||||
background: var(--background-modifier-hover);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.nibbleai-tab-active {
|
||||
background: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.nibbleai-tab-active:hover {
|
||||
background: var(--interactive-accent-hover);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.nibbleai-tab-icon svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* ── Tab Content ── */
|
||||
.nibbleai-tab-content h2 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
font-size: var(--font-ui-large);
|
||||
font-weight: 700;
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.nibbleai-tab-content h3 {
|
||||
margin-top: 28px;
|
||||
margin-bottom: 10px;
|
||||
font-size: var(--font-ui-medium);
|
||||
font-weight: 600;
|
||||
color: var(--text-muted);
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
Reference in New Issue
Block a user