-
Notifications
You must be signed in to change notification settings - Fork 350
Closed
Labels
a-contentParsing and rendering Zulip HTML content, notably message contentsParsing and rendering Zulip HTML content, notably message contents
Milestone
Description
We should fix inline code's color when it is a part of a link.
| web (expected) | flutter |
|---|---|
![]() |
![]() |
Since a recent change (299c76be7), inline code links no longer have the ambient color and is always black. We want to fix this to match the behavior of the web app.
For reference, the web app defines a separate CSS variable --color-markdown-code-link
--color-markdown-link: hsl(200deg 100% 40%);
--color-markdown-code-link: var(--color-markdown-link);that applies to inline code that appears inside a link:
& a {
color: var(--color-markdown-link);
text-decoration: none;
& code {
color: var(--color-markdown-code-link);
}
alya and gnprice
Metadata
Metadata
Assignees
Labels
a-contentParsing and rendering Zulip HTML content, notably message contentsParsing and rendering Zulip HTML content, notably message contents
Type
Projects
Status
Done

