Actions
Bug #92912
closedDatepicker flatpickr overlayed by text/checkbox (z-index)
Status:
Closed
Priority:
Should have
Assignee:
Category:
Backend User Interface
Target version:
-
Start date:
2020-11-23
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
datepicker, flatpickr, z-index
Complexity:
Is Regression:
Sprint Focus:
Description
The new datetime picker (Task #91606) is overlayed by other form elements (e.g. checkbox to enable fields).
This is a problem with the CSS z-index.
Requirement¶
- current master (e.g. e3746d4454f978bb18065d9d838cbcaee4c0b49d)
Steps to reproduce¶
TCA:- One input with
'renderType' => 'inputDateTime'
- multiple optional fields below
- Edit a record in the backend
- Open the datepicker
Example (TCA):
'a' => [
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'eval' => 'datetime,null',
],
],
'b' => [
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'eval' => 'time,null',
],
],
Actual result¶
The checkbox is visible through the dialog (marked with red arrow)
Expected result¶
The checkbox should not be visible through the datepicker dialog.
Note: edited with developer tools
Additional notes¶
- The datepicker .flatpickr-calendar.open
has the z-index 100
- The checkbox .t3-form-field-eval-null-checkbox
has the z-index 150
Files
Updated by Georg Ringer almost 4 years ago
- Related to Task #91606: Replace bootstrap-datetime picker added
Updated by Gerrit Code Review almost 4 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/66932
Updated by Andreas Fernandez almost 4 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset b34499c90a13153654d38df364755353644146e1.
Actions