From fe2e920e73715423d92e5f5889bcd6b2f6124c38 Mon Sep 17 00:00:00 2001 From: Alex P Date: Wed, 4 Oct 2017 16:13:07 -0700 Subject: [PATCH] Fix dropdown item clickable area bug --- ui/src/style/unsorted.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ui/src/style/unsorted.scss b/ui/src/style/unsorted.scss index 41cd865de..13cb3776c 100644 --- a/ui/src/style/unsorted.scss +++ b/ui/src/style/unsorted.scss @@ -293,6 +293,7 @@ $tick-script-overlay-margin: 30px; display: none; } } + /* Data Explorer download CSV button ----------------------------------------------------------------------------- @@ -305,3 +306,15 @@ $tick-script-overlay-margin: 30px; .btn.btn-sm.btn-default.dlcsv { margin-left: 10px; } + +/* + Dropdown clickable area fix + ----------------------------------------------------------------------------- + TODO: Move this into theme, not sure how this broke +*/ + +.dropdown .dropdown-menu li.dropdown-item { + display: block; + + > a {display: block;} +}