Merge pull request #8387 from denschub/linked-inline-code-color

Make inline code inside links show the link color.
This commit is contained in:
Benjamin Neff 2022-08-31 22:38:47 +02:00
commit 1c064e016f
No known key found for this signature in database
GPG key ID: 971464C3F1A90194
2 changed files with 10 additions and 0 deletions

View file

@ -35,6 +35,7 @@ We use yarn to install the frontend dependencies now, so you need to have that i
## Bug fixes
* Fix multiple photos upload progress bar [#7655](https://github.com/diaspora/diaspora/pull/7655)
* Photo-upload file picker now correctly restricts possible file types [#8205](https://github.com/diaspora/diaspora/pull/8205)
* Make inline code inside links show the link color [#8387](https://github.com/diaspora/diaspora/pull/8387)
## Features
* Add client-side cropping of profile image uploads [#7581](https://github.com/diaspora/diaspora/pull/7581)

View file

@ -5,3 +5,12 @@ pre {
white-space: pre;
code { white-space: pre; }
}
// For inline-code inside links, let's force the color to the default link
// color to make them be recognizable as links.
p a {
code,
pre {
color: $link-color;
}
}