From 434c96d48ba5039c9ff1ec8b8555a6756b355b9c Mon Sep 17 00:00:00 2001 From: lindsaym-fa Date: Wed, 15 Oct 2025 15:22:40 -0400 Subject: [PATCH] add `.wa-text-truncate`, `.wa-list-plain` --- .../webawesome/src/styles/utilities/text.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages/webawesome/src/styles/utilities/text.css b/packages/webawesome/src/styles/utilities/text.css index ec3d9a7e4..f97cf57d2 100644 --- a/packages/webawesome/src/styles/utilities/text.css +++ b/packages/webawesome/src/styles/utilities/text.css @@ -106,6 +106,12 @@ .wa-color-text-quiet { color: var(--wa-color-text-quiet); } + + .wa-text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } /* #endregion */ /* #region Links ~~~~~~~ */ @@ -136,6 +142,17 @@ } /* #endregion */ + /* #region Lists */ + .wa-list-plain:is(ol, ul) { + list-style: none; + padding-inline-start: 0; + + > li { + margin-inline-start: 0; + } + } + /* #endregion */ + /* #region Form Controls */ .wa-form-control-label { color: var(--wa-form-control-label-color);