@@ -471,7 +471,7 @@ export function ResultsGrid({
471471 { planText && < Tab value = "plan" icon = { < WrenchRegular fontSize = { 12 } /> } > { t ( "plan" ) } </ Tab > }
472472 </ TabList >
473473 { activeTab === "data" && (
474- < div style = { { display : "flex" , alignItems : "center" , gap : 8 , flex : 1 , justifyContent : "flex-end" } } >
474+ < div className = "omni-results-actions" >
475475 { result && editability && ! editability . editable && (
476476 < Text role = "status" aria-live = "polite" size = { 200 } style = { { color : tokens . colorNeutralForeground2 , background : tokens . colorNeutralBackground3 , border : `1px solid ${ tokens . colorNeutralStroke1 } ` , borderRadius : 4 , padding : "4px 8px" , maxWidth : 360 , overflow : "hidden" , textOverflow : "ellipsis" , whiteSpace : "nowrap" } } title = { editability . reason ?? t ( "inlineEditingUnavailable" ) } >
477477 { t ( "inlineEditingUnavailableText" ) } { editability . reason ? `: ${ editability . reason } ` : "." }
@@ -502,7 +502,7 @@ export function ResultsGrid({
502502 < FilterRegular aria-hidden = "true" />
503503 </ >
504504 }
505- style = { { minWidth : 180 , maxWidth : 240 } }
505+ className = "omni-results-filter"
506506 />
507507 < Popover positioning = "below-end" >
508508 < PopoverTrigger disableButtonEnhancement >
@@ -597,7 +597,7 @@ export function ResultsGrid({
597597 { activeTab === "data" && (
598598 < >
599599 { ! result ? (
600- < Text size = { 200 } style = { { padding : 16 , display : "block" , color : tokens . colorNeutralForeground2 } } >
600+ < Text className = "omni-empty-state" size = { 200 } >
601601 { t ( "noResults" ) }
602602 </ Text >
603603 ) : (
@@ -792,7 +792,7 @@ export function ResultsGrid({
792792 ) }
793793 </ div >
794794 ) : (
795- < Text size = { 200 } style = { { color : tokens . colorNeutralForeground2 } } >
795+ < Text className = "omni-empty-state" size = { 200 } >
796796 { t ( "noMessages" ) }
797797 </ Text >
798798 ) }
0 commit comments