Redesign - popravek gdpr tabele zahtevkov
This commit is contained in:
parent
631b5a9ec1
commit
1c81907505
@ -376,8 +376,8 @@ class GDPR{
|
|||||||
|
|
||||||
echo '<p class="bold bottom8">'.$lang['srv_gdpr_requests_list_unresolved'].'</p>';
|
echo '<p class="bold bottom8">'.$lang['srv_gdpr_requests_list_unresolved'].'</p>';
|
||||||
|
|
||||||
echo '<div class="table-horizontal-scroll-wrapper1" id="gdrp_requests_unresolved">';
|
echo '<div class="table-horizontal-scroll-wrapper-outer" id="gdrp_requests_unresolved">';
|
||||||
echo '<div class="table-horizontal-scroll-wrapper2">';
|
echo '<div class="table-horizontal-scroll-wrapper-inner">';
|
||||||
|
|
||||||
echo '<table class="gdpr_surveys requests">';
|
echo '<table class="gdpr_surveys requests">';
|
||||||
|
|
||||||
@ -491,6 +491,9 @@ class GDPR{
|
|||||||
ORDER BY date(r.datum) ASC");
|
ORDER BY date(r.datum) ASC");
|
||||||
if(mysqli_num_rows($sql) > 0){
|
if(mysqli_num_rows($sql) > 0){
|
||||||
|
|
||||||
|
echo '<div class="table-horizontal-scroll-wrapper-outer">';
|
||||||
|
echo '<div class="table-horizontal-scroll-wrapper-inner">';
|
||||||
|
|
||||||
echo '<table class="gdpr_surveys requests all">';
|
echo '<table class="gdpr_surveys requests all">';
|
||||||
|
|
||||||
echo '<tr>';
|
echo '<tr>';
|
||||||
@ -564,6 +567,9 @@ class GDPR{
|
|||||||
}
|
}
|
||||||
|
|
||||||
echo '</table>';
|
echo '</table>';
|
||||||
|
|
||||||
|
echo '</div>';
|
||||||
|
echo '</div>';
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
echo '<p>'.$lang['srv_gdpr_requests_none'].'</p>';
|
echo '<p>'.$lang['srv_gdpr_requests_none'].'</p>';
|
||||||
@ -588,6 +594,9 @@ class GDPR{
|
|||||||
echo ' <span class="requests_table_title"><span id="requests_table_title_plus">+</span><span id="requests_table_title_minus" style="display:none;">-</span> '.$lang['srv_gdpr_requests_done'].'</span>';
|
echo ' <span class="requests_table_title"><span id="requests_table_title_plus">+</span><span id="requests_table_title_minus" style="display:none;">-</span> '.$lang['srv_gdpr_requests_done'].'</span>';
|
||||||
echo '</a>';
|
echo '</a>';
|
||||||
|
|
||||||
|
echo '<div class="table-horizontal-scroll-wrapper-outer">';
|
||||||
|
echo '<div class="table-horizontal-scroll-wrapper-inner">';
|
||||||
|
|
||||||
echo '<table class="gdpr_surveys requests" id="table_requests_done" style="margin-top:0; display:none;">';
|
echo '<table class="gdpr_surveys requests" id="table_requests_done" style="margin-top:0; display:none;">';
|
||||||
|
|
||||||
echo '<tr>';
|
echo '<tr>';
|
||||||
@ -661,6 +670,9 @@ class GDPR{
|
|||||||
}
|
}
|
||||||
|
|
||||||
echo '</table>';
|
echo '</table>';
|
||||||
|
|
||||||
|
echo '</div>';
|
||||||
|
echo '</div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1224,6 +1236,7 @@ class GDPR{
|
|||||||
$request_list_done = self::getUserRequests($ank_id, $status=1);
|
$request_list_done = self::getUserRequests($ank_id, $status=1);
|
||||||
|
|
||||||
if(count($request_list) > 0){
|
if(count($request_list) > 0){
|
||||||
|
|
||||||
echo '<table class="gdpr_surveys requests">';
|
echo '<table class="gdpr_surveys requests">';
|
||||||
|
|
||||||
echo '<tr>';
|
echo '<tr>';
|
||||||
|
@ -10145,6 +10145,21 @@ div .table-horizontal-scroll-wrapper2 table {
|
|||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table-horizontal-scroll-wrapper-outer {
|
||||||
|
display: table;
|
||||||
|
table-layout: fixed;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.table-horizontal-scroll-wrapper-outer .table-horizontal-scroll-wrapper-inner {
|
||||||
|
overflow-x: auto;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.table-horizontal-scroll-wrapper-outer .table-horizontal-scroll-wrapper-inner table {
|
||||||
|
width: 100%;
|
||||||
|
table-layout: auto !important;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Placljive vsebine
|
Placljive vsebine
|
||||||
*/
|
*/
|
||||||
|
@ -70,18 +70,36 @@ div {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
margin: 8px 0;
|
margin: 8px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-horizontal-scroll-wrapper2 {
|
.table-horizontal-scroll-wrapper2 {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
.table-horizontal-scroll-wrapper-outer{
|
||||||
|
display: table;
|
||||||
|
table-layout: fixed;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.table-horizontal-scroll-wrapper-inner{
|
||||||
|
overflow-x: auto;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
table-layout: auto !important;
|
||||||
|
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user