How could I set border-radius?
Any suggestion?
On what, exactly?
At all, but I dit it! Just added a css and worked!!
Wow. Maybe dropping the css in as an answer would have helped.
Of course!! I've created a file to control my css and added this class there:
.DateRangePickerInput {
border-radius: 5px;
border: 0px;
overflow: hidden;
...
}
Adding overflow: hidden; to the .DateRangePickerInput is necessary it seems to get border-radius to appear properly. Even for the default border-radius of 2px.
This is how it appears with .DateRangePickerInput { border-radius: 14px; }

Now with .DateRangePickerInput { border-radius: 14px; overflow: hidden; }
