diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-04 21:35:48 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-04 21:35:48 +0000 |
commit | 2b27f20a9602549beb36244240c669ba86ecb0b6 (patch) | |
tree | 5839fe6b16809ada0ef373700824c192bfd9b162 /src | |
parent | Reset color of visited link in back to top button (diff) | |
download | miniserve-2b27f20a9602549beb36244240c669ba86ecb0b6.tar.gz miniserve-2b27f20a9602549beb36244240c669ba86ecb0b6.zip |
Added color on hovering row
Diffstat (limited to 'src')
-rw-r--r-- | src/renderer.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/renderer.rs b/src/renderer.rs index 2cb9ae7..89a9248 100644 --- a/src/renderer.rs +++ b/src/renderer.rs @@ -29,7 +29,7 @@ pub fn page( @if !is_root { @if let Some(parent) = page_parent { tr { - td { + td colspan="3" { span.chevron { (chevron_left()) } a.root href=(parent) { "Parent directory" @@ -185,7 +185,7 @@ fn css() -> Markup { line-height: 1.125rem; width: 33.333%; } - table thead tr th { + table tr th { padding: 0.5rem 0.625rem 0.625rem; font-weight: bold; color: #444444; @@ -193,6 +193,9 @@ fn css() -> Markup { table tr:nth-child(even) { background: #f6f6f6; } + table tr:hover { + background: #deeef7a6; + } a { text-decoration: none; color: #3498db; |