File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function AdminMessages(props: AdminMessagesProps) {
13
13
props . setActiveAdminMessages ( adminMessagesCopy ) ;
14
14
}
15
15
16
- return ( < div className = { `pointer-events-none font-dm-sans flex-col right-0 fixed inset-y-0 sm:flex sm:justify-end sm:px-6 sm:pb-5 lg:px-8 ${ isOnLabelingPage ? 'bottom-8' : 'bottom-0' } ` } >
16
+ return ( < div className = { `pointer-events-none font-dm-sans flex-col right-0 absolute z-30 inset-y-0 sm:flex sm:justify-end sm:px-6 sm:pb-5 lg:px-8 ${ isOnLabelingPage ? 'bottom-8' : 'bottom-0' } ` } >
17
17
{ props . adminMessages && props . adminMessages . map ( ( activeMessage , index ) => (
18
18
< div key = { activeMessage . id } className = { `pointer-events-auto items-center justify-between gap-x-6 py-2.5 mt-2 border px-6 sm:rounded-xl sm:py-3 sm:pr-3.5 sm:pl-4 ${ activeMessage . borderColor } ${ activeMessage . backgroundColor } ${ activeMessage . visible ? 'flex' : 'hidden' } ` }
19
19
style = { { maxWidth : props . maxWidth ?? 'calc(100vw - 200px)' } } >
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ export default function Dropdown2(props: DropdownProps) {
183
183
{ ! props . hasCheckboxesThreeStates && props . buttonName }
184
184
{ props . hasCheckboxesThreeStates && < label
185
185
className = "truncate cursor-pointer text-sm" > { getDropdownDisplayText ( props . options , "EMPTY" ) }
186
- < span style = { { color : '#2563eb ' } } > { getDropdownDisplayText ( props . options , "NOT_NEGATED" ) } </ span >
186
+ < span style = { { color : '#4e46e5 ' } } > { getDropdownDisplayText ( props . options , "NOT_NEGATED" ) } </ span >
187
187
< span style = { { color : '#ef4444' } } > { getDropdownDisplayText ( props . options , "NEGATED" ) } </ span >
188
188
</ label > }
189
189
< IconChevronDown
Original file line number Diff line number Diff line change @@ -131,8 +131,8 @@ export function getDropdownDisplayText(
131
131
export function getActiveNegateGroupColor ( group : any ) {
132
132
if ( ! group [ 'active' ] ) return null ;
133
133
if ( group [ 'negate' ] ) {
134
- return group [ 'negate' ] ? '#ef4444' : '#2563eb ' ;
134
+ return group [ 'negate' ] ? '#ef4444' : '#4e46e5 ' ;
135
135
}
136
- return '#2563eb ' ;
136
+ return '#4e46e5 ' ;
137
137
138
138
}
You can’t perform that action at this time.
0 commit comments