move menu extra style into css
This commit is contained in:
parent
6ee9e92a8e
commit
a0c9111f3b
2 changed files with 4 additions and 3 deletions
|
@ -1719,6 +1719,9 @@ Menus
|
|||
float: right;
|
||||
padding: 2px 8px 0 0;
|
||||
}
|
||||
.OxMainMenu > .OxExtras > * {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.OxMenu {
|
||||
position: absolute;
|
||||
|
|
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue