Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. controller:
  2.  
  3. $crud->add_action('this should be on the right side', '',
  4. 'admin/reject_all_applicant_status', 'fa fa-times-circle
  5. red_force');
  6.  
  7. $crud->add_action('button 2', '',
  8. 'admin/process_applicant_status', 'fa fa-clipboard
  9. green_color');
  10.  
  11. $crud->add_action('button 3', '',
  12. 'admin/reject_applicant_status', 'fa fa-times red_color');
  13.  
  14. css:
  15. .red_color{
  16. color:red !important;
  17. }
  18.  
  19. .red_force{
  20. margin-left:auto;
  21. float:right !important;
  22. color:red !important;
  23. }
  24.  
  25. .green_color{
  26. color:green !important;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement