Hello, I wanted to set up a cell with a date in inlineDatePeaker. So tha

Hello, I wanted to set up a cell with a date in inlineDatePeaker. So that when you click the background of the cell, it becomes a different color, but something doesn’t work, I see that there is a setting using css, could you provide a couple of lines?


Hello. For Vaadin 23 you can add the following CSS rule for vaadin-month-calendar:

[part='date']
[selected]
::before {
  background-color: green;
  --lumo-primary-color: darkgreen;
}

--lumo-primary-color controls the border color

Hallo, I can't get the CSS to work, can somebody provide a full css file?