Actions
Bug #58489
closedVertical position of fields not properly aligned
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2014-05-04
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
In a row fields have various vertical positions
Files
Updated by Stefan Neufeind over 10 years ago
Seems to be due to the height of icons vs. the line-height. The extension-version would have an icon "show all versions", although for some reason here no icon shows up. Is there something like a "line-min-height"? sigh
Updated by Riccardo De Contardi over 9 years ago
It is sufficient to add to the arrow icons a vertical-align:middle;
the inspector says:
#terTableWrapper .ui-icon { width: 16px; height: 16px; background-image: url('../../typo3/sysext/extensionmanager/Resources/Public/Images/ui-icons_222222_256x240.png'); background-position: -64px -16px; }
but the anchor has class: "versions-all ui-icon ui-icon-triangle-1-s"
so it could become:
#terTableWrapper .ui-icon { background-image: url('../../typo3/sysext/extensionmanager/Resources/Public/Images/ui-icons_222222_256x240.png'); background-position: -64px -16px; height: 16px; vertical-align:middle; width: 16px; }
Updated by Stefan Neufeind over 9 years ago
- Status changed from New to Resolved
Resolves in CMS 7, no real need to fix that in 6.2 anymore.
Actions