diff --git a/application/views/awards/dxcc/index.php b/application/views/awards/dxcc/index.php
index 302ea4110..57f6e28d8 100644
--- a/application/views/awards/dxcc/index.php
+++ b/application/views/awards/dxcc/index.php
@@ -259,7 +259,10 @@
$addsat='
' . $band . ' | ';
}
}
- echo '' . __("Total") . ' | ';
+ echo '' . __("Total") . ' | ';
+ if (count($bands) > 1) {
+ echo ' | ';
+ }
echo $addsat;
echo '
@@ -270,12 +273,21 @@
$addsat='';
foreach ($dxcc_summary['worked'] as $band => $dxcc) { // Fills the table with the data
if ($band != 'SAT') {
- echo '' . $dxcc . ' | ';
+ echo '';
+ if ($band == 'Total') {
+ echo ''.$dxcc.'';
+ } else {
+ echo $dxcc;
+ }
+ echo ' | ';
} else {
$addsat='' . $dxcc . ' | ';
}
}
- if ($addsat != '') {
+ if ($addsat != '' && count($dxcc_summary['worked']) > 1) {
+ if (count($bands) > 1) {
+ echo ' | ';
+ }
echo $addsat;
}
@@ -284,12 +296,21 @@
$addsat='';
foreach ($dxcc_summary['confirmed'] as $band => $dxcc) { // Fills the table with the data
if ($band != 'SAT') {
- echo '' . $dxcc . ' | ';
+ echo '';
+ if ($band == 'Total') {
+ echo ''.$dxcc.'';
+ } else {
+ echo $dxcc;
+ }
+ echo ' | ';
} else {
$addsat='' . $dxcc . ' | ';
}
}
- if ($addsat != '') {
+ if ($addsat != '' && count($dxcc_summary['confirmed']) > 1) {
+ if (count($bands) > 1) {
+ echo ' | ';
+ }
echo $addsat;
}
diff --git a/assets/css/general.css b/assets/css/general.css
index 589c15720..7fb24a14d 100644
--- a/assets/css/general.css
+++ b/assets/css/general.css
@@ -1222,3 +1222,12 @@ svg text.month { fill: #AAA; }
opacity: 0;
}
}
+
+.spacingcell {
+ background-color: transparent !important;
+ border-top-style: none !important;
+ border-bottom-style: none !important;
+ border-right-style: none !important;
+ --dt-row-hover: transparent !important;
+ --dt-row-stripe: transparent !important;
+}