Actions
Bug #14529
closedDisabled buttons in drop down menu do not render as disabled
Description
It's because twitter only accepts "disabled" class on <li> items and we set it on <a> tags. We could refactor our select_action_button code but since tags are self-contained in Rails and we pass array of elements already htmlized, it's easier to do this via CSS:
.dropdown-menu > li > a.disabled { color:#aaa !important; }
Updated by Lukas Zapletal almost 9 years ago
- Related to Bug #14527: Edit buttons should not be visible to discovery_reader role added
Updated by The Foreman Bot almost 9 years ago
- Status changed from New to Ready For Testing
- Assignee set to Lukas Zapletal
- Pull request https://github.com/theforeman/foreman/pull/3403 added
Updated by Dominic Cleal almost 9 years ago
- Status changed from Ready For Testing to Rejected
PR was closed, perhaps not a bug.
Actions