8.0.3 File Manager dropdown cropped on blank install
Permalink
I am just checking whether it is just me that has noticed that on a blank install of 8.0.3. that the file manager dropdown on the top left is cropped?
After I have uploaded my first image, I select it in the file manager list and click the dropdown on the top left but the panel is cropped.
I am not sure if this is an issue that is unique to my install?
I have attached an image.
After I have uploaded my first image, I select it in the file manager list and click the dropdown on the top left but the panel is cropped.
I am not sure if this is an issue that is unique to my install?
I have attached an image.
Hi lwduk,
This appears to be fixed in the current develop branch on GitHub.
This appears to be fixed in the current develop branch on GitHub.
@lwduk
It looks like the current develop branch CSS was not built correctly. When built correctly, the issue is still active.
A pull request to fix this has been made
It looks like the current develop branch CSS was not built correctly. When built correctly, the issue is still active.
A pull request to fix this has been made
The issue is caused by the tables minimum height settings. When a couple of files are uploaded the file manager table is not deep enough and so you are supposed to scroll down using the scroll bar to reveal the rest of the dropdown!
I temporarily solved this by increasing the min-height
.ccm-ui .table-responsive {
overflow-x: auto;
min-height: 400px;
}
This issue is only a problem when you begin uploading a few files but it is a poor UI experience.