5

I try removing the Fullcalendar Buttons borders.

.fc-button { border: 0px !important; }

But when I click on it a new border appear : fullcalendar text button

And didn't found which element display this border.

Note : On click the DOM not seems to change enter image description here

1 Answers1

8

I think that it comes from the box-shadow property that is added to the button thanks to the :focus pseudo-class.

You can try adding this rule :

.fc-button {
  box-shadow: none !important;
}
Tom
  • 4,972
  • 3
  • 10
  • 28