diff --git a/source/Ox.UI/css/Ox.UI.css b/source/Ox.UI/css/Ox.UI.css index 0743fa93..ab3a4173 100644 --- a/source/Ox.UI/css/Ox.UI.css +++ b/source/Ox.UI/css/Ox.UI.css @@ -1719,6 +1719,9 @@ Menus float: right; padding: 2px 8px 0 0; } +.OxMainMenu > .OxExtras > * { + float: left; +} .OxMenu { position: absolute; diff --git a/source/Ox.UI/js/Menu/MainMenu.js b/source/Ox.UI/js/Menu/MainMenu.js index bfbe5092..8b6c9895 100644 --- a/source/Ox.UI/js/Menu/MainMenu.js +++ b/source/Ox.UI/js/Menu/MainMenu.js @@ -39,9 +39,7 @@ Ox.MainMenu = function(options, self) { .addClass('OxExtras') .appendTo(that); self.options.extras.forEach(function(extra) { - extra.css({ - float: 'left' // fixme: need class! - }).appendTo(that.extras); + extra.appendTo(that.extras); }); }