From 5f6dbe6d69925659ce6009f141ae55da1f741ee7 Mon Sep 17 00:00:00 2001
From: Matthias Schiffer <mschiffer@universe-factory.net>
Date: Thu, 28 Sep 2023 10:45:36 +0200
Subject: [PATCH] docs: remove remaining CSS workaround (#2737)

Remove a workaround for a CSS issue in older Firefox versions, which was
recently fixed (at some point between Firefox 102 and 108). Firefox 108+
now displays the bullet points at the right vertical position even without
the hack in [1].

[1] https://gluon.readthedocs.io/en/latest/releases/v2018.1.html#site-conf
---
 docs/_static/css/custom.css | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css
index 5779a9dd2..636462ea7 100644
--- a/docs/_static/css/custom.css
+++ b/docs/_static/css/custom.css
@@ -1,14 +1,3 @@
 .strike {
 	text-decoration: line-through;
 }
-
-/*
-	This fixes the vertical position of list markers when the first
-	element in the <li> is a <pre> block
-
-	Scrolling inside the <pre> block is still working as expected
-*/
-.rst-content pre.literal-block,
-.rst-content div[class^='highlight'] pre {
-	overflow: visible;
-}
-- 
GitLab