cmoreira

Custom CSS to make radio buttons more friendly

Dec 1st, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.36 KB | None | 0 0
  1. .tshowcase_inline_filter {
  2.     margin:25px 0;
  3. }
  4.  
  5. .tshowcase_inline_filter input {
  6.     visibility:hidden;
  7. }
  8. .tshowcase_inline_filter label {
  9.     cursor: pointer;
  10.     padding:10px;
  11. }
  12.  
  13. .tshowcase_inline_filter label:hover {
  14.     background: #aaa;
  15.     color:#FFF;
  16. }
  17.  
  18. .tshowcase_inline_filter input:checked + label {
  19.     background: #aaa;
  20.     color:#FFF;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment