Skip to content

Commit 2d0b1d7

Browse files
author
Isaac Connor
committed
Merge branch 'master' of github.com:ZoneMinder/zoneminder
2 parents f92009f + b32044a commit 2d0b1d7

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Diff for: web/skins/classic/css/base/skin.css

+4
Original file line numberDiff line numberDiff line change
@@ -983,6 +983,10 @@ a.flip {
983983
flex-wrap: wrap;
984984
}
985985
}
986+
#ui-datepicker-div {
987+
z-index:1001!important;
988+
}
989+
986990
#fieldsTable ul.chosen-choices {
987991
max-height: 100px;
988992
overflow-y:auto;

Diff for: web/skins/classic/includes/functions.php

+2
Original file line numberDiff line numberDiff line change
@@ -960,9 +960,11 @@ function getStatsTableHTML($eid, $fid, $row='') {
960960

961961
$result .= '<td class="colAlarmLimits">' .validHtmlStr($stat['MinX'].",".$stat['MinY']."-".$stat['MaxX'].",".$stat['MaxY']). '</td>'.PHP_EOL;
962962
$result .= '<td class="colScore">' .$stat['Score']. '</td>'.PHP_EOL;
963+
$result .= '</tr>'.PHP_EOL;
963964
}
964965
} else {
965966
$result .= '<tr>'.PHP_EOL;
967+
//IMPORTANT! There is a problem with Bootstrap here. The class is being moved from <th> and "colspan" is not being applied
966968
$result .= '<td class="rowNoStats" colspan="9">' .translate('NoStatisticsRecorded'). '</td>'.PHP_EOL;
967969
$result .= '</tr>'.PHP_EOL;
968970
}

0 commit comments

Comments
 (0)