aboutsummaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-05-09 20:28:50 -0400
committertdro <tdro@noreply.example.com>2022-05-09 20:28:50 -0400
commit43149e4872c9e3e4766d4b38a752e62c07a2bb3c (patch)
tree31c7f26a534ff9438c2d9bbedb45f93f4f4bcbfa /themes
parent887330116c9cd4828418342c9881524ed454ce0a (diff)
downloadcanory-43149e4872c9e3e4766d4b38a752e62c07a2bb3c.tar.gz
canory-43149e4872c9e3e4766d4b38a752e62c07a2bb3c.tar.bz2
canory-43149e4872c9e3e4766d4b38a752e62c07a2bb3c.zip
themes/default/layouts/_default: Set tab list active color
Diffstat (limited to 'themes')
-rw-r--r--themes/default/layouts/_default/feeds.html4
-rw-r--r--themes/default/layouts/_default/likes.html4
-rw-r--r--themes/default/layouts/_default/media.html4
-rw-r--r--themes/default/layouts/_default/section.html4
4 files changed, 12 insertions, 4 deletions
diff --git a/themes/default/layouts/_default/feeds.html b/themes/default/layouts/_default/feeds.html
index a4ddb66..e4c1405 100644
--- a/themes/default/layouts/_default/feeds.html
+++ b/themes/default/layouts/_default/feeds.html
@@ -4,11 +4,13 @@
{{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}
tab-list a[href="{{ .Site.BaseURL }}/{{ $author }}/feeds/"] {
+ color: #111;
+ color: var(--foreground);
display: inherit;
font-weight: 700;
- text-decoration: underline;
text-decoration-color: #014cc6;
text-decoration-color: var(--link);
+ text-decoration: underline;
}
</style>
{{ end }}
diff --git a/themes/default/layouts/_default/likes.html b/themes/default/layouts/_default/likes.html
index 702da5e..f1819b4 100644
--- a/themes/default/layouts/_default/likes.html
+++ b/themes/default/layouts/_default/likes.html
@@ -4,11 +4,13 @@
{{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}
tab-list a[href="{{ .Site.BaseURL }}/{{ $author }}/likes/"] {
+ color: #111;
+ color: var(--foreground);
display: inherit;
font-weight: 700;
- text-decoration: underline;
text-decoration-color: #014cc6;
text-decoration-color: var(--link);
+ text-decoration: underline;
}
</style>
{{ end }}
diff --git a/themes/default/layouts/_default/media.html b/themes/default/layouts/_default/media.html
index a1d885d..cf822e8 100644
--- a/themes/default/layouts/_default/media.html
+++ b/themes/default/layouts/_default/media.html
@@ -4,11 +4,13 @@
{{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}
tab-list a[href="{{ .Site.BaseURL }}/{{ $author }}/media/"] {
+ color: #111;
+ color: var(--foreground);
display: inherit;
font-weight: 700;
- text-decoration: underline;
text-decoration-color: #014cc6;
text-decoration-color: var(--link);
+ text-decoration: underline;
}
</style>
{{ end }}
diff --git a/themes/default/layouts/_default/section.html b/themes/default/layouts/_default/section.html
index d20406a..656b36d 100644
--- a/themes/default/layouts/_default/section.html
+++ b/themes/default/layouts/_default/section.html
@@ -3,11 +3,13 @@
{{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}
tab-list a[href="{{ .Site.BaseURL }}/{{ partial "author-user.html" . }}"] {
+ color: #111;
+ color: var(--foreground);
display: inherit;
font-weight: 700;
- text-decoration: underline;
text-decoration-color: #014cc6;
text-decoration-color: var(--link);
+ text-decoration: underline;
}
</style>
{{ end }}