Fix dropdown item clickable area bug

pull/2079/head
Alex P 2017-10-04 16:13:07 -07:00
parent b9ccf126a3
commit fe2e920e73
1 changed files with 13 additions and 0 deletions

View File

@ -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;}
}