Skip to content
Snippets Groups Projects
Commit f8c45330 authored by amdi-odoo's avatar amdi-odoo
Browse files

[FIX] website_slides: fix sidebar overlay


In the course fullscreen view, a black overlay is
hovering the content on medium screen size and lower
when the sidebar is active.

Fix the black overlay which is still showing after
closing the sidebar. When the sidebar is close the
overlay shouldn't be displayed.

As the content is translated to the right and still
fully visible on medium screen size, a black overlay
isn't needed. Only show the black overlay for small
screen size and lower.

Task-3371743

closes odoo/odoo#125036

Signed-off-by: default avatarWarnon Aurélien (awa) <awa@odoo.com>
parent 37405cec
Branches
Tags
No related merge requests found
......@@ -56,7 +56,7 @@
}
}
@include media-breakpoint-up (md) {
@include media-breakpoint-up (sm) {
width: $o-wslides-fs-side-width;
&.o_wslides_fs_sidebar_hidden {
......
......@@ -88,7 +88,7 @@
</t>
</ul>
</div>
<a href="#" class="o_wslides_fs_toggle_sidebar d-lg-none bg-black-50"/>
<a href="#" class="o_wslides_fs_toggle_sidebar d-md-none bg-black-50"/>
</div>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment