Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/blocks/global-navigation/global-navigation.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
text-decoration: none;
}

.global-navigation button:not(.feds-client-desktop-apps button, .feds-client-plans-cta button) {
.global-navigation button:not(.feds-client-desktop-apps button, .feds-client-plans-cta button, .feds-bc-wrapper) {
Comment thread
bandana147 marked this conversation as resolved.
Outdated
background: none;
cursor: pointer;
}
Expand Down
4 changes: 3 additions & 1 deletion libs/blocks/global-navigation/utilities/keyboard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ class KeyboardNavigation {
}
case 'Enter':
case 'Space': {
if (e.target.closest(selectors.searchField) || e.target.closest('.feds-client-search')) return;
if (e.target.closest(selectors.searchField)
|| e.target.closest('.feds-client-search')
|| e.target.matches('input, textarea, select, [contenteditable]')) return;
e.stopPropagation();
e.preventDefault();
e.target.click();
Expand Down
Loading