vuetifyjs/vuetify

[Feature Request] Add a way to disable the hover effect on <v-expansion-panels>

Closed

#21,615 opened on Jun 20, 2025

 (1 comment) (0 reactions) (0 assignees)TypeScript (7,139 forks)batch import
C: VExpansionPanelsT: featuregood first issue

Repository metrics

Stars
 (40,995 stars)
PR merge metrics
 (Avg merge 59d 10h) (8 merged PRs in 30d)

Description

Problem to solve

This feature allows developers to disable the hover effect from <v-expansion-panels> without relying on CSS rules. Right now the desired result can be achieved with this:

.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
  --v-hover-opacity: 0;
}

Proposed solution

Add a prop or a SASS variable to control above mentioned behavior.

Contributor guide