Merge pull request #8387 from denschub/linked-inline-code-color
Make inline code inside links show the link color.
This commit is contained in:
commit
1c064e016f
2 changed files with 10 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue