diff --git a/web/pgadmin/dashboard/templates/dashboard/database_dashboard.html b/web/pgadmin/dashboard/templates/dashboard/database_dashboard.html index 30c02dfad..4b43b0951 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 57e0b47b5..c81ab34fb 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 1d3eb2adc..d00dd66ee 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,12 @@ 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; +} + +.nav-tabs > .nav-item > .nav-link:hover:not(.active) { + background-color: $color-gray-white; +}