From 89f06d35fd341a391eda4a98ccdaf42b8513bb40 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 8 Jan 2024 20:58:48 +0200 Subject: [PATCH] Revert "tools: update the style.css for fast.vlang.io pages, so that the rownumber counter is reversed" (Chrome does not support counting in reverse) This reverts commit 2765ca45b8f367d69511d5a5aa2e6d49b1912047. --- cmd/tools/fast/fast_style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/tools/fast/fast_style.css b/cmd/tools/fast/fast_style.css index 12dc2f4bd..ece46668b 100644 --- a/cmd/tools/fast/fast_style.css +++ b/cmd/tools/fast/fast_style.css @@ -41,10 +41,10 @@ table td:nth-child(3) { } table { - counter-reset: reversed(rowNumber); + counter-reset: rowNumber -1; } table tr { - counter-increment: rowNumber -1; + counter-increment: rowNumber; } table tr td:first-child::after { position: absolute; -- 2.39.5