Air Date Picker by Zeroqode

Hello @ZeroqodeSupport , @ZeroqodeTeam or anybody else
Do you know if there is a way to set the background of the Air Date Picker by Zeroqode through CSS or other ways ?

I mean the display calendar this way :

I managed to change the color through the inspector but cannot figure out how to change it from bubble…

The plugin is amazing btw

Thanks

Giovanni

hey there! How did you target the background color of the picker? I am trying to find the class through the inspector but cannot find it. Thank you in advance!

I was able to do this with the following via an HTML plugin:

<style>

.air-datepicker {
   background: #2a2a2a !important;
   border: rgba(0,0,0,0) !important;
   border-radius: 0px !important;
   box-shadow: 0px !important;
   --adp-border-offset: 3px !important;
   margin-top: -10px !important;
}

.air-datepicker-nav {
   background: #2a2a2a !important;
}

.air-datepicker nav {
   color: #BDBDBD !important;
}

.air-datepicker-nav--title i {
   color: #BDBDBD !important;
}

.air-datepicker--pointer:after {
   background: #2A2A2A !important;
}

</style>

Hi there!
How did you find out which elements to change?
I’m trying to customize more things and it would be rally helpful to take a look at what can I modify.
Thanks a lot!