Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions default-themes/nebula-dawn.v2.css
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ body.chat-collapsed .chat-toggle {

.chat-input-wrapper .chat-input {
width: 100%;
padding-left: 36px;
padding-right: 36px;
}

Expand Down Expand Up @@ -704,3 +705,112 @@ body.chat-collapsed .chat-toggle {
#loadingOverlay { position: absolute; }
.chat-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.chat-input:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Attach button (left side of input) ---- */
.attach-btn {
position: absolute;
left: 6px;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: none;
color: var(--text-secondary);
cursor: pointer;
padding: 4px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.2s, background 0.2s;
z-index: 2;
}
.attach-btn:hover {
color: var(--accent-primary);
background: var(--accent-glow);
}
.light-mode .attach-btn {
color: var(--text-secondary);
}
.light-mode .attach-btn:hover {
color: var(--accent-primary);
}

/* ---- Attach popup menu ---- */
.attach-menu {
display: none;
flex-direction: column;
position: absolute;
bottom: calc(100% + 6px);
left: 0;
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.12);
overflow: hidden;
z-index: 100;
min-width: 160px;
}
.attach-menu-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
font-size: 13px;
color: var(--text-primary);
cursor: pointer;
transition: background 0.15s;
}
.attach-menu-item:hover {
background: var(--accent-glow);
}

/* ---- Attachment pills ---- */
.attachment-pills {
display: flex;
flex-wrap: wrap;
gap: 6px;
padding: 0 4px;
min-height: 0;
}
.attachment-pills:empty { display: none; }
.attachment-pill {
display: flex;
align-items: center;
gap: 6px;
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 4px 8px;
max-width: 180px;
}
.attachment-pill-remove {
background: none;
border: none;
color: var(--text-secondary);
cursor: pointer;
font-size: 14px;
padding: 0 2px;
line-height: 1;
}
.attachment-pill-remove:hover {
color: #ff6b6b;
}

/* ---- Screenshot overlay ---- */
.screenshot-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.15);
cursor: crosshair;
z-index: 1000;
}
.screenshot-rect {
display: none;
position: absolute;
border: 2px solid red;
background: rgba(255,0,0,0.05);
pointer-events: none;
}
104 changes: 104 additions & 0 deletions default-themes/nebula-dusk.v2.css
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ body.chat-collapsed .chat-toggle {

.chat-input-wrapper .chat-input {
width: 100%;
padding-left: 36px;
padding-right: 36px;
}

Expand Down Expand Up @@ -696,3 +697,106 @@ body.chat-collapsed .chat-toggle {
#loadingOverlay { position: absolute; }
.chat-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.chat-input:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Attach button (left side of input) ---- */
.attach-btn {
position: absolute;
left: 6px;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: none;
color: var(--text-secondary);
cursor: pointer;
padding: 4px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.2s, background 0.2s;
z-index: 2;
}
.attach-btn:hover {
color: var(--accent-primary);
background: var(--accent-glow);
}

/* ---- Attach popup menu ---- */
.attach-menu {
display: none;
flex-direction: column;
position: absolute;
bottom: calc(100% + 6px);
left: 0;
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.3);
overflow: hidden;
z-index: 100;
min-width: 160px;
}
.attach-menu-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
font-size: 13px;
color: var(--text-primary);
cursor: pointer;
transition: background 0.15s;
}
.attach-menu-item:hover {
background: var(--accent-glow);
}

/* ---- Attachment pills ---- */
.attachment-pills {
display: flex;
flex-wrap: wrap;
gap: 6px;
padding: 0 4px;
min-height: 0;
}
.attachment-pills:empty { display: none; }
.attachment-pill {
display: flex;
align-items: center;
gap: 6px;
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 4px 8px;
max-width: 180px;
}
.attachment-pill-remove {
background: none;
border: none;
color: var(--text-secondary);
cursor: pointer;
font-size: 14px;
padding: 0 2px;
line-height: 1;
}
.attachment-pill-remove:hover {
color: #ff6b6b;
}

/* ---- Screenshot overlay ---- */
.screenshot-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.2);
cursor: crosshair;
z-index: 1000;
}
.screenshot-rect {
display: none;
position: absolute;
border: 2px solid red;
background: rgba(255,0,0,0.05);
pointer-events: none;
}
Loading