25 Oct
2024
25 Oct
'24
3:44 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38020 --- Comment #3 from Owen Leonard <oleonard@myacpl.org> --- 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.