[FIX] website_quote: css issue for mobile view

When seen from a mobile, the shortcut menu was over the content of the
quote and hid it.

This fix sets the menu inline in the page when he has no place to be on a
column on its own.

opw-633890
This commit is contained in:
Nicolas Lempereur 2015-05-05 10:35:58 +02:00
parent 3e497ea35f
commit 4237207000
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@
font-size: 90%;
}
@media (max-width: 991px) {
.o_website_quote .bs-sidebar {
position: static;
}
}
@media (min-width: 992px) {
.o_website_quote .bs-sidebar .nav > .active > ul {
display: block;