Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
webui: fix unreadable colors on links and table cell hover in user ma…
…rkdown
  • Loading branch information
ServeurpersoCom committed Nov 27, 2025
commit 7820e4b618b1da5296989bef769a3e09dbcc75e5
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,21 @@
background: var(--muted);
}

/* Disable hover effects when rendering user messages */
.markdown-user-content :global(a),
.markdown-user-content :global(a:hover) {
color: var(--primary-foreground);
}

.markdown-user-content :global(table:hover) {
box-shadow: none;
}

.markdown-user-content :global(th:hover),
.markdown-user-content :global(td:hover) {
background: inherit;
}

/* Enhanced blockquotes */
div :global(blockquote) {
transition: all 0.2s ease;
Expand Down