Skip to content

Commit

Permalink
FIX dialog window with md theme must not be hidden by left menu part.
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed May 24, 2017
1 parent 1f1d92d commit 6eeb82e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion htdocs/core/class/html.form.class.php
Expand Up @@ -968,7 +968,7 @@ function select_company($selected='', $htmlname='socid', $filter='', $showempty=
$out.= ajax_autocompleter($selected, $htmlname, DOL_URL_ROOT.'/societe/ajax/company.php', $urloption, $conf->global->COMPANY_USE_SEARCH_TO_SELECT, 0, $ajaxoptions);
$out.='<style type="text/css">
.ui-autocomplete {
z-index: 150;
z-index: 250;
}
</style>';
if (empty($hidelabel)) print $langs->trans("RefOrLabel").' : ';
Expand Down
4 changes: 2 additions & 2 deletions htdocs/theme/eldy/style.css.php
Expand Up @@ -866,7 +866,7 @@
}
.side-nav {
position: absolute;
z-index: 200;
z-index: 90;
display: none;
}
div.blockvmenulogo
Expand Down Expand Up @@ -4222,7 +4222,7 @@
/* ============================================================================== */

ul.ulselectedfields {
z-index: 100; /* To have the select box appears on first plan even when near buttons are decorated by jmobile */
z-index: 95; /* To have the select box appears on first plan even when near buttons are decorated by jmobile */
}
dl.dropdown {
margin:0px;
Expand Down
8 changes: 4 additions & 4 deletions htdocs/theme/md/style.css.php
Expand Up @@ -832,7 +832,7 @@
position: fixed;
top: 50px;
<?php } ?>
z-index: 200;
z-index: 90;
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
Expand Down Expand Up @@ -889,7 +889,7 @@

position: auto;
top: auto;
z-index: 200;
z-index: 90;
}
div.login_block {
/* position: initial !important;*/
Expand All @@ -899,7 +899,7 @@
padding-left: 0 ! important;
}
#id-left {
z-index: 201;
z-index: 91;
background: #FFF;
border-right: 1px solid rgba(0,0,0,0.3);
<?php if ((GETPOST('testmenuhider') || ! empty($conf->global->MAIN_TESTMENUHIDER)) && empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER)) { ?>
Expand Down Expand Up @@ -4116,7 +4116,7 @@
/* ============================================================================== */

ul.ulselectedfields {
z-index: 100; /* To have the select box appears on first plan even when near buttons are decorated by jmobile */
z-index: 90; /* To have the select box appears on first plan even when near buttons are decorated by jmobile */
}
dl.dropdown {
margin:0px;
Expand Down

0 comments on commit 6eeb82e

Please sign in to comment.