Find your people. Pick a challenge. Ship something real. The CreatorCon Hackathon is coming to the Community Pavilion for one epic night. Every skill level, every role welcome. Join us on May 5th and learn more here.

UI Builder - Avoiding word truncation for List Component

JamesBateman
Tera Contributor

Hi everyone,

I’m working in UI Builder (Yokohama release) and I’ve hit a stubborn styling issue with a record list component (now-record-list-connected) on one of my workspace pages.

The problem is that text in one of my list columns is being truncated after a few lines.
When inspecting in Developer Tools, I can see this styling applied inside the shadow DOM:

JamesBateman_0-1764067146236.png

 

 

If I manually disable -webkit-box-orient: vertical and change max-height: 240px to none, the full text displays perfectly — so I know those properties are the cause.

JamesBateman_1-1764067146235.png

 

 

However, I can’t find a way to override them through UI Builder.

I want to permanently change the list behaviour so that:
-webkit-box-orient: horizontal;
max-height: none;


Any guidance (or examples) would be really appreciated.

Thanks!

1 REPLY 1

ankitbanerj
Tera Expert

Hi @JamesBateman ,
you might try this out:)
overflow: visible

Best regards,
Ankit B

If this solution worked for you, kindly mark it as Accepted Solution and give it a Helpful rating to support the community.