Created
March 1, 2017 20:02
-
-
Save contempoinc/53f486cfcac44064e83756210e10263a to your computer and use it in GitHub Desktop.
Custom Status CSS for RE7 Admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('admin_head', 'my_custom_css'); | |
function my_custom_css() { | |
echo '<style> | |
td.status a.rented { background: #000;} | |
</style>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment