CSS for hiding "Delete Course" and "Cross-listing" buttons from faculty?

wbreitbach
Community Explorer

We used the following code snippets to hide the Delete Course and Cross-listing buttons from faculty. However, the code also hides the buttons from system admins. We would like the buttons to show for systems admins and not faculty. Any thoughts on how we might accomplish this?

#right-side .crosslist_link {

        display: none;

}

a.btn.button-sidebar-wide.delete_course_link {

display: none !important;

}

Thanks for any advice you can provide.