From 89ea2fb87eb9bb704578b1c293b08f109b2b0718 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 14 May 2022 23:45:45 -0500 Subject: [PATCH] give the header nav links an underline on hover --- incorporealcms/static/css/dark.css | 4 ++++ incorporealcms/static/css/light.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/incorporealcms/static/css/dark.css b/incorporealcms/static/css/dark.css index db0ced8..2da2a0a 100644 --- a/incorporealcms/static/css/dark.css +++ b/incorporealcms/static/css/dark.css @@ -30,6 +30,10 @@ div.header a { color: #BBB; } +div.header a:hover, div.header a:active { + border-bottom: 1px solid #BBB; +} + table, th, td { border: 1px solid #333; } diff --git a/incorporealcms/static/css/light.css b/incorporealcms/static/css/light.css index 2ddd31e..017aa4e 100644 --- a/incorporealcms/static/css/light.css +++ b/incorporealcms/static/css/light.css @@ -30,6 +30,10 @@ div.header a { color: #444; } +div.header a:hover, div.header a:active { + border-bottom: 1px solid #444; +} + table, th, td { border: 1px solid #CCC; }