Created
September 6, 2019 05:47
-
-
Save leoleozhu/c8cf7fa045e499bdcbc8a7e414a0fc7a to your computer and use it in GitHub Desktop.
add payment icons for taopix checkout
This file contains 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
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