Fixed color issue on the statistics tab for collection node in the safari browser. Fixes #4020

This commit is contained in:
Pradip Parkale 2021-03-12 11:49:58 +05:30 committed by Akshay Joshi
parent 03d3b8c03c
commit 408df750be
2 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,7 @@ Housekeeping
Bug fixes
*********
| `Issue #4020 <https://redmine.postgresql.org/issues/4020>`_ - Fixed color issue on the statistics tab for collection node in the safari browser.
| `Issue #4438 <https://redmine.postgresql.org/issues/4438>`_ - Fixed an issue where adding/updating records fails if the table name contains percent sign.
| `Issue #4784 <https://redmine.postgresql.org/issues/4784>`_ - Ensure that autovacuum and analyze scale factors should be editable with more than two decimals.
| `Issue #4847 <https://redmine.postgresql.org/issues/4847>`_ - Fixed an issue where % displayed twice in explain analyze for query and table.

View File

@ -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;
}