From 3c67c9fe5731ac4f4e03ccf45e8ff1b9550b3c1c Mon Sep 17 00:00:00 2001 From: ulferts Date: Wed, 5 Feb 2020 08:34:02 +0100 Subject: [PATCH 1/2] fix typo --- app/assets/stylesheets/content/_advanced_filters.sass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/content/_advanced_filters.sass b/app/assets/stylesheets/content/_advanced_filters.sass index df16237e2e..c12cb078d0 100644 --- a/app/assets/stylesheets/content/_advanced_filters.sass +++ b/app/assets/stylesheets/content/_advanced_filters.sass @@ -60,7 +60,7 @@ $advanced-filters--grid-gap: 10px // Filters will not span the whole width, // but have an orientation to the left side grid-template-columns: $advanced-filters--label-size $advanced-filters--operator-size $advanced-filters--values-size $advanced-filters--close-icon-size - grid-grap: $advanced-filters--grid-gap + grid-gap: $advanced-filters--grid-gap align-items: center margin-bottom: 10px From 3afce7240a97973f3c326315487c2977a2c27942 Mon Sep 17 00:00:00 2001 From: ulferts Date: Wed, 5 Feb 2020 08:34:37 +0100 Subject: [PATCH 2/2] prevent inputs/selects from overflowing container --- .../vendor/foundation-apps/scss/components/_forms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/vendor/foundation-apps/scss/components/_forms.scss b/app/assets/stylesheets/vendor/foundation-apps/scss/components/_forms.scss index 7d0376b7eb..968e821705 100755 --- a/app/assets/stylesheets/vendor/foundation-apps/scss/components/_forms.scss +++ b/app/assets/stylesheets/vendor/foundation-apps/scss/components/_forms.scss @@ -180,7 +180,7 @@ input[type="checkbox"], input[type="radio"] { // Inputs stretch all the way out > input, > select { - flex: 1; + flex: 1 1 auto; margin: 0; }