CSS elements from Bootsrap that are used in the Date Range Picker. V1.0
If you are not using Bootsrap for your project but you like using the Date Range Picker you can now use this css file containing all the CSS elements from Boostrap used in the Date Range Picker.
You first need to add the add Moment.js, daterangepicker.js, and daterangepicker.css. Lastly add this repo CSS file to your CSS path, and then add the following reference to your header tag.
<link href="css/bootsrap-date-range-picker.css" rel="stylesheet"></link>
If you want to use the chevron right and left in the daterange picker you can simply add a reference to the icons in your CSS files. See an example below. In this example I am using Google Icons you can do the same if you want.
.glyphicon.glyphicon-chevron-left:before{
content: "\E314";
font-family: 'Material Icons';
-webkit-font-feature-settings: 'liga';
}
.glyphicon.glyphicon-chevron-right:before{
content: "\E315";
font-family: 'Material Icons';
-webkit-font-feature-settings: 'liga';
}
MIT