2010-05-31 Steffen Kamper <info@sk-typo3.de>
+ * Fixed bug #14553: topFrameH configuration option doesn't work anymore (Thanks to Stefan Galinski)
* Fixed bug #14530: Missing icons in new BE skin (sprites) v7
* Fixed bug #14547: Flags in localization view (list view) have no title
* Fixed bug #14530: Missing icons in new BE skin (sprites) v6
'veriCode' => $GLOBALS['BE_USER']->veriCode(),
'denyFileTypes' => PHP_EXTENSIONS_DEFAULT,
'moduleMenuWidth' => $this->menuWidth - 1,
+ 'topBarHeight' => (int) $GLOBALS['TBE_STYLES']['dims']['topFrameH'],
'showRefreshLoginPopup' => isset($GLOBALS['TYPO3_CONF_VARS']['BE']['showRefreshLoginPopup']) ? intval($GLOBALS['TYPO3_CONF_VARS']['BE']['showRefreshLoginPopup']) : FALSE,
);
$t3LLLcore = array(
* @return void
*/
initComponent: function() {
- // adjust the width of module menu
+ // adjust the width of module menu and the height of the topbar
+ this.initialConfig.items[0].height = TYPO3.configuration.topBarHeight;
this.initialConfig.items[1].width = TYPO3.configuration.moduleMenuWidth;
+
// call parent constructor
TYPO3.Viewport.superclass.initComponent.apply(this, arguments);
renderTo: Ext.getBody(),
border: false,
items: [{
+ layout: 'absolute',
region: 'north',
id: 'typo3-topbar',
+ height: 42,
contentEl: 'typo3-top-container',
border: false
}, {
$Id$
- - - - - - - - - - - - - - - - - - - - - */
-#typo3-topbar {
- height: 42px;
-}
-
#typo3-logo {
float: left;
}
\ No newline at end of file
// Alternative dimensions for frameset sizes:
$TBE_STYLES['dims']['leftMenuFrameW'] = 190; // Left menu frame width
- $TBE_STYLES['dims']['topFrameH'] = 45; // Top frame heigth
+ $TBE_STYLES['dims']['topFrameH'] = 42; // Top frame height
$TBE_STYLES['dims']['navFrameWidth'] = 280; // Default navigation frame width
// Setting roll-over background color for click menus:
- - - - - - - - - - - - - - - - - - - - - */
#typo3-topbar {
- height: 42px;
z-index: 200;
}