diff --git a/accessibility-checker.php b/accessibility-checker.php index 09a15076..2a8a1a13 100755 --- a/accessibility-checker.php +++ b/accessibility-checker.php @@ -10,7 +10,7 @@ * Plugin Name: Accessibility Checker * Plugin URI: https://a11ychecker.com * Description: Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance. - * Version: 1.14.0 + * Version: 1.14.1 * Author: Equalize Digital * Author URI: https://equalizedigital.com * License: GPL-2.0+ @@ -35,7 +35,7 @@ // Current plugin version. if ( ! defined( 'EDAC_VERSION' ) ) { - define( 'EDAC_VERSION', '1.14.0' ); + define( 'EDAC_VERSION', '1.14.1' ); } // Current database version. diff --git a/package.json b/package.json index f5ffe407..e70e5885 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "accessibility-checker", - "version": "1.14.0", + "version": "1.14.1", "description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.", "author": "Equalize Digital", "license": "GPL-2.0+", diff --git a/partials/settings-page.php b/partials/settings-page.php index 0e83afc9..1f76b38f 100644 --- a/partials/settings-page.php +++ b/partials/settings-page.php @@ -45,7 +45,7 @@ function ( $a, $b ) { $settings_tab = ( array_search( $settings_tab, array_column( $settings_tab_items, 'slug' ), true ) !== false ) ? $settings_tab : $default_tab; ?> -
+

diff --git a/readme.txt b/readme.txt index c3e49220..8d8d7b81 100644 --- a/readme.txt +++ b/readme.txt @@ -171,6 +171,9 @@ No, Accessibility Checker runs completely on your server and does not require yo == Changelog == += 1.14.1 = +* Fixed: Prevent settings page layout issue + = 1.14.0 = * Added: Option to move front-end highlighter to opposite side of the window * Fixed: Prevent image from overspilling container in issue view diff --git a/src/admin/sass/accessibility-checker-admin.scss b/src/admin/sass/accessibility-checker-admin.scss index 37e55141..7d77c620 100644 --- a/src/admin/sass/accessibility-checker-admin.scss +++ b/src/admin/sass/accessibility-checker-admin.scss @@ -820,6 +820,11 @@ .edac-settings { max-width: 800px; + + &.pro-callout-wrapper { + max-width: fit-content; + } + .edac-description { font-size: 13px; }