From e0b00cbd04dc95bac21fa2c5ccab360b794db772 Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Mon, 24 Feb 2025 16:55:26 +0100 Subject: [PATCH] Fix search line breaks issue (#22271) closes DES-1103 - Due to a regression of line-clamping the titles in members filter search (https://github.com/TryGhost/Ghost/commit/31fcedd13ba1de926aab79809dffb48e5dc41ad7), the layout of the main search in Admin was breaking in a way that highlights were not inline anymore. --- ghost/admin/app/styles/components/power-select.css | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/admin/app/styles/components/power-select.css b/ghost/admin/app/styles/components/power-select.css index 25fd30e554..1c694820c0 100644 --- a/ghost/admin/app/styles/components/power-select.css +++ b/ghost/admin/app/styles/components/power-select.css @@ -202,6 +202,7 @@ } .ember-power-select-group .ember-power-select-option .highlight { + display: inline; background: #fff6b8; border-radius: 1px; color: color-mod(var(--darkgrey) l(-10%));