Fullcalendar remove buttons borders/shadow
Asked Answered
G

1

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

Gelasias answered 23/11, 2021 at 10:11 Comment(0)
F
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;
}
Fiche answered 23/11, 2021 at 10:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.