优化:面包屑的高度要与标题栏保持一致

This commit is contained in:
jingrow 2026-05-20 14:52:44 +08:00
parent 1e5d70e1f5
commit 0364aabb81
2 changed files with 6 additions and 2 deletions

View File

@ -169,7 +169,7 @@
<!-- 新建文件夹对话框 -->
<n-modal v-model:show="showNewFolderDialog" preset="dialog" :title="t('New Folder')" :show-icon="false" style="width: 400px">
<n-input v-model:value="newFolderName" :placeholder="t('Folder name')" @keydown.enter="createFolder" />
<n-input v-model:value="newFolderName" placeholder="" @keydown.enter="createFolder" />
<template #action>
<n-button @click="showNewFolderDialog = false">{{ t('Cancel') }}</n-button>
<n-button type="primary" :disabled="!newFolderName.trim()" @click="createFolder">{{ t('Create') }}</n-button>
@ -626,7 +626,9 @@ onMounted(() => {
display: flex;
align-items: center;
gap: 4px;
padding: 8px 16px;
padding: 0 24px;
height: 45px;
box-sizing: border-box;
border-bottom: 1px solid #f0f0f0;
font-size: 13px;
flex-shrink: 0;

View File

@ -21953,3 +21953,5 @@ msgstr "PDF 预览不可用"
msgid "Uploaded successfully"
msgstr "上传成功"
msgid "Attached To"
msgstr "关联"