From 7f38137f5367bbca7ceb6a6b459a47cb92151ca4 Mon Sep 17 00:00:00 2001 From: Felix Hamann Date: Thu, 25 Apr 2019 15:24:39 +0200 Subject: [PATCH] recipientLayout: restrict height of options instead of whole fieldset --- .../widgets/communication/recipientLayout.lucius | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/templates/widgets/communication/recipientLayout.lucius b/templates/widgets/communication/recipientLayout.lucius index a48065a68..aa4cb072d 100644 --- a/templates/widgets/communication/recipientLayout.lucius +++ b/templates/widgets/communication/recipientLayout.lucius @@ -11,6 +11,11 @@ } } +.recipient-category__options { + max-height: 150px; + overflow-y: auto; +} + .recipient-category__option { display: flex; @@ -30,8 +35,6 @@ padding: 5px 0 10px; border-left: 1px solid #bcbcbc; padding-left: 16px; - max-height: 200px; - overflow-y: auto; position: relative; } @@ -57,6 +60,6 @@ .recipient-category__checked-counter { position: absolute; - right: 0; - top: 0; + right: 5px; + top: 5px; }