From fac6ca5f2afd7daf954a06dd586e8a4028f14271 Mon Sep 17 00:00:00 2001 From: Rachael Shaw Date: Wed, 4 Feb 2026 13:28:00 -0600 Subject: [PATCH] Add ellipsis to cut-off placeholder text in search fields (#39112) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Related issue:** Resolves https://github.com/fleetdm/fleet/issues/39171 #### Before Screenshot 2026-01-30 at 5 35 46 PM #### After Screenshot 2026-01-30 at 5 34 58 PM # Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. ## Testing - [x] QA'd all new/changed functionality manually --- frontend/components/TableContainer/_styles.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/components/TableContainer/_styles.scss b/frontend/components/TableContainer/_styles.scss index 735b9c3a85..ab03194acc 100644 --- a/frontend/components/TableContainer/_styles.scss +++ b/frontend/components/TableContainer/_styles.scss @@ -169,6 +169,10 @@ min-width: 250px; } + .input-with-icon:placeholder-shown { + text-overflow: ellipsis; + } + &.stack-table-controls { padding-bottom: $pad-large; margin-left: 0;