File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ .container {
2+ // target the ActionList dropdown that appears when UnderlineNav overflows
3+ ul [class *= " prc-ActionList-ActionList" ] {
4+ background-color : var (
5+ --overlay-bgColor ,
6+ var (--color-canvas-overlay , #ffffff )
7+ ) !important ;
8+ }
9+ }
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ import { sendEvent } from '@/events/components/events'
55import { EventType } from '@/events/types'
66import { useRouter } from 'next/router'
77
8+ import styles from './InArticlePicker.module.scss'
9+
810type Option = {
911 value : string
1012 label : string
@@ -141,7 +143,7 @@ export const InArticlePicker = ({
141143 const params = new URLSearchParams ( asPathQuery )
142144
143145 return (
144- < div data-testid = { `${ queryStringKey } -picker` } >
146+ < div data-testid = { `${ queryStringKey } -picker` } className = { styles . container } >
145147 { /* The key attribute is required for a bug in UnderlineNav that doesn't render the component when there are changes to the items. */ }
146148 < UnderlineNav key = { router . asPath } { ...sharedContainerProps } >
147149 { options . map ( ( option ) => {
You can’t perform that action at this time.
0 commit comments