diff --git a/apps/dashboard-app/src/main/js/src/app/diagnostic/templates/paginator-template.html b/apps/dashboard-app/src/main/js/src/app/diagnostic/templates/paginator-template.html
index 2a5fd0d6a..95aca1cc0 100644
--- a/apps/dashboard-app/src/main/js/src/app/diagnostic/templates/paginator-template.html
+++ b/apps/dashboard-app/src/main/js/src/app/diagnostic/templates/paginator-template.html
@@ -1,9 +1,10 @@
 <ul class="pagination-sm pagination" style="margin:0;">
     <li ng-repeat="buttonValue in ['&lsaquo;', minPage,'..'].concat(rangeGen(maxPage)).concat(['...',maxPage,'&rsaquo;']) track by $index"
-        style="float:left">
-        <a href="#" ng-click="handleButton(buttonValue)" ng-show="checkPage(buttonValue, activePage, maxPage, minPage)">
+        style="float:left;">
+        <a href="#" ng-click="handleButton(buttonValue)" ng-show="checkPage(buttonValue, activePage, maxPage, minPage)"
+           ng-style="buttonValue == activePage? {'background-color':'#eaecec'}: {'background-color':'white'}">
             <span ng-hide="buttonValue == activePage">{{buttonValue}}</span>
             <span ng-show="buttonValue == activePage" style="font-weight:bold;">{{buttonValue}}</span>
         </a>
     </li>
 </ul>
\ No newline at end of file