From 411ecebbc647c3760868c6305af66e65447457b2 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sun, 21 Feb 2021 10:14:42 -0600 Subject: [PATCH] fold some nav/style menu styles into header unnecessarily duplicated now that I have div.header, and also useful for when I start the error handling pages --- incorporealcms/static/css/dark.css | 5 +---- incorporealcms/static/css/light.css | 5 +---- incorporealcms/static/css/style.css | 5 +---- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/incorporealcms/static/css/dark.css b/incorporealcms/static/css/dark.css index 426dbb6..9c038e0 100644 --- a/incorporealcms/static/css/dark.css +++ b/incorporealcms/static/css/dark.css @@ -35,13 +35,10 @@ a:hover, a:active { div.header { background: #222; border-bottom: 1px solid #222; -} - -div.nav, div.styles { color: #BBB; } -div.nav a, div.styles a { +div.header a { color: #BBB; } diff --git a/incorporealcms/static/css/light.css b/incorporealcms/static/css/light.css index 58c9963..8b268e4 100644 --- a/incorporealcms/static/css/light.css +++ b/incorporealcms/static/css/light.css @@ -35,13 +35,10 @@ a:hover, a:active { div.header { background: #EEE; border-bottom: 1px solid #CCC; -} - -div.nav, div.styles { color: #666; } -div.nav a, div.styles a { +div.header a { color: #666; } diff --git a/incorporealcms/static/css/style.css b/incorporealcms/static/css/style.css index 2b4b5f9..bbf425a 100644 --- a/incorporealcms/static/css/style.css +++ b/incorporealcms/static/css/style.css @@ -66,14 +66,11 @@ a:active { div.header { display: flex; justify-content: space-between; -} - -div.nav, div.styles { font-size: 0.75em; padding: 0.25em 0.5em; } -div.nav a, div.styles a { +div.header a { border-bottom: none; }