Skip to content

Instantly share code, notes, and snippets.

@leoleozhu
Created September 6, 2019 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save leoleozhu/c8cf7fa045e499bdcbc8a7e414a0fc7a to your computer and use it in GitHub Desktop.
Save leoleozhu/c8cf7fa045e499bdcbc8a7e414a0fc7a to your computer and use it in GitHub Desktop.
add payment icons for taopix checkout
div.paymentmethodlist>input[value="PAYPAL"] ~ label:after {
background-repeat: no-repeat;
background-image: url(/images/payments/paypal-640x188.png);
background-size: 48px 14px;
display: inline-block;
width: 48px;
height: 14px;
content: "";
margin-left: 20px;
}
div.paymentmethodlist>input[value="CARD"] ~ label:after {
background-repeat: no-repeat;
background-image: url(/images/payments/visa-mastercard.png);
background-size: 52px 14px;
display: inline-block;
width: 52px;
height: 14px;
content: "";
margin-left: 20px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment