mirror of
https://github.com/10h30/WooCommerce-Payment-Methods.git
synced 2026-07-11 19:05:54 +09:00
Move plugin folder
This commit is contained in:
@@ -0,0 +1,133 @@
|
||||
/**
|
||||
* vendocrat Payment Methods styles
|
||||
*
|
||||
* @package vendocrat
|
||||
* @subpackage Payment Methods/Assets
|
||||
*
|
||||
* @since 2014-09-08
|
||||
* @version 2014-09-22
|
||||
*
|
||||
* @author Poellmann Alexander Manfred <alex@vendocr.at>
|
||||
* @copyright Copyright 2014 vendocrat. All Rights Reserved.
|
||||
* @link http://vendocr.at/
|
||||
*/
|
||||
|
||||
/**** Base Styles */
|
||||
.payment-methods {
|
||||
padding-left:0;
|
||||
list-style:none;
|
||||
margin-left:-2px;}
|
||||
|
||||
.payment-methods > li {
|
||||
display:inline-block;
|
||||
padding:2px;
|
||||
|
||||
vertical-align:top;}
|
||||
|
||||
.payment-methods > li > i {
|
||||
display:block !important;
|
||||
cursor:default;
|
||||
padding:4px;
|
||||
|
||||
border-radius:4px;
|
||||
|
||||
background:transparent;
|
||||
border:1px solid transparent;}
|
||||
|
||||
.payment-methods-inverse > li > i,
|
||||
.payment-methods-i > li > i {
|
||||
color:#fff;
|
||||
background:#333;
|
||||
border-color:#333;}
|
||||
|
||||
.payment-methods-outline > li > i,
|
||||
.payment-methods-o > li > i {
|
||||
border-color:#777;}
|
||||
|
||||
.payment-methods > li > i {
|
||||
font-size:1.5em;
|
||||
line-height:1;}
|
||||
|
||||
/**** Widget */
|
||||
.widget_vendocrat_payment_methods {}
|
||||
|
||||
.widget_vendocrat_payment_methods ul {
|
||||
margin-bottom:0;}
|
||||
|
||||
/**** WooCommerce Checkout */
|
||||
#payment ul.payment_methods .payment_method_bacs label img,
|
||||
#payment ul.payment_methods .payment_method_cheque label img,
|
||||
#payment ul.payment_methods .payment_method_mijireh_checkout label img,
|
||||
#payment ul.payment_methods .payment_method_paypal label img,
|
||||
#payment ul.payment_methods .payment_method_stripe label img,
|
||||
#payment ul.payment_methods .payment_method_wirecard label img,
|
||||
#payment ul.payment_methods .payment_method_ClickAndBuy label img,
|
||||
#payment ul.payment_methods .payment_method_sofortgateway label img,
|
||||
#payment ul.payment_methods .payment_method_cash_on_delivery label img,
|
||||
#payment ul.payment_methods .payment_method_bitpay label img,
|
||||
#payment ul.payment_methods .payment_method_coinbase label img {
|
||||
display:none;}
|
||||
|
||||
#payment ul.payment_methods .payment_method_bacs label:before,
|
||||
#payment ul.payment_methods .payment_method_cheque label:before,
|
||||
#payment ul.payment_methods .payment_method_mijireh_checkout label:before,
|
||||
#payment ul.payment_methods .payment_method_paypal label:before,
|
||||
#payment ul.payment_methods .payment_method_stripe label:before,
|
||||
#payment ul.payment_methods .payment_method_wirecard label:before,
|
||||
#payment ul.payment_methods .payment_method_ClickAndBuy label:before,
|
||||
#payment ul.payment_methods .payment_method_sofortgateway label:before,
|
||||
#payment ul.payment_methods .payment_method_cash_on_delivery label:before,
|
||||
#payment ul.payment_methods .payment_method_bitpay label:before,
|
||||
#payment ul.payment_methods .payment_method_coinbase label:before {
|
||||
display:inline;
|
||||
margin-right:10px;padding:2px 6px;
|
||||
vertical-align:middle;
|
||||
border-radius:3px;
|
||||
|
||||
color:#fff;
|
||||
background:#333;
|
||||
|
||||
font-family:PaymentFont;
|
||||
font-size:1.5em;
|
||||
font-style:normal;
|
||||
font-weight:normal;
|
||||
line-height:1;
|
||||
text-decoration:none;
|
||||
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-moz-osx-font-smoothing:grayscale;}
|
||||
|
||||
#payment ul.payment_methods .payment_method_bacs label:before {
|
||||
content:'\f005';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_cheque label:before {
|
||||
content:'\f00a';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_mijireh_checkout label:before {
|
||||
content:'\f012';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_paypal label:before {
|
||||
content:'\f033';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_stripe label:before {
|
||||
content:'\f03e';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_wirecard label:before {
|
||||
content:'\f049';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_ClickAndBuy label:before {
|
||||
content:'\f011';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_sofortgateway label:before {
|
||||
content:'\f03e';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_cash_on_delivery label:before {
|
||||
content:'\f00d';}
|
||||
|
||||
#payment ul.payment_methods .payment_method_bitpay label:before,
|
||||
#payment ul.payment_methods .payment_method_coinbase label:before {
|
||||
content:'\f006';}
|
||||
|
||||
/*
|
||||
* NO MORE LOVE TO GIVE
|
||||
*/
|
||||
@@ -0,0 +1,257 @@
|
||||
/**
|
||||
* PaymentFont Styles 0.1.0
|
||||
*
|
||||
* @since 2014-09-21
|
||||
* @version 2014-09-22
|
||||
*
|
||||
* @author Poellmann Alexander Manfred <alex@vendocr.at>
|
||||
* @copyright Copyright 2014 vendocrat. All Rights Reserved.
|
||||
* @link http://vendocr.at/
|
||||
*
|
||||
* @license Font: SIL OFL 1.1, CSS: MIT License
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family:'PaymentFont';
|
||||
src:url('../fonts/paymentfont-webfont.eot');
|
||||
src:url('../fonts/paymentfont-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/paymentfont-webfont.woff') format('woff'),
|
||||
url('../fonts/paymentfont-webfont.ttf') format('truetype'),
|
||||
url('../fonts/paymentfont-webfont.svg#paymentfont-webfont') format('svg');
|
||||
font-weight:normal;
|
||||
font-style:normal;}
|
||||
|
||||
.pf {
|
||||
display:inline-block;
|
||||
font:normal normal normal 14px/1 PaymentFont;
|
||||
font-size:inherit;
|
||||
text-rendering:auto;
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-moz-osx-font-smoothing:grayscale;}
|
||||
|
||||
.pf-amazon:before {
|
||||
content: "\f000";
|
||||
}
|
||||
.pf-american-express:before {
|
||||
content: "\f001";
|
||||
}
|
||||
.pf-american-express-alt:before {
|
||||
content: "\f002";
|
||||
}
|
||||
.pf-atm:before {
|
||||
content: "\f003";
|
||||
}
|
||||
.pf-bankomat:before {
|
||||
content: "\f004";
|
||||
}
|
||||
.pf-bank-transfer:before {
|
||||
content: "\f005";
|
||||
}
|
||||
.pf-bitcoin:before {
|
||||
content: "\f006";
|
||||
}
|
||||
.pf-bitcoin-sign:before {
|
||||
content: "\f007";
|
||||
}
|
||||
.pf-braintree:before {
|
||||
content: "\f008";
|
||||
}
|
||||
.pf-btc:before {
|
||||
content: "\f009";
|
||||
}
|
||||
.pf-card:before {
|
||||
content: "\f00a";
|
||||
}
|
||||
.pf-carta-si:before {
|
||||
content: "\f00b";
|
||||
}
|
||||
.pf-cash:before {
|
||||
content: "\f00c";
|
||||
}
|
||||
.pf-cash-on-delivery:before {
|
||||
content: "\f00d";
|
||||
}
|
||||
.pf-cb:before {
|
||||
content: "\f00e";
|
||||
}
|
||||
.pf-cirrus:before {
|
||||
content: "\f00f";
|
||||
}
|
||||
.pf-cirrus-alt:before {
|
||||
content: "\f010";
|
||||
}
|
||||
.pf-clickandbuy:before {
|
||||
content: "\f011";
|
||||
}
|
||||
.pf-credit-card:before {
|
||||
content: "\f012";
|
||||
}
|
||||
.pf-diners:before {
|
||||
content: "\f013";
|
||||
}
|
||||
.pf-discover:before {
|
||||
content: "\f014";
|
||||
}
|
||||
.pf-ec:before {
|
||||
content: "\f015";
|
||||
}
|
||||
.pf-eps:before {
|
||||
content: "\f016";
|
||||
}
|
||||
.pf-eur:before {
|
||||
content: "\f017";
|
||||
}
|
||||
.pf-facture:before {
|
||||
content: "\f018";
|
||||
}
|
||||
.pf-fattura:before {
|
||||
content: "\f019";
|
||||
}
|
||||
.pf-flattr:before {
|
||||
content: "\f01a";
|
||||
}
|
||||
.pf-giropay:before {
|
||||
content: "\f01b";
|
||||
}
|
||||
.pf-gittip:before {
|
||||
content: "\f01c";
|
||||
}
|
||||
.pf-google-wallet:before {
|
||||
content: "\f01d";
|
||||
}
|
||||
.pf-google-wallet-alt:before {
|
||||
content: "\f01e";
|
||||
}
|
||||
.pf-gpb:before {
|
||||
content: "\f01f";
|
||||
}
|
||||
.pf-ideal:before {
|
||||
content: "\f020";
|
||||
}
|
||||
.pf-ils:before {
|
||||
content: "\f021";
|
||||
}
|
||||
.pf-inr:before {
|
||||
content: "\f022";
|
||||
}
|
||||
.pf-invoice:before {
|
||||
content: "\f023";
|
||||
}
|
||||
.pf-invoice-sign:before {
|
||||
content: "\f024";
|
||||
}
|
||||
.pf-invoice-sign-alt:before {
|
||||
content: "\f025";
|
||||
}
|
||||
.pf-invoice-sign-alt-o:before {
|
||||
content: "\f026";
|
||||
}
|
||||
.pf-invoice-sign-o:before {
|
||||
content: "\f027";
|
||||
}
|
||||
.pf-jcb:before {
|
||||
content: "\f028";
|
||||
}
|
||||
.pf-jpy:before {
|
||||
content: "\f029";
|
||||
}
|
||||
.pf-krw:before {
|
||||
content: "\f02a";
|
||||
}
|
||||
.pf-maestro:before {
|
||||
content: "\f02b";
|
||||
}
|
||||
.pf-maestro-alt:before {
|
||||
content: "\f02c";
|
||||
}
|
||||
.pf-mastercard:before {
|
||||
content: "\f02d";
|
||||
}
|
||||
.pf-mastercard-alt:before {
|
||||
content: "\f02e";
|
||||
}
|
||||
.pf-mastercard-securecode:before {
|
||||
content: "\f02f";
|
||||
}
|
||||
.pf-ogone:before {
|
||||
content: "\f030";
|
||||
}
|
||||
.pf-paybox:before {
|
||||
content: "\f031";
|
||||
}
|
||||
.pf-paylife:before {
|
||||
content: "\f032";
|
||||
}
|
||||
.pf-paypal:before {
|
||||
content: "\f033";
|
||||
}
|
||||
.pf-paypal-alt:before {
|
||||
content: "\f034";
|
||||
}
|
||||
.pf-paysafecard:before {
|
||||
content: "\f035";
|
||||
}
|
||||
.pf-postepay:before {
|
||||
content: "\f036";
|
||||
}
|
||||
.pf-quick:before {
|
||||
content: "\f037";
|
||||
}
|
||||
.pf-rechnung:before {
|
||||
content: "\f038";
|
||||
}
|
||||
.pf-ripple:before {
|
||||
content: "\f039";
|
||||
}
|
||||
.pf-rub:before {
|
||||
content: "\f03a";
|
||||
}
|
||||
.pf-skrill:before {
|
||||
content: "\f03b";
|
||||
}
|
||||
.pf-sofort:before {
|
||||
content: "\f03c";
|
||||
}
|
||||
.pf-square:before {
|
||||
content: "\f03d";
|
||||
}
|
||||
.pf-stripe:before {
|
||||
content: "\f03e";
|
||||
}
|
||||
.pf-truste:before {
|
||||
content: "\f03f";
|
||||
}
|
||||
.pf-try:before {
|
||||
content: "\f040";
|
||||
}
|
||||
.pf-unionpay:before {
|
||||
content: "\f041";
|
||||
}
|
||||
.pf-usd:before {
|
||||
content: "\f042";
|
||||
}
|
||||
.pf-verified-by-visa:before {
|
||||
content: "\f043";
|
||||
}
|
||||
.pf-verisign:before {
|
||||
content: "\f044";
|
||||
}
|
||||
.pf-visa:before {
|
||||
content: "\f045";
|
||||
}
|
||||
.pf-visa-electron:before {
|
||||
content: "\f046";
|
||||
}
|
||||
.pf-western-union:before {
|
||||
content: "\f047";
|
||||
}
|
||||
.pf-western-union-alt:before {
|
||||
content: "\f048";
|
||||
}
|
||||
.pf-wirecard:before {
|
||||
content: "\f049";
|
||||
}
|
||||
|
||||
/*
|
||||
* E fatto!
|
||||
*/
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* PaymentFont Styles 0.1.0 by @vendocrat/@AMPoellmann
|
||||
* http://vendocr.at or @vendocrat
|
||||
* License Font: SIL OFL 1.1, CSS: MIT License
|
||||
*/
|
||||
@font-face{font-family:PaymentFont;src:url(../fonts/paymentfont-webfont.eot);src:url(../fonts/paymentfont-webfont.eot?#iefix) format('embedded-opentype'),url(../fonts/paymentfont-webfont.woff) format('woff'),url(../fonts/paymentfont-webfont.ttf) format('truetype'),url(../fonts/paymentfont-webfont.svg#paymentfont-webfont) format('svg');font-weight:400;font-style:normal}.pf{display:inline-block;font:normal normal normal 14px/1 PaymentFont;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.pf-amazon:before{content:"\f000"}.pf-american-express:before{content:"\f001"}.pf-american-express-alt:before{content:"\f002"}.pf-atm:before{content:"\f003"}.pf-bankomat:before{content:"\f004"}.pf-bank-transfer:before{content:"\f005"}.pf-bitcoin:before{content:"\f006"}.pf-bitcoin-sign:before{content:"\f007"}.pf-braintree:before{content:"\f008"}.pf-btc:before{content:"\f009"}.pf-card:before{content:"\f00a"}.pf-carta-si:before{content:"\f00b"}.pf-cash:before{content:"\f00c"}.pf-cash-on-delivery:before{content:"\f00d"}.pf-cb:before{content:"\f00e"}.pf-cirrus:before{content:"\f00f"}.pf-cirrus-alt:before{content:"\f010"}.pf-clickandbuy:before{content:"\f011"}.pf-credit-card:before{content:"\f012"}.pf-diners:before{content:"\f013"}.pf-discover:before{content:"\f014"}.pf-ec:before{content:"\f015"}.pf-eps:before{content:"\f016"}.pf-eur:before{content:"\f017"}.pf-facture:before{content:"\f018"}.pf-fattura:before{content:"\f019"}.pf-flattr:before{content:"\f01a"}.pf-giropay:before{content:"\f01b"}.pf-gittip:before{content:"\f01c"}.pf-google-wallet:before{content:"\f01d"}.pf-google-wallet-alt:before{content:"\f01e"}.pf-gpb:before{content:"\f01f"}.pf-ideal:before{content:"\f020"}.pf-ils:before{content:"\f021"}.pf-inr:before{content:"\f022"}.pf-invoice:before{content:"\f023"}.pf-invoice-sign:before{content:"\f024"}.pf-invoice-sign-alt:before{content:"\f025"}.pf-invoice-sign-alt-o:before{content:"\f026"}.pf-invoice-sign-o:before{content:"\f027"}.pf-jcb:before{content:"\f028"}.pf-jpy:before{content:"\f029"}.pf-krw:before{content:"\f02a"}.pf-maestro:before{content:"\f02b"}.pf-maestro-alt:before{content:"\f02c"}.pf-mastercard:before{content:"\f02d"}.pf-mastercard-alt:before{content:"\f02e"}.pf-mastercard-securecode:before{content:"\f02f"}.pf-ogone:before{content:"\f030"}.pf-paybox:before{content:"\f031"}.pf-paylife:before{content:"\f032"}.pf-paypal:before{content:"\f033"}.pf-paypal-alt:before{content:"\f034"}.pf-paysafecard:before{content:"\f035"}.pf-postepay:before{content:"\f036"}.pf-quick:before{content:"\f037"}.pf-rechnung:before{content:"\f038"}.pf-ripple:before{content:"\f039"}.pf-rub:before{content:"\f03a"}.pf-skrill:before{content:"\f03b"}.pf-sofort:before{content:"\f03c"}.pf-square:before{content:"\f03d"}.pf-stripe:before{content:"\f03e"}.pf-truste:before{content:"\f03f"}.pf-try:before{content:"\f040"}.pf-unionpay:before{content:"\f041"}.pf-usd:before{content:"\f042"}.pf-verified-by-visa:before{content:"\f043"}.pf-verisign:before{content:"\f044"}.pf-visa:before{content:"\f045"}.pf-visa-electron:before{content:"\f046"}.pf-western-union:before{content:"\f047"}.pf-western-union-alt:before{content:"\f048"}.pf-wirecard:before{content:"\f049"}
|
||||
/*
|
||||
* E fatto!
|
||||
*/
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 357 KiB |
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user