Some html tweaks were made to the display and search functionality of the RIM event log page.

This commit is contained in:
Cyrus 2020-10-26 07:56:24 -04:00
parent 70c4d5aeff
commit eed8e94c29
2 changed files with 3 additions and 2 deletions

View File

@ -330,7 +330,7 @@
// Loop through all table rows, and hide those who don't match the search query
for (i = 0; i < tr.length; i++) {
txtFound = false;
txtFound = true;
tds = tr[i].getElementsByTagName("td");
for (j = 0; j < tds.length; j++) {
td = tds[j];

View File

@ -9,7 +9,8 @@
#tableDivTag {
padding-top: 5px;
padding-left: 125px;
padding-right: 150px;
padding-bottom: 15px;
margin-right: 125px;
overflow-y: scroll;
}