all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs
@ 2026-07-06  9:30 Shannon Sterz
  2026-07-06  9:30 ` [PATCH proxmox-backup v2 1/3] docs: fix visited link contrast in dark mode Shannon Sterz
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Shannon Sterz @ 2026-07-06  9:30 UTC (permalink / raw)
  To: pdm-devel

pdm, pbs, and pom use a different css for their docs than pve and pmg and
currently suffer from low contrast on visited links. these patches fix that.

Changelog
---------

* v1: https://lore.proxmox.com/all/20260608080627.38719-1-s.sterz@proxmox.com/

+ change from v1:
    - add a patch also covering this issue in pom


backup:

Shannon Sterz (1):
  docs: fix visited link contrast in dark mode

 docs/_static/custom.css | 6 ++++++
 1 file changed, 6 insertions(+)


datacenter-manager:

Shannon Sterz (1):
  docs: fix visited link contrast in dark mode

 docs/_static/custom.css | 6 ++++++
 1 file changed, 6 insertions(+)


offline-mirror:

Shannon Sterz (1):
  docs: fix visited link contrast in dark mode

 docs/custom.css | 6 ++++++
 1 file changed, 6 insertions(+)


Summary over all repositories:
  3 files changed, 18 insertions(+), 0 deletions(-)

-- 
Generated by murpp 0.12.0




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH proxmox-backup v2 1/3] docs: fix visited link contrast in dark mode
  2026-07-06  9:30 [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Shannon Sterz
@ 2026-07-06  9:30 ` Shannon Sterz
  2026-07-06  9:30 ` [PATCH datacenter-manager v2 2/3] " Shannon Sterz
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Shannon Sterz @ 2026-07-06  9:30 UTC (permalink / raw)
  To: pdm-devel

by choosing a much lighter purple than the default visited link color
as secondary color. this increases the contrast from 1.37 to 7.08.
meaning, the text now meets WCAG AAA conditions for accessibility. the
light theme is unaffected.

Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
---
 docs/_static/custom.css | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docs/_static/custom.css b/docs/_static/custom.css
index 7022b532b..5aeef4ce3 100644
--- a/docs/_static/custom.css
+++ b/docs/_static/custom.css
@@ -98,6 +98,7 @@ div.document, div.footer {
         --pdt-grey-100: hsl(0deg, 0%, 10%);
         --pdt-primary-800: hsl(205deg, 100%, 80%);
         --pdt-primary-700: hsl(205deg, 100%, 70%);
+        --pdt-secondary-800: hsl(275deg, 100%, 80%);
         --pdt-red-200: hsl(360deg, 30%, 20%);
         --pdt-red-350: hsl(360deg, 30%, 35%);
         --pdt-yellow-250: hsl(40deg, 100%, 25%);
@@ -107,6 +108,7 @@ div.document, div.footer {
         --pdt-shadow: var(--pdt-grey-100);
         --pdt-headline: var(--pdt-primary-800);
         --pdt-link: var(--pdt-primary-700);
+        --pdt-link-visited: var(--pdt-secondary-800);
         --pdt-admonition-background: var(--pdt-grey-250);
         --pdt-topic-background: var(--pdt-grey-200);
         --pdt-warn: var(--pdt-yellow-250);
@@ -136,6 +138,10 @@ div.document, div.footer {
         background-color: var(--pdt-admonition-background)
     }
 
+    a:visited {
+        color: var(--pdt-link-visited);
+    }
+
     div.sphinxsidebar ul ul a {
         color: var(--pdt-text);
         border-bottom-color: var(--pdt-border);
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH datacenter-manager v2 2/3] docs: fix visited link contrast in dark mode
  2026-07-06  9:30 [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Shannon Sterz
  2026-07-06  9:30 ` [PATCH proxmox-backup v2 1/3] docs: fix visited link contrast in dark mode Shannon Sterz
@ 2026-07-06  9:30 ` Shannon Sterz
  2026-07-06  9:30 ` [PATCH offline-mirror v2 3/3] " Shannon Sterz
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Shannon Sterz @ 2026-07-06  9:30 UTC (permalink / raw)
  To: pdm-devel

