From 32006872f976f5e9b789b97be2ef639720d9f0e3 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 31 Jan 2024 10:23:36 -0500 Subject: [PATCH] FIX: Only set z index --- docs/source/css/extra.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/css/extra.css b/docs/source/css/extra.css index 68cfdaad8..19635e5bc 100644 --- a/docs/source/css/extra.css +++ b/docs/source/css/extra.css @@ -112,14 +112,13 @@ td p { div.first-col-sticky+table td:first-child, th:first-child { position: sticky; left: 0; - z-index: 4 !important; /* Ensure the left column stickiness (dataset) takes priority */ + z-index: 1; /* Ensure the left column stickiness (dataset) takes priority */ background-color: var(--md-default-bg-color); border-right: .05rem solid var(--md-typeset-table-color); } div.first-row-sticky+table th { position: sticky; top: 0; - z-index: 3; background-color: var(--md-default-bg-color); border-bottom: .05rem solid var(--md-typeset-table-color); }