mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-24 05:57:45 -05:00
Avoid styling <code> inside of <pre> (#7797)
* Remove background from <code> inside <pre> This caused an ugly effect where each line has a seperate background to the whole pre block. Fixes #7796 * Add James Frost to CREDITS.md
This commit is contained in:
@@ -108,6 +108,7 @@ People are sorted by name so please keep this order.
|
||||
* [Jackson Culbreth](https://github.com/culbrethj): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:culbrethj)
|
||||
* [jaden](https://github.com/jaden): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:jaden)
|
||||
* [Jake Mannens](https://github.com/jakem72360): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:jakem72360)
|
||||
* [James Frost](https://github.com/Fraetor): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:Fraetor), [Web](https://www.frost.cx/)
|
||||
* [Jamie Slome](https://github.com/JamieSlome): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:JamieSlome), [Web](https://418sec.com/)
|
||||
* [Jan Lukas Gernert](https://github.com/jangernert): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:jangernert)
|
||||
* [Jan van den Berg](https://github.com/jan-vandenberg): [contributions](https://github.com/FreshRSS/FreshRSS/pulls?q=is:pr+author:jan-vandenberg), [Web](https://j11g.com/)
|
||||
|
||||
@@ -505,7 +505,9 @@ button.as-link[disabled] {
|
||||
}
|
||||
|
||||
.content pre code {
|
||||
background: transparent;
|
||||
color: var(--dark-font-colorA);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.content blockquote {
|
||||
|
||||
@@ -505,7 +505,9 @@ button.as-link[disabled] {
|
||||
}
|
||||
|
||||
.content pre code {
|
||||
background: transparent;
|
||||
color: var(--dark-font-colorA);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.content blockquote {
|
||||
|
||||
@@ -871,7 +871,10 @@ li.item.active {
|
||||
.content pre {
|
||||
border: 1px solid var(--accent);
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.content pre code {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.content blockquote {
|
||||
|
||||
@@ -871,7 +871,10 @@ li.item.active {
|
||||
.content pre {
|
||||
border: 1px solid var(--accent);
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.content pre code {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.content blockquote {
|
||||
|
||||
@@ -921,6 +921,12 @@ a:hover .icon {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.content pre code {
|
||||
background: transparent;
|
||||
color: var(--font-color);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.content code {
|
||||
background-color: var(--background-color-light-shadowed);
|
||||
color: var(--error-feed-color);
|
||||
|
||||
@@ -921,6 +921,12 @@ a:hover .icon {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.content pre code {
|
||||
background: transparent;
|
||||
color: var(--font-color);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.content code {
|
||||
background-color: var(--background-color-light-shadowed);
|
||||
color: var(--error-feed-color);
|
||||
|
||||
Reference in New Issue
Block a user