diff --git a/web/pgadmin/dashboard/templates/dashboard/database_dashboard.html b/web/pgadmin/dashboard/templates/dashboard/database_dashboard.html
index 30c02dfa..4b43b095 100644
--- a/web/pgadmin/dashboard/templates/dashboard/database_dashboard.html
+++ b/web/pgadmin/dashboard/templates/dashboard/database_dashboard.html
@@ -65,14 +65,17 @@
diff --git a/web/pgadmin/dashboard/templates/dashboard/server_dashboard.html b/web/pgadmin/dashboard/templates/dashboard/server_dashboard.html
index 57e0b47b..c81ab34f 100644
--- a/web/pgadmin/dashboard/templates/dashboard/server_dashboard.html
+++ b/web/pgadmin/dashboard/templates/dashboard/server_dashboard.html
@@ -65,17 +65,21 @@
diff --git a/web/pgadmin/static/scss/_bootstrap.overrides.scss b/web/pgadmin/static/scss/_bootstrap.overrides.scss
index 1d3eb2ad..c9e46ae1 100644
--- a/web/pgadmin/static/scss/_bootstrap.overrides.scss
+++ b/web/pgadmin/static/scss/_bootstrap.overrides.scss
@@ -219,8 +219,11 @@ td.switch-cell > div.bootstrap-switch {
}
}
-.nav-tabs>.nav-item>.nav-link.active {
+/* If Bootstrap tab is already active then don't show pointer cursor */
+.nav-tabs > .nav-item > .nav-link.active {
color: $color-fg;
+ background-color: $color-fg-inverse;
+ cursor: default;
}
.bootstrap-datetimepicker-widget td, .bootstrap-datetimepicker-widget th {
@@ -257,4 +260,8 @@ td.switch-cell > div.bootstrap-switch {
.bootstrap-datetimepicker-widget thead th {
background-color: $color-fg-inverse;
-}
\ No newline at end of file
+}
+
+.nav-tabs {
+ background-color: $color-gray-lighter;
+}