Skip to content

Commit

Permalink
fix(slider): move ripple and focus ring beneath handle
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 595437166
  • Loading branch information
asyncLiz authored and Copybara-Service committed Jan 3, 2024
1 parent 5dc870b commit 68b078b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slider/internal/slider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,13 +435,13 @@ export class Slider extends sliderBaseClass {
onTop,
isOverlapping,
})}">
<div class="handleNub"><md-elevation></md-elevation></div>
${when(this.labeled, () => this.renderLabel(label))}
<md-focus-ring part="focus-ring" for=${name}></md-focus-ring>
<md-ripple
for=${name}
class=${name}
?disabled=${this.disabled}></md-ripple>
<div class="handleNub"><md-elevation></md-elevation></div>
${when(this.labeled, () => this.renderLabel(label))}
</div>`;
}

Expand Down

0 comments on commit 68b078b

Please sign in to comment.