x-editable 和 bootstrap datepicker css 冲突

x-editable and bootstrap datepicker css conflict

我在包含 boostrap 数据时间选择器时遇到问题 (https://eonasdan.github.io/bootstrap-datetimepicker/) and X-editable (https://vitalets.github.io/x-editable/)

如果我包含两个 CSS 个文件:

bootstrap-datetimepicker.min.css 
bootstrap-editable.css

bootstrap datatimepicker 在点击后不显示日历,只显示时间。但是如果我删除

bootstrap-edtiable.css 

datatimepicker 工作正常。

如何解决冲突?

这解决了问题:

.datepicker > div {
    display: inherit;
}