Skip to content

Conversation

Mkranj
Copy link

@Mkranj Mkranj commented Sep 16, 2025

Initially noticed this in the Python version of Shiny.

This changes the cursor that appears when hovering over the line in sliderInputs. Before the change, the cursor appears as an up-down arrow, which is likely to confuse users:
slider_before

After, the cursor appears as a pointer, which makes sense because clicking it transports the slider point / multi range slider to the clicked place:
slider_after

Here is a minimal app to showcase this behavior:

library(shiny)

ui <- fluidPage(
  sliderInput("single", label = "Single slider", 1, 10, 2),
  sliderInput("multiple", label = "Two value slider", 1, 10, value = c(3,6))
)

server <- function(input, output, session) {

}

shinyApp(ui, server)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant