From 3ca4dcc8070d16718fd137305fbff1667c08e445 Mon Sep 17 00:00:00 2001 From: xenofem Date: Fri, 26 Jan 2024 16:29:24 -0500 Subject: [PATCH] use thicker strikethrough on paused duration --- dlibrary/static/viewer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlibrary/static/viewer.js b/dlibrary/static/viewer.js index 3803801..1f8fc81 100644 --- a/dlibrary/static/viewer.js +++ b/dlibrary/static/viewer.js @@ -72,7 +72,7 @@ document.addEventListener('DOMContentLoaded', () => { durationDisplay.textContent = duration.toLocaleString() + 's'; if (paused) { - durationDisplay.style.textDecoration = "line-through"; + durationDisplay.style.textDecoration = "line-through 2px"; stopTimer(); } else { durationDisplay.style.textDecoration = "";