From 9775b6b24694cd1852d0ab4ca7bce1b7a39d58ef Mon Sep 17 00:00:00 2001 From: iamdoubz <4871781+iamdoubz@users.noreply.github.com> Date: Tue, 16 Nov 2021 10:47:20 -0600 Subject: [PATCH 1/2] Update color of links in body Fixes #2 --- theme-pitchblack.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/theme-pitchblack.css b/theme-pitchblack.css index 18902c7..ada8fed 100644 --- a/theme-pitchblack.css +++ b/theme-pitchblack.css @@ -936,3 +936,30 @@ img[src$="/img/matrix.svg"] { background: var(--color-primary)!important; color: var(--color-secondary)!important; } + +.markup a, .ui.breadcrumb a { + color: var(--color-primary-light-7); + cursor: pointer; + text-decoration: none; + border-bottom: 1px solid var(--color-primary); + transition-property: all +} + +.markup a:hover, .ui.breadcrumb a:hover { + color: #000; + cursor: pointer; + text-decoration: none; + background: #fff; + background-color: #fff +} + +.markup .anchor { + border-bottom: none +} + +.markup .anchor:hover { + color: var(--color-primary-light-7); + border-bottom: none; + background: var(--color-body); + background-color: var(--color-body) +} From 9d3c68d4801f3e0a94c546ae705a860007af663c Mon Sep 17 00:00:00 2001 From: iamdoubz <4871781+iamdoubz@users.noreply.github.com> Date: Tue, 16 Nov 2021 10:50:17 -0600 Subject: [PATCH 2/2] Update color of links in body Change less file. Fixes #2 --- theme-pitchblack.less | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/theme-pitchblack.less b/theme-pitchblack.less index bb52504..c32fdb0 100644 --- a/theme-pitchblack.less +++ b/theme-pitchblack.less @@ -846,3 +846,30 @@ img[src$="/img/matrix.svg"] { background: var(--color-primary)!important; color: var(--color-secondary)!important; } + +.markup a, .ui.breadcrumb a { + color: var(--color-primary-light-7); + cursor: pointer; + text-decoration: none; + border-bottom: 1px solid var(--color-primary); + transition-property: all; +} + +.markup a:hover, .ui.breadcrumb a:hover { + color: #000; + cursor: pointer; + text-decoration: none; + background: #fff; + background-color: #fff; +} + +.markup .anchor { + border-bottom: none; +} + +.markup .anchor:hover { + color: var(--color-primary-light-7); + border-bottom: none; + background: var(--color-body); + background-color: var(--color-body); +}