Home > Back-end >  Fullcalendar remove buttons borders/shadow
Fullcalendar remove buttons borders/shadow

Time:11-24

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

CodePudding user response:

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;
}
  • Related