by choosing a much lighter purple than the default visited link color
as secondary color. this increases the contrast from 1.37 to 7.08.
meaning, the text now meets WCAG AAA conditions for accessibility. the
light theme is unaffected.

Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
---
 docs/_static/custom.css | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docs/_static/custom.css b/docs/_static/custom.css
index 7022b532..5aeef4ce 100644
--- a/docs/_static/custom.css
+++ b/docs/_static/custom.css
@@ -98,6 +98,7 @@ div.document, div.footer {
         --pdt-grey-100: hsl(0deg, 0%, 10%);
         --pdt-primary-800: hsl(205deg, 100%, 80%);
         --pdt-primary-700: hsl(205deg, 100%, 70%);
+        --pdt-secondary-800: hsl(275deg, 100%, 80%);
         --pdt-red-200: hsl(360deg, 30%, 20%);
         --pdt-red-350: hsl(360deg, 30%, 35%);
         --pdt-yellow-250: hsl(40deg, 100%, 25%);
@@ -107,6 +108,7 @@ div.document, div.footer {
         --pdt-shadow: var(--pdt-grey-100);
         --pdt-headline: var(--pdt-primary-800);
         --pdt-link: var(--pdt-primary-700);
+        --pdt-link-visited: var(--pdt-secondary-800);
         --pdt-admonition-background: var(--pdt-grey-250);
         --pdt-topic-background: var(--pdt-grey-200);
         --pdt-warn: var(--pdt-yellow-250);
@@ -136,6 +138,10 @@ div.document, div.footer {
         background-color: var(--pdt-admonition-background)
     }
 
+    a:visited {
+        color: var(--pdt-link-visited);
+    }
+
     div.sphinxsidebar ul ul a {
         color: var(--pdt-text);
         border-bottom-color: var(--pdt-border);
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH offline-mirror v2 3/3] docs: fix visited link contrast in dark mode
  2026-07-06  9:30 [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Shannon Sterz
  2026-07-06  9:30 ` [PATCH proxmox-backup v2 1/3] docs: fix visited link contrast in dark mode Shannon Sterz
  2026-07-06  9:30 ` [PATCH datacenter-manager v2 2/3] " Shannon Sterz
@ 2026-07-06  9:30 ` Shannon Sterz
  2026-07-14  9:00 ` [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Dominik Csapak
  2026-07-15 17:48 ` partially-applied: " Thomas Lamprecht
  4 siblings, 0 replies; 6+ messages in thread
From: Shannon Sterz @ 2026-07-06  9:30 UTC (permalink / raw)
  To: pdm-devel

by choosing a much lighter purle than the default visited link color
as secondary color. this increases the contrast from 1.37 to 7.08.
meaning, the text now meets WCAG AAA conditions for accessibility. the
light theme is unaffected.

Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
---
 docs/custom.css | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docs/custom.css b/docs/custom.css
index 7022b53..5aeef4c 100644
--- a/docs/custom.css
+++ b/docs/custom.css
@@ -98,6 +98,7 @@ div.document, div.footer {
         --pdt-grey-100: hsl(0deg, 0%, 10%);
         --pdt-primary-800: hsl(205deg, 100%, 80%);
         --pdt-primary-700: hsl(205deg, 100%, 70%);
+        --pdt-secondary-800: hsl(275deg, 100%, 80%);
         --pdt-red-200: hsl(360deg, 30%, 20%);
         --pdt-red-350: hsl(360deg, 30%, 35%);
         --pdt-yellow-250: hsl(40deg, 100%, 25%);
@@ -107,6 +108,7 @@ div.document, div.footer {
         --pdt-shadow: var(--pdt-grey-100);
         --pdt-headline: var(--pdt-primary-800);
         --pdt-link: var(--pdt-primary-700);
+        --pdt-link-visited: var(--pdt-secondary-800);
         --pdt-admonition-background: var(--pdt-grey-250);
         --pdt-topic-background: var(--pdt-grey-200);
         --pdt-warn: var(--pdt-yellow-250);
@@ -136,6 +138,10 @@ div.document, div.footer {
         background-color: var(--pdt-admonition-background)
     }
 
+    a:visited {
+        color: var(--pdt-link-visited);
+    }
+
     div.sphinxsidebar ul ul a {
         color: var(--pdt-text);
         border-bottom-color: var(--pdt-border);
-- 
2.47.3





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs
  2026-07-06  9:30 [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Shannon Sterz
                   ` (2 preceding siblings ...)
  2026-07-06  9:30 ` [PATCH offline-mirror v2 3/3] " Shannon Sterz
@ 2026-07-14  9:00 ` Dominik Csapak
  2026-07-15 17:48 ` partially-applied: " Thomas Lamprecht
  4 siblings, 0 replies; 6+ messages in thread
From: Dominik Csapak @ 2026-07-14  9:00 UTC (permalink / raw)
  To: Shannon Sterz, pdm-devel

Much better contrast for those links, thanks!

Reviewed-by: Dominik Csapak <d.csapak@proxmox.com>

On 7/6/26 11:30 AM, Shannon Sterz wrote:
> pdm, pbs, and pom use a different css for their docs than pve and pmg and
> currently suffer from low contrast on visited links. these patches fix that.
> 
> Changelog
> ---------
> 
> * v1: https://lore.proxmox.com/all/20260608080627.38719-1-s.sterz@proxmox.com/
> 
> + change from v1:
>      - add a patch also covering this issue in pom
> 
> 
> backup:
> 
> Shannon Sterz (1):
>    docs: fix visited link contrast in dark mode
> 
>   docs/_static/custom.css | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> 
> datacenter-manager:
> 
> Shannon Sterz (1):
>    docs: fix visited link contrast in dark mode
> 
>   docs/_static/custom.css | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> 
> offline-mirror:
> 
> Shannon Sterz (1):
>    docs: fix visited link contrast in dark mode
> 
>   docs/custom.css | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> 
> Summary over all repositories:
>    3 files changed, 18 insertions(+), 0 deletions(-)
> 





^ permalink raw reply	[flat|nested] 6+ messages in thread

* partially-applied: [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs
  2026-07-06  9:30 [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Shannon Sterz
                   ` (3 preceding siblings ...)
  2026-07-14  9:00 ` [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Dominik Csapak
@ 2026-07-15 17:48 ` Thomas Lamprecht
  4 siblings, 0 replies; 6+ messages in thread
From: Thomas Lamprecht @ 2026-07-15 17:48 UTC (permalink / raw)
  To: pdm-devel, Shannon Sterz

On Mon, 06 Jul 2026 11:30:21 +0200, Shannon Sterz wrote:
> pdm, pbs, and pom use a different css for their docs than pve and pmg and
> currently suffer from low contrast on visited links. these patches fix that.
> 
> Changelog
> ---------
> 
> * v1: https://lore.proxmox.com/all/20260608080627.38719-1-s.sterz@proxmox.com/
> 
> [...]

Applied the PDM one, thanks!

[datacenter-manager]
[1/1] docs: fix visited link contrast in dark mode
      commit: bddbe414df8cd3879128a8a5f74f00e562438f28




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-07-15 17:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-06  9:30 [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Shannon Sterz
2026-07-06  9:30 ` [PATCH proxmox-backup v2 1/3] docs: fix visited link contrast in dark mode Shannon Sterz
2026-07-06  9:30 ` [PATCH datacenter-manager v2 2/3] " Shannon Sterz
2026-07-06  9:30 ` [PATCH offline-mirror v2 3/3] " Shannon Sterz
2026-07-14  9:00 ` [PATCH datacenter-manager/offline-mirror/proxmox-backup v2 0/3] adjust contrast for visited links in dark mode in restructured text docs Dominik Csapak
2026-07-15 17:48 ` partially-applied: " Thomas Lamprecht

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal