mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-28 03:23:52 -06:00
Change some colors and opacity to comply with WCAG color contrast standards. Fixes #5128
This commit is contained in:
parent
98492e7718
commit
6988ce96d7
@ -22,6 +22,7 @@ Bug fixes
|
||||
| `Issue #4237 <https://redmine.postgresql.org/issues/4237>`_ - Fix an issue where the user can not change the value of DateTime picker control using keyboard.
|
||||
| `Issue #4608 <https://redmine.postgresql.org/issues/4608>`_ - Fixed some accessibility issues in the dialogs.
|
||||
| `Issue #4942 <https://redmine.postgresql.org/issues/4942>`_ - Fixed chrome driver download utility issue for Ubuntu.
|
||||
| `Issue #5128 <https://redmine.postgresql.org/issues/5128>`_ - Change some colors and opacity to comply with WCAG color contrast standards.
|
||||
| `Issue #5143 <https://redmine.postgresql.org/issues/5143>`_ - Fix an accessibility issue to maximize the panel for all alertify dialog.
|
||||
| `Issue #5221 <https://redmine.postgresql.org/issues/5221>`_ - Improve logic to get the DDL statements as a part of the comparison.
|
||||
| `Issue #5279 <https://redmine.postgresql.org/issues/5279>`_ - Fixed Unicode character issue causing error on Python2 environment.
|
@ -23,7 +23,7 @@ $color-danger-fg: $white !default;
|
||||
$color-danger-light: #F39999 !default;
|
||||
$color-danger-lighter: #FAECEC !default;
|
||||
|
||||
$color-success: #43a047 !default;
|
||||
$color-success: #26852B !default;
|
||||
$color-success-fg: $black !default;
|
||||
$color-success-light: #D9ECDA !default;
|
||||
|
||||
@ -60,7 +60,7 @@ $text-height-calc: $line-height-base*$font-size-base/1rem;
|
||||
$grid-gutter-width: 15px;
|
||||
$border-radius: 0.25rem;
|
||||
|
||||
$text-muted: $color-gray-dark !default;
|
||||
$text-muted: #667185 !default;
|
||||
$header-bg: $color-bg !default;
|
||||
|
||||
$tree-font-size: 0.815rem;
|
||||
@ -101,7 +101,7 @@ $popover-border-color: $dropdown-border-color;
|
||||
$popover-box-shadow: $dropdown-box-shadow;
|
||||
|
||||
$input-btn-focus-width: 0.1rem;
|
||||
$btn-disabled-opacity: 0.5;
|
||||
$btn-disabled-opacity: 0.65;
|
||||
$btn-transition: color .05s ease-in-out, background-color .05s ease-in-out, border-color .05s ease-in-out, box-shadow .05s ease-in-out;
|
||||
|
||||
$card-spacer-y: 0rem;
|
||||
@ -218,7 +218,7 @@ $sql-title-bg: $color-ternary;
|
||||
$sql-title-fg: $color-ternary-fg;
|
||||
// Toolbar + editor title heights + title bottom border
|
||||
$sql-editor-panel-top: $title-height + $text-height-calc*16px + $sql-title-padding*2 + $panel-border-width - 0.5px;
|
||||
$sql-gutters-bg: $negative-bg;
|
||||
$sql-gutters-bg: $datagrid-bg;
|
||||
$sql-history-detail-bg: $color-gray-lighter;
|
||||
$sql-history-success-bg: $color-primary-light;
|
||||
$sql-history-success-fg: $active-color;
|
||||
|
@ -6,7 +6,7 @@ $color-fg: #d4d4d4;
|
||||
|
||||
$color-primary: #234d6e;
|
||||
$color-primary-fg: $color-fg;
|
||||
$color-primary-light: #536270;
|
||||
$color-primary-light: #323E43;
|
||||
$color-primary-light-fg: $color-primary-fg;
|
||||
$color-primary-dark: #15354f;
|
||||
|
||||
@ -17,7 +17,7 @@ $color-danger-fg: $white;
|
||||
$color-danger-light: #914649;
|
||||
$color-danger-lighter: #212121;
|
||||
|
||||
$color-success: #43a047;
|
||||
$color-success: #26852B;
|
||||
$color-success-fg: $black;
|
||||
$color-success-light: #2B472C;
|
||||
|
||||
@ -35,7 +35,7 @@ $color-brand: #1b71b5;
|
||||
$border-color: #4a4a4a;
|
||||
$shadow-base-color: #111111;
|
||||
|
||||
$text-muted: #6b6b6b;
|
||||
$text-muted: #8A8A8A;
|
||||
$input-bg: $color-bg;
|
||||
$input-color: $color-fg;
|
||||
$input-border-color: #6b6b6b;
|
||||
|
Loading…
Reference in New Issue
Block a user