From 6dedf83e8c6636ef46ce3ca40f52cd5cf97f512d Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 2 Jun 2015 19:01:53 -0400 Subject: [PATCH] Fix issue in scrolling menu width in some cases --- src/definitions/modules/dropdown.less | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/definitions/modules/dropdown.less b/src/definitions/modules/dropdown.less index 625c2659a..8f28b2ae4 100755 --- a/src/definitions/modules/dropdown.less +++ b/src/definitions/modules/dropdown.less @@ -1025,7 +1025,8 @@ select.ui.dropdown { overflow-y: auto; backface-visibility: hidden; -webkit-overflow-scrolling: touch; - width: @scrollingMenuWidth !important; + min-width: 100% !important; + width: auto !important; } .ui.dropdown .scrolling.menu { @@ -1035,7 +1036,8 @@ select.ui.dropdown { box-shadow: none !important; border-radius: 0 !important; margin: 0 !important; - width: @scrollingMenuWidth !important; + min-width: 100% !important; + width: auto !important; border-top: @menuBorder; } .ui.scrolling.dropdown .menu .item.item.item,