From 4ea824e86f0410c50487cf8efc46e9847563fb46 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 1 Nov 2021 23:20:42 -0500 Subject: [PATCH] provide some comments explaining the css files --- incorporealcms/static/css/dark.css | 1 + incorporealcms/static/css/light.css | 1 + incorporealcms/static/css/plain.css | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/incorporealcms/static/css/dark.css b/incorporealcms/static/css/dark.css index 854d854..e3a5230 100644 --- a/incorporealcms/static/css/dark.css +++ b/incorporealcms/static/css/dark.css @@ -1,3 +1,4 @@ +/* common styling via the base.css, used in light and dark */ @import '/static/css/base.css'; html { diff --git a/incorporealcms/static/css/light.css b/incorporealcms/static/css/light.css index e9b83f3..923b827 100644 --- a/incorporealcms/static/css/light.css +++ b/incorporealcms/static/css/light.css @@ -1,3 +1,4 @@ +/* common styling via the base.css, used in light and dark */ @import '/static/css/base.css'; html { diff --git a/incorporealcms/static/css/plain.css b/incorporealcms/static/css/plain.css index 264e44a..46782ef 100644 --- a/incorporealcms/static/css/plain.css +++ b/incorporealcms/static/css/plain.css @@ -1,4 +1,4 @@ - +/* specify almost no styling, just fix some image rendering */ .img-25 { max-width: 25% !important; }