diff --git a/docs/en_US/release_notes_4_30.rst b/docs/en_US/release_notes_4_30.rst index 6b801642c..715f1c158 100644 --- a/docs/en_US/release_notes_4_30.rst +++ b/docs/en_US/release_notes_4_30.rst @@ -29,5 +29,6 @@ Bug fixes | `Issue #6058 `_ - Ensure that the rename panel should be disabled when the SQL file opened in the query tool. | `Issue #6061 `_ - Fixed extra parentheses issue around joins for Views. | `Issue #6065 `_ - Fixed accessibility issues in schema diff module. +| `Issue #6077 `_ - Fixed accessibility issues in various dialogs. | `Issue #6084 `_ - Fixed TypeError exception in schema diff when selected any identical object. | `Issue #6096 `_ - Updated deployment documentation, refer correctly to uWSGI where Gunicorn had been referenced. diff --git a/web/pgadmin/browser/static/js/node.js b/web/pgadmin/browser/static/js/node.js index 827c7caf4..3de7e5db4 100644 --- a/web/pgadmin/browser/static/js/node.js +++ b/web/pgadmin/browser/static/js/node.js @@ -1613,6 +1613,8 @@ define('pgadmin.browser.node', [ // Show contents before buttons j.prepend(content); + // add required attributes to select2 input to resolve accessibility issue. + $('.select2-search__field').attr('aria-label', 'select2'); view.$el.closest('.wcFloating').find('.wcFrameButtonBar > .wcFrameButton[style!="display: none;"]').on('keydown', function(e) { if(e.shiftKey && e.keyCode === 9) { diff --git a/web/pgadmin/misc/bgprocess/static/js/bgprocess.js b/web/pgadmin/misc/bgprocess/static/js/bgprocess.js index 285607fc2..b825d022e 100644 --- a/web/pgadmin/misc/bgprocess/static/js/bgprocess.js +++ b/web/pgadmin/misc/bgprocess/static/js/bgprocess.js @@ -319,7 +319,7 @@ define('misc.bgprocess', [
${self.type_desc}
- +
diff --git a/web/pgadmin/static/scss/resources/_default.variables.scss b/web/pgadmin/static/scss/resources/_default.variables.scss index 1ad7c9945..9d913788d 100644 --- a/web/pgadmin/static/scss/resources/_default.variables.scss +++ b/web/pgadmin/static/scss/resources/_default.variables.scss @@ -65,7 +65,7 @@ $text-height-calc: $line-height-base*$font-size-base/1rem; $grid-gutter-width: 15px; $border-radius: 0.25rem; -$text-muted: #667185 !default; +$text-muted: #646B82 !default; $header-bg: $color-bg !default; $badge-header-bg: $header-bg !default; diff --git a/web/pgadmin/tools/import_export/static/js/import_export.js b/web/pgadmin/tools/import_export/static/js/import_export.js index fcb8bf8ca..7fbaab34c 100644 --- a/web/pgadmin/tools/import_export/static/js/import_export.js +++ b/web/pgadmin/tools/import_export/static/js/import_export.js @@ -591,6 +591,7 @@ define([ onshow: function() { var container = $(this.elements.body).find('.tab-content:first > .tab-pane.active:first'); + $('.select2-search__field').attr('aria-label', 'select2'); commonUtils.findAndSetFocus(container); }, },