From 02fbef3dbacd456fe80721d81381c1a72ae387e5 Mon Sep 17 00:00:00 2001 From: Julian_Chu Date: Mon, 29 Dec 2025 18:35:09 +0900 Subject: [PATCH] Move progress css style to dedicated file In kthoom implementation, there is also a DOM `
` If this part of css style stays in main.css, it also effects the kthoom implementation, therefore the progress bar will disappear when reading comic files (such as cbz). --- cps/static/css/main.css | 7 ------- cps/static/css/reader.css | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cps/static/css/main.css b/cps/static/css/main.css index f590eda3a..160735b82 100644 --- a/cps/static/css/main.css +++ b/cps/static/css/main.css @@ -918,10 +918,3 @@ input:-moz-placeholder { .icon-resize-small::before { content: "\e808"; } /* '' */ - -#progress { - right: 4rem; - bottom: 2px; - width: fit-content; - position: absolute; -} diff --git a/cps/static/css/reader.css b/cps/static/css/reader.css index a369cd97b..e43611796 100644 --- a/cps/static/css/reader.css +++ b/cps/static/css/reader.css @@ -72,3 +72,10 @@ right: 50px; // position: absolute; } + +#progress { + right: 4rem; + bottom: 2px; + width: fit-content; + position: absolute; +}