Hi Abdul,
I think I found the issue, it has conflict with Bootstrap 3 CSS with .table-condensed where the padding is 5px. Maybe your UI guys missed this.
div#fd.es-widget-calendar thead > tr > th,
div#fd.es-widget-calendar tbody > tr > td {
padding: 3px;
border-radius: 3px;
}
maybe it should be:
div#fd.es-widget-calendar table.table-condensed thead > tr > th,
div#fd.es-widget-calendar table.table-condensed tbody > tr > td {
padding: 3px;
border-radius: 3px;
}
Thanks,
Jackson