From db90086dcafed75300c7257b5c8b9054d86e5fa7 Mon Sep 17 00:00:00 2001 From: x1ao4 Date: Sun, 10 Aug 2025 18:56:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=91=BD=E5=90=8D=E9=A2=84?= =?UTF-8?q?=E8=A7=88=E6=A8=A1=E6=80=81=E6=A1=86=E8=A1=A8=E5=A4=B4=E6=96=87?= =?UTF-8?q?=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; +}