From 423720700009f8c99fc49908fbecccd41118bf2f Mon Sep 17 00:00:00 2001 From: Nicolas Lempereur Date: Tue, 5 May 2015 10:35:58 +0200 Subject: [PATCH] [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 --- addons/website_quote/static/src/css/website_quotation.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/addons/website_quote/static/src/css/website_quotation.css b/addons/website_quote/static/src/css/website_quotation.css index 28bcf38efc1..a235ec889fe 100644 --- a/addons/website_quote/static/src/css/website_quotation.css +++ b/addons/website_quote/static/src/css/website_quotation.css @@ -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;