aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-09-02 21:05:30 -0400
committerThedro Neely <thedroneely@gmail.com>2019-09-02 21:05:30 -0400
commit3568879e732c79c4064c0c52a82fda8c85c137b8 (patch)
treebe62f79d2f40bf2ce3670872c272e34d1ccfe7dc
parenta6ad3304495fff55c1f3260e74df7dd98a7be6fd (diff)
downloadthedroneely.com-3568879e732c79c4064c0c52a82fda8c85c137b8.tar.gz
thedroneely.com-3568879e732c79c4064c0c52a82fda8c85c137b8.tar.bz2
thedroneely.com-3568879e732c79c4064c0c52a82fda8c85c137b8.zip
generators/hugo/layouts/_default/archive.html: Hover background on archive list
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/archive.html5
-rw-r--r--public/css/tdro-dark.css1
-rw-r--r--public/css/tdro.css1
3 files changed, 5 insertions, 2 deletions
diff --git a/generators/hugo/themes/tdro/layouts/_default/archive.html b/generators/hugo/themes/tdro/layouts/_default/archive.html
index 237bfbd..7f3d877 100644
--- a/generators/hugo/themes/tdro/layouts/_default/archive.html
+++ b/generators/hugo/themes/tdro/layouts/_default/archive.html
@@ -23,8 +23,9 @@
{{ range (where .Pages "Type" $type) }}
{{ if (ne .Params.hidden true) }}
<li>
- <span class="has-text-grey-dark">{{ .Date.Format "02 Jan" }}</span>
- — <a href="{{ .RelPermalink }}">{{ .Title }}</a>
+ <a class="is-block" href="{{ .RelPermalink }}">
+ <span class="has-text-grey-dark">{{ .Date.Format "02 Jan" }}</span> — {{ .Title }}
+ </a>
</li>
{{ end }}
{{ end }}
diff --git a/public/css/tdro-dark.css b/public/css/tdro-dark.css
index c4f51f5..f076897 100644
--- a/public/css/tdro-dark.css
+++ b/public/css/tdro-dark.css
@@ -7,6 +7,7 @@ img { box-shadow: none; }
body, .serif > a { color: #cad6e2 }
blockquote p { color: #b3c4d5; }
.highlight pre { background-color: #002e42; }
+.article__list li:hover { background-color: #003247; }
.posts__more__content { background-color: #002e42; }
.medium-zoom-overlay { background-color: #001f2c; background-color: rgba(0, 31, 44, .9); }
.navbar-item, .subtitle, .has-text-grey-dark { color: #ddd !important; }
diff --git a/public/css/tdro.css b/public/css/tdro.css
index 6d5d539..dbf46c3 100644
--- a/public/css/tdro.css
+++ b/public/css/tdro.css
@@ -5134,6 +5134,7 @@ a code { color: #0147b7; }
.focus-link:focus,
li a:focus,
+li a:focus span,
.post-header a:focus,
.serif > a:focus,
.underline:focus,