Fix Z indexes for calendar
This commit is contained in:
parent
7c8a180ccf
commit
eeccffccf7
|
@ -90,6 +90,10 @@
|
||||||
height: 20em;
|
height: 20em;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
.datetimepicker-wrapper {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 3;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="dropdown-menu" id="dropdown-menu" role="menu">
|
<div class="dropdown-menu" id="dropdown-menu" role="menu">
|
||||||
<div class="dropdown-content" style="position:absolute; z-index:10;">
|
<div class="dropdown-content" style="position:absolute; z-index:2;">
|
||||||
{% for column in table.columns %}
|
{% for column in table.columns %}
|
||||||
{% if column.name in show %}
|
{% if column.name in show %}
|
||||||
<a class="btn-shift-column dropdown-item"
|
<a class="btn-shift-column dropdown-item"
|
||||||
|
|
Loading…
Reference in New Issue