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:
@@ -7,8 +7,10 @@
|
|||||||
data-test="tab-prev"
|
data-test="tab-prev"
|
||||||
:disabled="!canPrev"
|
:disabled="!canPrev"
|
||||||
:class="[
|
:class="[
|
||||||
'text-m-primary',
|
'transition-colors',
|
||||||
canPrev ? 'cursor-pointer hover:text-m-primary/70' : 'cursor-not-allowed text-m-primary/30',
|
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"
|
@click="prev"
|
||||||
>
|
>
|
||||||
@@ -56,8 +58,10 @@
|
|||||||
data-test="tab-next"
|
data-test="tab-next"
|
||||||
:disabled="!canNext"
|
:disabled="!canNext"
|
||||||
:class="[
|
:class="[
|
||||||
'text-m-primary',
|
'transition-colors',
|
||||||
canNext ? 'cursor-pointer hover:text-m-primary/70' : 'cursor-not-allowed text-m-primary/30',
|
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"
|
@click="next"
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user