Bug #22479
closedPositioning of toolbar elements broken, especially in Safari
0%
Description
After introducing the viewport layout to the backend (#22319), the toolbar menu positioning is not correct.
I tested it in Firefox, where the positioning is OK when the backend is loaded, but misplaced by 2px after resizing, and in Safari on Mac where the positioning is misplaced by ~100px after loading and 2px after resizing the window.
See attached Screenshots
(issue imported from #M14144)
Files
Updated by Stefan Galinski over 14 years ago
At least the firefox issue isn't related to the viewport patch! I got the same problem with TYPO3 4.3. I will try to fix the issue anyway...
Updated by Stefan Galinski over 14 years ago
Great! Both bugs are issues with prototype or the current toolbar implementation. Nothing seems to be releated to my viewport patch directly. A patch follows soon...
Updated by Soren Malling over 14 years ago
I guess this is a misspell? :
- Toolbar: null,
+ TopbBar: null,
and
- this.Toolbar = Ext.ComponentMgr.get('typo3-toolbar');
+ this.TopbBar = Ext.ComponentMgr.get('typo3-topbar');
Shouldn't it be
+ TopBar: null,
and
+ this.TopBar = Ext.ComponentMgr.get('typo3-topbar');
without lowercase "b"? Or what is the extra b for ? :)
Updated by Stefan Galinski over 14 years ago
Hi Soren,
You are completely right. I will fix that in a second version of the patch. Currently I must wait for the integration of http://bugs.typo3.org/view.php?id=14195.