diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-02 20:23:42 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-02 20:23:42 +0000 |
commit | 9c0a5ad85af57b4646c64cc14102d8dc7a8011bc (patch) | |
tree | e53d7c5665637af2f3439a7f720be277751f07c3 /src/renderer.rs | |
parent | Added back to top button + various CSS improvements + re-order functions in r... (diff) | |
download | miniserve-9c0a5ad85af57b4646c64cc14102d8dc7a8011bc.tar.gz miniserve-9c0a5ad85af57b4646c64cc14102d8dc7a8011bc.zip |
Reset color of visited link in back to top button
Diffstat (limited to 'src/renderer.rs')
-rw-r--r-- | src/renderer.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/renderer.rs b/src/renderer.rs index e419cb0..2cb9ae7 100644 --- a/src/renderer.rs +++ b/src/renderer.rs @@ -249,7 +249,9 @@ fn css() -> Markup { padding: 1rem 1.1rem; color: #444444; } - + .back:visited { + color: #444444; + } .back:hover { color: #3498db; text-decoration: none; |