+
@@ -79,7 +79,6 @@ const handleNavigationClick = (key: string) => {
&--active {
background-color: rgba(19, 152, 127, 0.2);
color: #13987f;
- font-weight: 600;
.navigation-item__icon svg {
color: #13987f;
@@ -98,11 +97,6 @@ const handleNavigationClick = (key: string) => {
}
}
-.navigation-item__label {
- font-size: 14px;
- font-weight: inherit;
-}
-
// 响应式适配
@media (max-width: 800px) {
.side-navigation {
diff --git a/src/components/fileManager/UserItem.vue b/src/components/fileManager/UserItem.vue
index ee470b07..25b42d16 100644
--- a/src/components/fileManager/UserItem.vue
+++ b/src/components/fileManager/UserItem.vue
@@ -94,8 +94,8 @@ const handleAvatarError = (event: Event) => {
.user-item {
display: flex;
align-items: center;
- padding: 12px;
- border-radius: 8px;
+ padding: 10px 8px;
+ border-radius: 12px;
cursor: pointer;
transition: all 0.2s ease;
user-select: none;
@@ -106,7 +106,7 @@ const handleAvatarError = (event: Event) => {
&--selected {
background-color: #e8f4f1;
- border: 1px solid #13987f;
+ box-shadow: inset 0 0 0 1px #13987f;
}
}
diff --git a/src/components/fileManager/UserList.vue b/src/components/fileManager/UserList.vue
index d9e48f83..df1d6011 100644
--- a/src/components/fileManager/UserList.vue
+++ b/src/components/fileManager/UserList.vue
@@ -10,7 +10,12 @@
:placeholder="getSearchPlaceholder()"
:input-props="{ spellcheck: false }"
clearable
- class="search-input"
+ spellCheck="false"
+ autoComplete="off"
+ autoCorrect="off"
+ autoCapitalize="off"
+ class="rounded-6px border-(solid 1px [--line-color]) w-full relative text-12px"
+ size="small"
@input="handleSearch">
-