From 92253cfb359d260a2f848585f3fa67ee843a7cc0 Mon Sep 17 00:00:00 2001 From: Aileen Nowak Date: Thu, 29 Jun 2017 14:54:55 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=85=F0=9F=8F=BC=20=20Set=20width=20of?= =?UTF-8?q?=20searchinput=20to=20100%=20(#764)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes TryGhost/Ghost#8630 Add `width: calc(100% - 8px)` (substract 8px to keep a bit of a padding to the icon) to `.ember-power-select-search input` class so the input field is full width. --- 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 4722acc54c..328df58eca 100644 --- a/ghost/admin/app/styles/components/power-select.css +++ b/ghost/admin/app/styles/components/power-select.css @@ -65,6 +65,7 @@ margin: 0 1px !important; padding: 0 !important; min-height: 0 !important; + width: calc(100% - 8px) !important; max-width: 100% !important; max-height: none !important; border: 0 none !important;