aralejs/calendar

如何指定z-index

Closed this issue · 1 comments

配合arale-dialog使用时,dialog始终在calendar之上,设置参数zIndex不能生效。

.ui-calendar {
  z-index: 1001;
}

or

new Calendar({
  ...
}).after('show', function() {
  this.element.css('z-index', 1001);
});