Advertisement
ikai2

custom input radio pf

Sep 6th, 2022 (edited)
847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.87 KB | Source Code | 0 0
  1. .__pf [data-pf-type="ProductVariantSwatches"] input[type=radio] {
  2.   -webkit-appearance: none;
  3.   -moz-appearance: none;
  4.   appearance: none;
  5.   background-color: #fff;
  6.   margin: 0;
  7.   font: inherit;
  8.   color: currentColor;
  9.   width: 18px;
  10.   height: 18px;
  11.   border: 2.5px solid currentColor;
  12.   border-radius: 50%;
  13.   transform: translateY(-0.075em);
  14.   display: grid;
  15.   place-content: center;
  16. }
  17. .__pf [data-pf-type="ProductVariantSwatches"] input[type="radio"]::before {
  18.   content: "";
  19.   width: 10px;
  20.   height: 10px;
  21.   border-radius: 50%;
  22.   transform: scale(0);
  23.   transition: 120ms transform ease-in-out;
  24.   box-shadow: inset 1em 1em rebeccapurple;
  25. }
  26. .__pf [data-pf-type="ProductVariantSwatches"] input[type=radio]:checked {
  27.     border-color: rebeccapurple;
  28. }
  29. .__pf [data-pf-type="ProductVariantSwatches"] input[type="radio"]:checked::before {
  30.   transform: scale(1);
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement