diff --git a/.github/release.md b/.github/release.md index f80149d..0ee87e6 100644 --- a/.github/release.md +++ b/.github/release.md @@ -2,7 +2,7 @@ ##### 更符合 GitHub 风格 -- 优化创建仓库标签管理菜单项的样式 +- 优化创建标签菜单的菜单项的样式 ### 🐞 Fix diff --git a/styles/public/dropdown.ts b/styles/public/dropdown.ts index 9eb8a93..428df22 100644 --- a/styles/public/dropdown.ts +++ b/styles/public/dropdown.ts @@ -192,11 +192,16 @@ export const selectionDropdown = css` border-top-left-radius: ${otherThemeVars.border.radius} !important; border-top-right-radius: ${otherThemeVars.border.radius} !important; } - // 针对创建仓库的工单标签菜单中的标签换行和颜色 - .ui.search.selection.dropdown > .menu > .item { - flex-wrap: wrap; - > i { - color: ${themeVars.color.text.light.num1}; + // 工单标签菜单中的标签换行和颜色 + // 标签页面的标签选择框 + .page-content.repository.labels .ui.selection.dropdown.active, + // 创建仓库页面的标签选择框 + .ui.search.selection.dropdown { + > .menu > .item { + flex-wrap: wrap; + > i { + color: ${themeVars.color.text.light.num1}; + } } } `;