https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38020
--- Comment #3 from Owen Leonard <[email protected]> --- FYI for anyone trying to solve similar problems: A control in a dropdown menu that looks like this: <button type="submit" class="btn btn-default delete-list">Delete list</button> ...will look wrong because of the "btn btn-default" class. If you change it to "dropdown-item" it looks fine without making other markup changes. <button type="submit" class="dropdown-item delete-list">Delete list</button> There's no guideline saying one is better than the other so it makes no difference for this patch. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
