Skip to content
Open
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
11 changes: 11 additions & 0 deletions ui/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,17 @@ input, textarea {
cursor: not-allowed;
}

.reply-button {
background: none;
border: none;
cursor: pointer;
font-size: 0.8em;
opacity: 0.6;
padding: 2px 4px;
margin-top: 4px;
color: var(--color-reply-text);
}

.node-not-connected {
position: fixed;
top: 0;
Expand Down
20 changes: 2 additions & 18 deletions ui/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -979,15 +979,7 @@ function App() {
{/* Reply button */}
<button
onClick={() => setReplyingTo(message)}
style={{
background: 'none',
border: 'none',
cursor: 'pointer',
fontSize: '0.8em',
opacity: 0.6,
padding: '2px 4px',
marginTop: '4px'
}}
className="reply-button"
title="Reply to this message"
>
↩️ Reply
Expand Down Expand Up @@ -1068,15 +1060,7 @@ function App() {
{!message.file_info && (
<button
onClick={() => setReplyingTo(message)}
style={{
background: 'none',
border: 'none',
cursor: 'pointer',
fontSize: '0.8em',
opacity: 0.6,
padding: '2px 4px',
marginTop: '4px'
}}
className="reply-button"
title="Reply to this message"
>
↩️ Reply
Expand Down
2 changes: 2 additions & 0 deletions ui/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
--color-text-muted: #666;
--color-text-subtle: #999;
--color-text-timestamp: #999;
--color-reply-text: #666;
--color-button-primary: #4b9ad8;
--color-button-primary-hover: #357abd;
--color-button-disabled: #cccccc;
Expand Down Expand Up @@ -98,6 +99,7 @@ button:focus-visible {
--color-text-muted: #aaa;
--color-text-subtle: #888;
--color-text-timestamp: #888;
--color-reply-text: #ccc;
--color-button-primary: #4b9ad8;
--color-button-primary-hover: #357abd;
--color-button-disabled: #555;
Expand Down