fix(ui) : TabList — flèches reprennent les couleurs du bouton primary (hover/disabled)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-04 08:28:29 +02:00
parent 1a52582eda
commit 003fe54ee0
+8 -4
View File
@@ -7,8 +7,10 @@
data-test="tab-prev"
:disabled="!canPrev"
:class="[
'text-m-primary',
canPrev ? 'cursor-pointer hover:text-m-primary/70' : 'cursor-not-allowed text-m-primary/30',
'transition-colors',
canPrev
? 'cursor-pointer text-m-btn-primary hover:text-m-btn-primary-hover active:text-m-btn-primary-active'
: 'cursor-not-allowed text-m-disabled',
]"
@click="prev"
>
@@ -56,8 +58,10 @@
data-test="tab-next"
:disabled="!canNext"
:class="[
'text-m-primary',
canNext ? 'cursor-pointer hover:text-m-primary/70' : 'cursor-not-allowed text-m-primary/30',
'transition-colors',
canNext
? 'cursor-pointer text-m-btn-primary hover:text-m-btn-primary-hover active:text-m-btn-primary-active'
: 'cursor-not-allowed text-m-disabled',
]"
@click="next"
>