Fix Z indexes for calendar

This commit is contained in:
Mark Veidemanis 2022-08-12 08:25:41 +01:00
parent 7c8a180ccf
commit eeccffccf7
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
2 changed files with 5 additions and 1 deletions

View File

@ -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>

View File

@ -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"