修复选择需转存的文件夹和选择起始文件模态框的未匹配或无法识别剧集编号的状态样式

This commit is contained in:
x1ao4 2025-08-10 11:22:34 +08:00
parent fbd797f6cd
commit 35e9071028

View File

@ -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 */
}