diff --git a/src/pages/ExportPage.scss b/src/pages/ExportPage.scss index 18ccf3d..26c2697 100644 --- a/src/pages/ExportPage.scss +++ b/src/pages/ExportPage.scss @@ -1145,14 +1145,27 @@ font-size: 12px; cursor: pointer; margin-left: auto; + display: inline-flex; + align-items: center; + gap: 6px; &:hover:not(:disabled) { background: var(--primary-hover); } - &:disabled { - opacity: 0.65; - cursor: not-allowed; + .selection-export-count { + min-width: 18px; + height: 18px; + padding: 0 5px; + border-radius: 999px; + background: rgba(255, 255, 255, 0.2); + color: #fff; + font-size: 11px; + font-weight: 700; + display: inline-flex; + align-items: center; + justify-content: center; + font-variant-numeric: tabular-nums; } } } diff --git a/src/pages/ExportPage.tsx b/src/pages/ExportPage.tsx index a86b1ed..324bcb4 100644 --- a/src/pages/ExportPage.tsx +++ b/src/pages/ExportPage.tsx @@ -3984,14 +3984,16 @@ function ExportPage() { > 清空 - + {selectedCount > 0 && ( + + )}