File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ function handlePageSizeChange(event: Event) {
191191 <!-- Previous button -->
192192 <button
193193 type =" button"
194- class =" p-1.5 rounded hover:bg-bg -muted text-fg-muted hover:text-fg disabled:opacity-40 disabled:cursor-not-allowed transition-colors duration-200 focus-visible:ring-2 focus-visible: ring-fg focus-visible: ring-offset-1"
194+ class =" p-1.5 rounded text-fg -muted transition-colors duration-200 hover:( text-fg bg-bg-muted) focus-visible:( ring-2 ring-fg ring-offset-1) disabled:(opacity-40 cursor-not-allowed) "
195195 :disabled =" !canGoPrev"
196196 :aria-label =" $t('filters.pagination.previous')"
197197 @click =" goPrev"
@@ -206,11 +206,11 @@ function handlePageSizeChange(event: Event) {
206206 v-else
207207 type =" button"
208208 :disabled =" isPageButtonDisabled(page)"
209- class =" min-w-[32px] h-8 px-2 font-mono text-sm rounded transition-colors duration-200 focus-visible:ring-2 focus-visible: ring-fg focus-visible: ring-offset-1"
209+ class =" min-w-[32px] h-8 px-2 font-mono text-sm rounded transition-colors duration-200 focus-visible:( ring-2 ring-fg ring-offset-1) disabled:(opacity-40 cursor-not-allowed) "
210210 :class ="
211211 page === currentPage
212212 ? 'bg-fg text-bg'
213- : 'text-fg-muted hover:text-fg hover: bg-bg-muted'
213+ : 'text-fg-muted hover:( text-fg bg-bg-muted) '
214214 "
215215 :aria-current =" page === currentPage ? 'page' : undefined"
216216 @click =" goToPage(page)"
@@ -222,7 +222,7 @@ function handlePageSizeChange(event: Event) {
222222 <!-- Next button -->
223223 <button
224224 type =" button"
225- class =" p-1.5 rounded hover:bg-bg -muted text-fg-muted hover:text-fg disabled:opacity-40 disabled:cursor-not-allowed transition-colors duration-200 focus-visible:ring-2 focus-visible: ring-fg focus-visible: ring-offset-1"
225+ class =" p-1.5 rounded text-fg -muted transition-colors duration-200 hover:( text-fg bg-bg-muted) focus-visible:( ring-2 ring-fg ring-offset-1) disabled:(opacity-40 cursor-not-allowed) "
226226 :disabled =" !canGoNext"
227227 :aria-label =" $t('filters.pagination.next')"
228228 @click =" goNext"
You can’t perform that action at this time.
0 commit comments