Page 1 of 1

Modal window issue

Posted: 28 Nov 2017, 22:23
by ravihariharan
Modal window does not cover the toolbar when the menu mode is set to overlay.

Image

GIT issue: https://github.com/primefaces/layouts/issues/151

Re: Modal window issue

Posted: 01 Dec 2017, 12:01
by cagatay.civici
It is by design to keep the topbar on top everything, in your case, you can lower the value via;

Code: Select all

    .layout-menu-overlay.menu-layout-overlay {
        &.layout-menu-overlay-active {
            .layout-menu-container {
                z-index: 999;
            }
            
    
        }  
        
        .topbar {
            z-index: 998;
         }
  }

Re: Modal window issue

Posted: 01 Dec 2017, 15:58
by ravihariharan
Static Menu and Horizontal Menu works and cover the topbar.
This issue only exists for Overlay Menu and hence it seemed like a bug.

Thanks for the solution. I have tested it and it works as expected.

Thanks
Ravi

Re: Modal window issue

Posted: 27 Dec 2017, 16:14
by mert.sincan
Thanks a lot for the update!