Created
July 24, 2024 08:28
-
-
Save dwanjuki/ac50499d4b85dae53308bc1bdc58ea2f to your computer and use it in GitHub Desktop.
Add a colored border around the highlighted Advanced Levels Compare table column
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
/* 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