From 7193ed0b95d8dce0fb836ea1a28a497817edc9be Mon Sep 17 00:00:00 2001 From: Matthias Schiffer <mschiffer@universe-factory.net> Date: Sat, 16 Sep 2023 21:33:52 +0200 Subject: [PATCH] docs: css: add .strike class Add a custom CSS class to support strike-through text without depending on a specific theme. --- docs/_static/css/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css index c9996e0ee..5779a9dd2 100644 --- a/docs/_static/css/custom.css +++ b/docs/_static/css/custom.css @@ -1,3 +1,7 @@ +.strike { + text-decoration: line-through; +} + /* This fixes the vertical position of list markers when the first element in the <li> is a <pre> block -- GitLab