mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-23 23:13:38 -06:00
Fixed an issue where 'Rows X' column values were not visible properly for Explain Analyze in Dark theme. Fixes #5853.
This commit is contained in:
parent
4587cf73c2
commit
365ec0ba9f
@ -38,6 +38,7 @@ Bug fixes
|
||||
| `Issue #5841 <https://redmine.postgresql.org/issues/5841>`_ - Fixed an issue where the server is not able to connect using the service.
|
||||
| `Issue #5843 <https://redmine.postgresql.org/issues/5843>`_ - Fixed an issue where the 'PARALLEL UNSAFE' option is missing from reverse engineering SQL of function/procedure.
|
||||
| `Issue #5845 <https://redmine.postgresql.org/issues/5845>`_ - Fixed an issue where the query tool is not fetching more than 1000 rows for the table does not have any primary key.
|
||||
| `Issue #5853 <https://redmine.postgresql.org/issues/5853>`_ - Fixed an issue where 'Rows X' column values were not visible properly for Explain Analyze in Dark theme.
|
||||
| `Issue #5855 <https://redmine.postgresql.org/issues/5855>`_ - Ensure that the user should be able to change the start value of the existing sequence.
|
||||
| `Issue #5861 <https://redmine.postgresql.org/issues/5861>`_ - Ensure that the 'Remove Server' option should be visible in the context menu.
|
||||
| `Issue #5867 <https://redmine.postgresql.org/issues/5867>`_ - Fixed an issue where some properties are not being updated correctly for the shared server.
|
||||
|
@ -48,6 +48,7 @@ div.tab-pane[data-explain-tabpanel=table] {
|
||||
td.pga-ex-inclusive-2,
|
||||
td.pga-ex-rowsx-2 {
|
||||
background-color: $explain-sev-2-bg;
|
||||
color: $explain-sev-2-color;
|
||||
}
|
||||
|
||||
td.pga-ex-exclusive-3,
|
||||
|
@ -258,6 +258,7 @@ $sql-bracket-match-bg: #f5d2af;
|
||||
$explain-sev-2-bg: #FFEE88 !default;
|
||||
$explain-sev-3-bg: #EE8800 !default;
|
||||
$explain-sev-4-bg: #880000 !default;
|
||||
$explain-sev-2-color: #222222 !default;
|
||||
$explain-sev-3-color: #FFFFFF !default;
|
||||
$explain-sev-4-color: #FFFFFF !default;
|
||||
|
||||
|
@ -84,6 +84,7 @@ $explain-sev-3-bg: #824d18;
|
||||
$explain-sev-4-bg: #880000;
|
||||
$explain-sev-3-color: $color-fg;
|
||||
$explain-sev-4-color: $color-fg;
|
||||
$explain-sev-2-color: #212529;
|
||||
|
||||
$negative-bg: $color-bg;
|
||||
|
||||
|
@ -105,6 +105,7 @@ $table-bg: $color-bg;
|
||||
$explain-sev-2-bg: #EAEA43;
|
||||
$explain-sev-3-bg: #FFAD65;
|
||||
$explain-sev-4-bg: #EE7A55;
|
||||
$explain-sev-2-color: #010B15;
|
||||
$explain-sev-3-color: #010B15;
|
||||
$explain-sev-4-color: #010B15;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user