@@ -215,7 +215,7 @@ const BlockFrame_Header = ({
215215 if ( typeof headerTextUnion === "string" ) {
216216 if ( ! util . isBlank ( headerTextUnion ) ) {
217217 headerTextElems . push (
218- < div key = "text" className = "block-frame-text" >
218+ < div key = "text" className = "block-frame-text ellipsis " >
219219 ‎{ headerTextUnion }
220220 </ div >
221221 ) ;
@@ -280,7 +280,7 @@ const HeaderTextElem = React.memo(({ elem, preview }: { elem: HeaderElem; previe
280280 return < Input decl = { elem } className = { clsx ( "block-frame-input" , elem . className ) } preview = { preview } /> ;
281281 } else if ( elem . elemtype == "text" ) {
282282 return (
283- < div className = { clsx ( "block-frame-text" , elem . className , { "flex-nogrow" : elem . noGrow } ) } >
283+ < div className = { clsx ( "block-frame-text ellipsis " , elem . className , { "flex-nogrow" : elem . noGrow } ) } >
284284 < span ref = { preview ? null : elem . ref } onClick = { ( e ) => elem ?. onClick ( e ) } >
285285 ‎{ elem . text }
286286 </ span >
@@ -398,10 +398,10 @@ const ConnStatusOverlay = React.memo(
398398 let reconClassName = "outlined grey" ;
399399 if ( width && width < 350 ) {
400400 reconDisplay = < i className = "fa-sharp fa-solid fa-rotate-right" > </ i > ;
401- reconClassName = clsx ( reconClassName , "font-size-12 vertical-padding-5 horizontal-padding-6 " ) ;
401+ reconClassName = clsx ( reconClassName , "text-[12px] py-[5px] px-[6px] " ) ;
402402 } else {
403403 reconDisplay = "Reconnect" ;
404- reconClassName = clsx ( reconClassName , "font-size-11 vertical-padding-3 horizontal-padding-7 " ) ;
404+ reconClassName = clsx ( reconClassName , "text-[11px] py-[3px] px-[7px] " ) ;
405405 }
406406 const showIcon = connStatus . status != "connecting" ;
407407
@@ -440,7 +440,7 @@ const ConnStatusOverlay = React.memo(
440440 < div className = "connstatus-content" >
441441 < div className = { clsx ( "connstatus-status-icon-wrapper" , { "has-error" : showError || showWshError } ) } >
442442 { showIcon && < i className = "fa-solid fa-triangle-exclamation" > </ i > }
443- < div className = "connstatus-status" >
443+ < div className = "connstatus-status ellipsis " >
444444 < div className = "connstatus-status-text" > { statusText } </ div >
445445 { ( showError || showWshError ) && (
446446 < OverlayScrollbarsComponent
0 commit comments