css
This commit is contained in:
parent
99496e365f
commit
c30c6bcf43
@ -2073,8 +2073,7 @@ function top_menu_user($hideloginname = 0, $urllogout = '')
|
||||
$btnUser = '<!-- div for user link -->
|
||||
<div id="topmenu-login-dropdown" class="userimg atoplogin dropdown user user-menu inline-block">
|
||||
<a href="'.DOL_URL_ROOT.'/user/card.php?id='.$user->id.'" class="dropdown-toggle login-dropdown-a" data-toggle="dropdown">
|
||||
'.$userImage.'
|
||||
<span class="hidden-xs maxwidth200 atoploginusername hideonsmartphone paddingleft">'.dol_trunc($user->firstname ? $user->firstname : $user->login, 10).'</span>
|
||||
'.$userImage.'<span class="hidden-xs maxwidth200 atoploginusername hideonsmartphone paddingleft">'.dol_trunc($user->firstname ? $user->firstname : $user->login, 10).'</span>
|
||||
</a>
|
||||
<div class="dropdown-menu">
|
||||
<!-- User image -->
|
||||
|
||||
@ -2452,6 +2452,7 @@ div.mainmenu.website {
|
||||
// End of part to add more div class css
|
||||
} // End test if $dol_hide_topmenu ?>
|
||||
|
||||
|
||||
.tmenuimage {
|
||||
padding:0 0 0 0 !important;
|
||||
margin:0 0px 0 0 !important;
|
||||
@ -2464,6 +2465,9 @@ div.mainmenu.website {
|
||||
display: none;
|
||||
<?php } ?>
|
||||
}
|
||||
a.tmenuimage:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
a.tmenuimage {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@ -1963,7 +1963,7 @@ if ($action == 'create' || $action == 'adduserldap') {
|
||||
|
||||
// Ref/ID
|
||||
if (!empty($conf->global->MAIN_SHOW_TECHNICAL_ID)) {
|
||||
print '<tr><td class="titlefield">'.$langs->trans("Ref").'</td>';
|
||||
print '<tr><td class="titlefieldcreate">'.$langs->trans("Ref").'</td>';
|
||||
print '<td>';
|
||||
print $object->id;
|
||||
print '</td>';
|
||||
@ -1971,13 +1971,13 @@ if ($action == 'create' || $action == 'adduserldap') {
|
||||
}
|
||||
|
||||
// Civility
|
||||
print '<tr><td><label for="civility_code">'.$langs->trans("UserTitle").'</label></td><td colspan="3">';
|
||||
print '<tr><td class="titlefieldcreate"><label for="civility_code">'.$langs->trans("UserTitle").'</label></td><td colspan="3">';
|
||||
print $formcompany->select_civility(GETPOSTISSET("civility_code") ? GETPOST("civility_code", 'aZ09') : $object->civility_code, 'civility_code');
|
||||
print '</td></tr>';
|
||||
|
||||
// Lastname
|
||||
print "<tr>";
|
||||
print '<td class="titlefield fieldrequired">'.$langs->trans("Lastname").'</td>';
|
||||
print '<td class="titlefieldcreate fieldrequired">'.$langs->trans("Lastname").'</td>';
|
||||
print '<td>';
|
||||
if ($caneditfield && !$object->ldap_sid) {
|
||||
print '<input class="minwidth100" type="text" class="flat" name="lastname" value="'.$object->lastname.'">';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user