Eonasdan/bootstrap-datetimepicker arrow icon not showing on Safari and showing blue squares on Chrome

后端 未结 3 2093
攒了一身酷
攒了一身酷 2021-01-15 22:09

My Datetime picker is working fine but the arrow to navigate through time and day are not showing properly.

Safari

Chrome

I\'ve tried to set back th

3条回答
  •  隐瞒了意图╮
    2021-01-15 22:51

       $('.dateP').datetimepicker(
        {
    
            icons: 
            {
                up: 'fa fa-angle-right',
                down: 'fa fa-angle-left'
            }
      });
    

    In this way you can use your custom icons as glyphicons have been deprecated!

提交回复
热议问题