From 35e90710289bdea46b93428d828666e9cc1f6291 Mon Sep 17 00:00:00 2001 From: x1ao4 Date: Sun, 10 Aug 2025 11:22:34 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E9=9C=80=E8=BD=AC=E5=AD=98=E7=9A=84=E6=96=87=E4=BB=B6=E5=A4=B9?= =?UTF-8?q?=E5=92=8C=E9=80=89=E6=8B=A9=E8=B5=B7=E5=A7=8B=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E6=A8=A1=E6=80=81=E6=A1=86=E7=9A=84=E6=9C=AA=E5=8C=B9=E9=85=8D?= =?UTF-8?q?=E6=88=96=E6=97=A0=E6=B3=95=E8=AF=86=E5=88=AB=E5=89=A7=E9=9B=86?= =?UTF-8?q?=E7=BC=96=E5=8F=B7=E7=9A=84=E7=8A=B6=E6=80=81=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/static/css/main.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/app/static/css/main.css b/app/static/css/main.css index d9964a3..f352d10 100644 --- a/app/static/css/main.css +++ b/app/static/css/main.css @@ -6338,3 +6338,35 @@ body .selectable-files tr.selected-file:has([style*="white-space: normal"]) .fil #fileSelectModal[data-modal-type="preview"] .table td.col-rename > div[style*="white-space: normal"][style*="word-break: break-word"] { margin-bottom: 7.5px !important; /* 任务列表页面展开状态下边距增加0.5px */ } + +/* 选择需转存的文件夹模态框重命名列 × 样式 */ +#fileSelectModal[data-modal-type="source"] .episode-x { + position: relative; + top: 0.5px; /* 下移0.5px */ + display: inline; + margin-right: 2px; +} + +/* 选择需转存的文件夹模态框重命名列无法识别剧集编号样式 */ +#fileSelectModal[data-modal-type="source"] .episode-number-text { + position: relative; + top: 1.5px; /* 下移1.5px */ + display: inline-block; + left: 0px; /* 右移2px */ +} + +/* 选择起始文件模态框重命名列 × 样式 */ +#fileSelectModal[data-modal-type="start-file"] .episode-x { + position: relative; + top: 0.5px; /* 下移0.5px */ + display: inline; + margin-right: 2px; +} + +/* 选择起始文件模态框重命名列无法识别剧集编号样式 */ +#fileSelectModal[data-modal-type="start-file"] .episode-number-text { + position: relative; + top: 1.5px; /* 下移1.5px */ + display: inline-block; + left: 0px; /* 右移2px */ +} From db90086dcafed75300c7257b5c8b9054d86e5fa7 Mon Sep 17 00:00:00 2001 From: x1ao4 Date: Sun, 10 Aug 2025 18:56:47 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=91=BD=E5=90=8D?= =?UTF-8?q?=E9=A2=84=E8=A7=88=E6=A8=A1=E6=80=81=E6=A1=86=E8=A1=A8=E5=A4=B4?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E7=9A=84=E6=98=BE=E7=A4=BA=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/static/css/main.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app/static/css/main.css b/app/static/css/main.css index f352d10..6494d01 100644 --- a/app/static/css/main.css +++ b/app/static/css/main.css @@ -6370,3 +6370,32 @@ body .selectable-files tr.selected-file:has([style*="white-space: normal"]) .fil display: inline-block; left: 0px; /* 右移2px */ } + +/* 任务列表、文件整理、影视发现页面的命名预览模态框表头样式 */ +#fileSelectModal[data-modal-type="preview"] .table th.col-filename, +#fileSelectModal[data-modal-type="preview-filemanager"] .table th.col-filename { + /* 文件名列的表头样式 */ + font-weight: 600 !important; + font-family: inherit !important; + letter-spacing: normal !important; + padding-top: 4px !important; +} + +#fileSelectModal[data-modal-type="preview"] .table th.col-rename, +#fileSelectModal[data-modal-type="preview-filemanager"] .table th.col-rename { + /* 命名预览列的表头样式 */ + font-weight: 600 !important; + font-family: inherit !important; + letter-spacing: normal !important; + padding-top: 4px !important; +} + +/* 确保其他表头样式不受影响 */ +#fileSelectModal .table th.col-size, +#fileSelectModal .table th.col-date, +#fileSelectModal .table th.col-action { + /* 保持原有的表头样式 */ + font-weight: normal; + font-family: inherit; + letter-spacing: normal; +}