Fix header user menu when using inline or static menu
This commit is contained in:
parent
7a167f70af
commit
80e0efcac4
|
|
@ -1099,6 +1099,16 @@ else { //default: white
|
|||
-moz-box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
}
|
||||
<?php } else { ?>
|
||||
div#body_header {
|
||||
padding: 10px;
|
||||
margin-top: 5px;
|
||||
height: 40px;
|
||||
-webkit-box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
-moz-box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
div#body_header a {
|
||||
color: <?=$body_header_text_link_color?>;
|
||||
|
|
@ -1113,7 +1123,9 @@ else { //default: white
|
|||
z-index: 6;
|
||||
display: none;
|
||||
position: absolute;
|
||||
<?php if ($menu_style != 'inline') { ?>
|
||||
top: 50px;
|
||||
<?php } ?>
|
||||
/* right: specified in /resources/classes/menu.php */
|
||||
padding: 15px;
|
||||
background-color: <?=$body_header_background_color?>;
|
||||
|
|
@ -1139,16 +1151,6 @@ else { //default: white
|
|||
font-size: 90%;
|
||||
text-decoration: none;
|
||||
}
|
||||
<?php } else { ?>
|
||||
div#body_header {
|
||||
padding: 10px;
|
||||
margin-top: 5px;
|
||||
height: 40px;
|
||||
-webkit-box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
-moz-box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
box-shadow: 0 2px <?=$body_header_shadow_size ?? '7px'?> <?=$body_header_shadow_color?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
div#body_header_brand_image {
|
||||
display: inline-block;
|
||||
|
|
|
|||
Loading…
Reference in New Issue