Project

General

Profile

Actions

Bug #58489

closed

Vertical position of fields not properly aligned

Added by Stefan Neufeind over 10 years ago. Updated about 6 years ago.

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

em_vertical_positions.png (9.24 KB) em_vertical_positions.png Screenshow: fields with different vertical positions Stefan Neufeind, 2014-05-04 13:20
Actions #1

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

Actions #2

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;
}
Actions #3

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 #4

Updated by Benni Mack about 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF