From: Scott Worley Date: Thu, 24 Oct 2024 17:24:06 +0000 (-0700) Subject: Lighten background shading X-Git-Tag: v0.6.0~6 X-Git-Url: http://git.scottworley.com/tablify/commitdiff_plain/defb3aedeec6589c054ebf909d54ef1f94e5d52a?ds=sidebyside;hp=61a7497779d8e9a7d7b73a53c55d252177d68e1c Lighten background shading --- diff --git a/Changelog b/Changelog index 57c4747..ba419d9 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ ## [Unreleased] +- Lighten background shading ## [0.5.1] - 2024-10-04 - Fix hover highlight for relabeled columns diff --git a/src/lib.rs b/src/lib.rs index c1a4761..2e9c7f6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -82,7 +82,7 @@ const HEADER: &str = r#" tr.key > th > div > div { width: 5em; transform-origin: bottom left; transform: translateX(1em) rotate(-65deg) } td { border: thin solid gray; } td.leftover { text-align: left; border: none; padding-left: .4em; } - td.yes { border: thin solid gray; background-color: #ddd; } + td.yes { border: thin solid gray; background-color: #eee; } /* h/t https://stackoverflow.com/questions/5687035/css-bolding-some-text-without-changing-its-containers-size/46452396#46452396 */ .highlight { text-shadow: -0.06ex 0 black, 0.06ex 0 black; }