Skip to content

How can we disable the arrow that moves to previous/next month in inline calendar? #1534

Discussion options

You must be logged in to vote

Option 1

Disable pointer events

  • Buttons will still be visible...
  • ...but clicking on them is ignored
.ui.calendar .prev.link,
.ui.calendar .next.link {
  pointer-events:none; 
}

Option 2

Remove the buttons

.ui.calendar .prev.link,
.ui.calendar .next.link {
  display:none; 
}

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by lubber-de
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #1534 on October 06, 2020 21:14.