Running 7.2.2 SuiteR theme.
Go into Emails and open a modal dialogue (e.g. right-click on an email and view relationship) and the top of the dialogue is partially obscured by the main nav bar of the page.
Had a look at the CSS and it appears to be due to the navbar-fixed-top rule in bootstrap-theme.css setting the z-index to 1030!
I modified the style.css file to override the z-index down to 3 (no good reason why 3 but it seems to work).
.navbar-fixed-top {
border: 0;
z-index: 3;
}
Can this be fixed for next release?
Thanks