1
0
Fork 0
forked from 0x2620/oxjs

make bottom menus right-aligned if they wouldn't fit the window when left-aligned

This commit is contained in:
rolux 2014-05-24 16:16:08 +02:00
commit 97233d417d
2 changed files with 16 additions and 5 deletions

View file

@ -1873,12 +1873,18 @@ Menus
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.OxMenu.OxLeft {
border-top-left-radius: 4px;
}
.OxMenu.OxRight {
border-top-right-radius: 4px;
}
.OxMenu .OxTop {
height: 4px;
}
.OxMenu.OxLeft .OxTop {
border-top-left-radius: 4px;
}
.OxMenu.OxRight .OxTop {
border-top-right-radius: 4px;
}