Created attachment 159478 [details] update and sql run button reports I used CSS to change the color of "Update and Run SQL Button" in the reports sections, but it uses a generic button class id. It changes the color of more buttons in different modules like cataloging and circulation. Can I have it be a more specialized button class id ex: .btn.btn-default change it to .btn.btn-default-sqlrunning Below is the CSS code: /* Speed Green Update and Run Sql button */ .btn.btn-default { background-color: #7CFC00; } Maybe I there is a button class id that is there I just choose the wrong one. Let me know what would be a good resolution. Thank you.
Created attachment 159479 [details] more buttons chaged color
Dave, Try using the following CSS: /* Speed Green Update and Run Sql button */ #sql_report_form .btn[value="update_and_run_sql"] { background: #7CFC00; }
Thank you Lucas.