aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS.md1
-rw-r--r--p/themes/Dark/dark.css2
-rw-r--r--p/themes/Dark/dark.rtl.css2
-rw-r--r--p/themes/Nord/nord.css3
-rw-r--r--p/themes/Nord/nord.rtl.css3
-rw-r--r--p/themes/Origine/origine.css6
-rw-r--r--p/themes/Origine/origine.rtl.css6
7 files changed, 23 insertions, 0 deletions
diff --git a/CREDITS.md b/CREDITS.md
index 112c8ea04..e9b6826aa 100644
--- a/CREDITS.md
+++ b/CREDITS.md
@@ -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/)
diff --git a/p/themes/Dark/dark.css b/p/themes/Dark/dark.css
index b2ddf8f2b..4d5d69f2b 100644
--- a/p/themes/Dark/dark.css
+++ b/p/themes/Dark/dark.css
@@ -505,7 +505,9 @@ button.as-link[disabled] {
}
.content pre code {
+ background: transparent;
color: var(--dark-font-colorA);
+ border: none;
}
.content blockquote {
diff --git a/p/themes/Dark/dark.rtl.css b/p/themes/Dark/dark.rtl.css
index 4656ca241..69a296409 100644
--- a/p/themes/Dark/dark.rtl.css
+++ b/p/themes/Dark/dark.rtl.css
@@ -505,7 +505,9 @@ button.as-link[disabled] {
}
.content pre code {
+ background: transparent;
color: var(--dark-font-colorA);
+ border: none;
}
.content blockquote {
diff --git a/p/themes/Nord/nord.css b/p/themes/Nord/nord.css
index f6f6ebdfa..63e959b67 100644
--- a/p/themes/Nord/nord.css
+++ b/p/themes/Nord/nord.css
@@ -871,7 +871,10 @@ li.item.active {
.content pre {
border: 1px solid var(--accent);
border-radius: 6px;
+}
+.content pre code {
+ border: none;
}
.content blockquote {
diff --git a/p/themes/Nord/nord.rtl.css b/p/themes/Nord/nord.rtl.css
index 1822a48b6..9cfc4a52e 100644
--- a/p/themes/Nord/nord.rtl.css
+++ b/p/themes/Nord/nord.rtl.css
@@ -871,7 +871,10 @@ li.item.active {
.content pre {
border: 1px solid var(--accent);
border-radius: 6px;
+}
+.content pre code {
+ border: none;
}
.content blockquote {
diff --git a/p/themes/Origine/origine.css b/p/themes/Origine/origine.css
index 36ca2a2de..648c791bb 100644
--- a/p/themes/Origine/origine.css
+++ b/p/themes/Origine/origine.css
@@ -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);
diff --git a/p/themes/Origine/origine.rtl.css b/p/themes/Origine/origine.rtl.css
index d38fbe4da..54249a75c 100644
--- a/p/themes/Origine/origine.rtl.css
+++ b/p/themes/Origine/origine.rtl.css
@@ -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);