From 408df750be0dbc852b316a8d01c60373812b3f2d Mon Sep 17 00:00:00 2001 From: Pradip Parkale Date: Fri, 12 Mar 2021 11:49:58 +0530 Subject: [PATCH] Fixed color issue on the statistics tab for collection node in the safari browser. Fixes #4020 --- docs/en_US/release_notes_5_1.rst | 1 + web/pgadmin/static/scss/_bootstrap.overrides.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/docs/en_US/release_notes_5_1.rst b/docs/en_US/release_notes_5_1.rst index 2be8bf683..f0a0c9e5a 100644 --- a/docs/en_US/release_notes_5_1.rst +++ b/docs/en_US/release_notes_5_1.rst @@ -21,6 +21,7 @@ Housekeeping Bug fixes ********* +| `Issue #4020 `_ - Fixed color issue on the statistics tab for collection node in the safari browser. | `Issue #4438 `_ - Fixed an issue where adding/updating records fails if the table name contains percent sign. | `Issue #4784 `_ - Ensure that autovacuum and analyze scale factors should be editable with more than two decimals. | `Issue #4847 `_ - Fixed an issue where % displayed twice in explain analyze for query and table. diff --git a/web/pgadmin/static/scss/_bootstrap.overrides.scss b/web/pgadmin/static/scss/_bootstrap.overrides.scss index e6ffa247f..94919d356 100644 --- a/web/pgadmin/static/scss/_bootstrap.overrides.scss +++ b/web/pgadmin/static/scss/_bootstrap.overrides.scss @@ -255,6 +255,10 @@ legend { .table { margin-bottom: 0rem; user-select: text; + table-layout: fixed; + max-width: none; + width: auto; + min-width: 100%; th { padding: $table-header-cell-padding $table-cell-padding; }