Actions
Bug #71414
closedCSH popup not shown completely
Status:
Closed
Priority:
Should have
Assignee:
Category:
Backend User Interface
Target version:
Start date:
2015-11-08
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
When editing the access rights of a user or user group the click on the question mark of "Web>Page" shows the CSH popup, but only the bottom 2 lines can be read.
Files
Updated by Riccardo De Contardi almost 9 years ago
That is the effect of the table container:
<div class="table-fit"><table class="table table-transparent table-hover">....</div>
that has the css property overflow-x set, and this cuts off the popup, which is in position:absolute
solution: use the class "table-responsive" from Bootstrap, that seems to take care of the problem
<div class="table-responsive"><table class="table table-transparent table-hover">....</div>
Updated by Frank Nägler almost 9 years ago
- Status changed from New to Accepted
- Assignee set to Frank Nägler
Updated by Gerrit Code Review almost 9 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/44702
Updated by Frank Nägler almost 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset c0b28572c1515f8626924a0d985db94fb261752f.
Updated by Riccardo De Contardi almost 7 years ago
- Status changed from Resolved to Closed
Actions