Bug #18004
closedCSH help bubble in Page Tree (alt_db_navframe.php)
0%
Description
When mouseover the help bubble at the top right of the frame (the CSH icon for the "Page Tree") in Firefox (2.0.0.11) display on/off scrollbar (blink).
The problem is the position of the icon and the size of the frame.
To fix it just add a new CSS declaration at line 286 in typo3/stylesheet.css:
div#treeOptionButtons A.typo3-csh-link SPAN.typo3-csh-inline {margin-left:-210px;}
(issue imported from #M7175)
Files
Updated by Francois Suter almost 17 years ago
This CSS correction works, but it is an incomplete solution to a more general problem.
The problem also happens at the bottom of the window, for example, at the bottom of the db_list.php view (with the help icon of the search box). So ideally we would need a more general method of positioning the bubble help but I don't know how this can be achieved.
Another problem happens in the Web > List view, with the help icon in the header of each table. The bubble help there is positioned differently for each table. Sometimes it is not right below the help icon, so it's necessary to move the mouse away to reach the bubble. But moving away from the icon closes the bubble... It's not a big issue, because the popup window can still be called up by clicking on the icon, but it's not very nice either.
Updated by Daniel Poetzinger almost 17 years ago
Idea:
The bubble needs something like: "position: absolute; top: x; left: x" and the containing element needs position: relative.
This way the bubble can be positioned as offset to the "?" icon itself.