Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dwanjuki/ac50499d4b85dae53308bc1bdc58ea2f to your computer and use it in GitHub Desktop.
Save dwanjuki/ac50499d4b85dae53308bc1bdc58ea2f to your computer and use it in GitHub Desktop.
Add a colored border around the highlighted Advanced Levels Compare table column
/* Advanced Levels Compare table - add border to highlighted column */
.pmpro_advanced_levels-compare_table thead th.pmpro_level-highlight,
.pmpro_advanced_levels-compare_table tbody td.pmpro_level-highlight,
.pmpro_advanced_levels-compare_table tfoot td.pmpro_level-highlight {
border-left: 6px solid #00d084;
border-right: 6px solid #00d084;
}
#pmpro_levels.pmpro_advanced_levels-compare_table tfoot tr:last-child td.pmpro_level-highlight {
border-bottom: 6px solid #00d084;
}
#pmpro_levels.pmpro_advanced_levels-compare_table thead tr:first-child th.pmpro_level-highlight {
border-top: 6px solid #00d084;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment