diff --git a/src/js/_enqueues/admin/common.js b/src/js/_enqueues/admin/common.js
index c3d49310e8..4f1b192ef8 100644
|
a
|
b
|
$('.contextual-help-tabs').on( 'click', 'a', function(e) {
|
| 698 | 698 | panel = $( link.attr('href') ); |
| 699 | 699 | |
| 700 | 700 | // Panels. |
| 701 | | $('.help-tab-content').not( panel ).removeClass('active').hide(); |
| 702 | | panel.addClass('active').show(); |
| | 701 | $('.help-tab-content').not( panel ).removeClass('active'); |
| | 702 | panel.addClass('active'); |
| 703 | 703 | }); |
| 704 | 704 | |
| 705 | 705 | /** |
diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index c2ab1c31b5..ccf3189b2e 100644
|
a
|
b
|
p.auto-update-status {
|
| 2090 | 2090 | } |
| 2091 | 2091 | |
| 2092 | 2092 | .contextual-help-tabs-wrap { |
| | 2093 | display: grid; |
| 2093 | 2094 | padding: 0 20px; |
| 2094 | 2095 | overflow: auto; |
| 2095 | 2096 | } |
| 2096 | 2097 | |
| 2097 | 2098 | .help-tab-content { |
| 2098 | | display: none; |
| | 2099 | display: block; |
| | 2100 | grid-column: 1; |
| | 2101 | grid-row: 1; |
| | 2102 | visibility: hidden; |
| | 2103 | pointer-events: none; |
| 2099 | 2104 | margin: 0 22px 12px 0; |
| 2100 | 2105 | line-height: 1.6; |
| 2101 | 2106 | } |
| 2102 | 2107 | |
| 2103 | 2108 | .help-tab-content.active { |
| 2104 | | display: block; |
| | 2109 | visibility: visible; |
| | 2110 | pointer-events: auto; |
| 2105 | 2111 | } |
| 2106 | 2112 | |
| 2107 | 2113 | .help-tab-content ul li { |