mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
CSS
This commit is contained in:
parent
76b070fc47
commit
9a6ec3b059
|
|
@ -89,6 +89,7 @@ datee
|
|||
# Translation keys
|
||||
addin
|
||||
amountin
|
||||
alltime
|
||||
|
||||
# other
|
||||
blacklists
|
||||
|
|
|
|||
|
|
@ -154,14 +154,15 @@ if (!count($data)) {
|
|||
|
||||
// Print array
|
||||
print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
|
||||
print '<table class="liste centpercent">';
|
||||
|
||||
print '<table class="liste centpercent noborder">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>'.$langs->trans("MemberNature").'</td>';
|
||||
print '<td class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></td>';
|
||||
print '<td class="right">'.$langs->trans("NbOfActiveMembers").'</td>';
|
||||
print '<td class="center">'.$langs->trans("LastMemberDate").'</td>';
|
||||
print '<td class="right">'.$langs->trans("NbOfSubscriptions").'</td>';
|
||||
print '<td class="center">'.$langs->trans("LatestSubscriptionDate").'</td>';
|
||||
print '<th>'.$langs->trans("MemberNature").'</th>';
|
||||
print '<th class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></th>';
|
||||
print '<th class="right">'.$langs->trans("NbOfActiveMembers").'</th>';
|
||||
print '<th class="center">'.$langs->trans("LastMemberDate").'</th>';
|
||||
print '<th class="right">'.$langs->trans("NbOfSubscriptions").'</th>';
|
||||
print '<th class="center">'.$langs->trans("LatestSubscriptionDate").'</th>';
|
||||
print '</tr>';
|
||||
|
||||
if (!$foundphy) {
|
||||
|
|
|
|||
|
|
@ -309,15 +309,15 @@ if (count($arrayjs) && $mode == 'memberbycountry') {
|
|||
if ($mode) {
|
||||
// Print array
|
||||
print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
|
||||
print '<table class="liste centpercent">';
|
||||
print '<table class="liste centpercent noborder">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>'.$label.'</td>';
|
||||
print '<th>'.$label.'</th>';
|
||||
if (isset($label2)) {
|
||||
print '<td class="center">'.$label2.'</td>';
|
||||
print '<th class="center">'.$label2.'</th>';
|
||||
}
|
||||
print '<td class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></td>';
|
||||
print '<td class="center">'.$langs->trans("LastMemberDate").'</td>';
|
||||
print '<td class="center">'.$langs->trans("LatestSubscriptionDate").'</td>';
|
||||
print '<th class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></th>';
|
||||
print '<th class="center">'.$langs->trans("LastMemberDate").'</th>';
|
||||
print '<th class="center">'.$langs->trans("LatestSubscriptionDate").'</th>';
|
||||
print '</tr>';
|
||||
|
||||
foreach ($data as $val) {
|
||||
|
|
|
|||
|
|
@ -4290,8 +4290,8 @@ table.noborder:not(.paymenttable, .margintable) tr:last-child th:last-child {
|
|||
border-bottom-right-radius: <?php echo $borderradius; ?>px;
|
||||
}
|
||||
|
||||
table.liste tr.liste_titre_filter:first-child td:first-child,
|
||||
table.liste tr.liste_titre_filter:first-child th:first-child {
|
||||
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child td:first-child,
|
||||
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child th:first-child {
|
||||
border-top-left-radius: <?php echo $borderradius; ?>px;
|
||||
}
|
||||
div.liste_titre_bydiv {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user