first commit

This commit is contained in:
2024-11-11 18:46:54 +01:00
commit a630d17338
25634 changed files with 4923715 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
// Colors
$white: #fff !default;
$primary: #3ed2f0 !default;
$primary-light: #2095f2 !default;
$secondary: #d3d3d3 !default;
$default: #ecf6fb !default;
$colors: (
'primary' : $primary,
'secondary': $secondary,
'default': $default
);
// Fonts
$font-weight-bold: 700 !default;
$font-size-base: 16px !default;
// Borders
$border-width: 3px;

View File

@@ -0,0 +1,33 @@
<?php
/**
* NOTICE OF LICENSE
*
* This source file is subject to a commercial license from SARL 202 ecommence
* Use, copy, modification or distribution of this source file without written
* license agreement from the SARL 202 ecommence is strictly forbidden.
* In order to obtain a license, please contact us: tech@202-ecommerce.com
* ...........................................................................
* INFORMATION SUR LA LICENCE D'UTILISATION
*
* L'utilisation de ce fichier source est soumise a une licence commerciale
* concedee par la societe 202 ecommence
* Toute utilisation, reproduction, modification ou distribution du present
* fichier source sans contrat de licence ecrit de la part de la SARL 202 ecommence est
* expressement interdite.
* Pour obtenir une licence, veuillez contacter 202-ecommerce <tech@202-ecommerce.com>
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,48 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.paypal-loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 25px;
height: 25px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.paypal-loader-container {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
background: #fff;
}

View File

@@ -0,0 +1,81 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.paypal-nav {
padding-bottom: 2px;
margin-bottom: 20px;
margin-left: 8px;
border-bottom: 1px solid $secondary;
> .nav-item {
> .link {
padding-bottom: 4px;
padding-left: 0;
margin-right: 30px;
font-size: $font-size-base;
color: $primary-light;
&:hover,
&:focus {
padding-bottom: 4px;
padding-left: 0;
text-decoration: none;
background: transparent;
> span {
background: transparent;
}
}
&:focus,
&:active {
font-weight: $font-weight-bold;
color: $primary;
}
}
&.active {
> .link {
font-weight: $font-weight-bold;
color: $primary;
background: transparent;
&:hover,
&:focus {
color: $primary;
background: transparent;
}
> span {
padding-bottom: 4px;
border-bottom: 3px solid $primary;
}
}
}
}
}

View File

@@ -0,0 +1,52 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
@keyframes spinner-border {
to { transform: rotate(360deg); }
}
.spinner {
display: none;
}
.spinner-button {
pointer-events: none;
opacity: .7;
i {
display: none;
}
.spinner {
display: inline-block;
width: 1rem;
height: 1rem;
vertical-align: text-bottom;
border: .2em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
animation: spinner-border .75s linear infinite;
}
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* NOTICE OF LICENSE
*
* This source file is subject to a commercial license from SARL 202 ecommence
* Use, copy, modification or distribution of this source file without written
* license agreement from the SARL 202 ecommence is strictly forbidden.
* In order to obtain a license, please contact us: tech@202-ecommerce.com
* ...........................................................................
* INFORMATION SUR LA LICENCE D'UTILISATION
*
* L'utilisation de ce fichier source est soumise a une licence commerciale
* concedee par la societe 202 ecommence
* Toute utilisation, reproduction, modification ou distribution du present
* fichier source sans contrat de licence ecrit de la part de la SARL 202 ecommence est
* expressement interdite.
* Pour obtenir une licence, veuillez contacter 202-ecommerce <tech@202-ecommerce.com>
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,39 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
$directions: (
"top": "t",
"right": "r",
"bottom": "b",
"left": "l",
) !default;
@each $prop, $direction in $directions {
@each $color, $value in $colors {
.pp__border-#{$direction}-#{$color} {
border-#{$prop}: $border-width solid $value !important;
}
}
}

View File

@@ -0,0 +1,71 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.pp {
&__flex {
display: flex !important;
}
&__align-items-center {
align-items: center !important;
}
&__justify-content-center {
justify-content: center !important;
}
&__hidden {
display: none;
}
&__d-table-cell {
display: table-cell;
}
&__position-relative {
position: relative;
}
&__position-absolute {
position: relative;
}
&__flex_direction_column {
flex-direction: column !important;
}
&__justify-content-between {
justify-content: space-between !important;
}
&__flex_direction_column {
flex-direction: column !important;
}
&__justify-content-between {
justify-content: space-between !important;
}
}

View File

@@ -0,0 +1,72 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
$directions: (
"top": "t",
"right": "r",
"bottom": "b",
"left": "l",
) !default;
$spacers: (
"0": 0,
"1": 5px,
"2": 10px,
"3": 15px,
"4": 20px,
"5": 25px,
) !default;
@each $size, $length in $spacers {
.pp__m-#{$size} {
margin: $length !important;
}
.pp__p-#{$size} {
padding: $length !important;
}
.pp__my-#{$size} {
margin-top: $length !important;
margin-bottom: $length !important;
}
.pp__py-#{$size} {
padding-top: $length !important;
padding-bottom: $length !important;
}
.pp__px-#{$size} {
padding-left: $length !important;
padding-right: $length !important;
}
}
@each $prop, $direction in $directions {
@each $size, $length in $spacers {
.pp__m#{$direction}-#{$size} {
margin-#{$prop}: $length !important;
}
.pp__p#{$direction}-#{$size} {
padding-#{$prop}: $length !important;
}
}
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* NOTICE OF LICENSE
*
* This source file is subject to a commercial license from SARL 202 ecommence
* Use, copy, modification or distribution of this source file without written
* license agreement from the SARL 202 ecommence is strictly forbidden.
* In order to obtain a license, please contact us: tech@202-ecommerce.com
* ...........................................................................
* INFORMATION SUR LA LICENCE D'UTILISATION
*
* L'utilisation de ce fichier source est soumise a une licence commerciale
* concedee par la societe 202 ecommence
* Toute utilisation, reproduction, modification ou distribution du present
* fichier source sans contrat de licence ecrit de la part de la SARL 202 ecommence est
* expressement interdite.
* Pour obtenir une licence, veuillez contacter 202-ecommerce <tech@202-ecommerce.com>
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,35 @@
<?php
/**
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,161 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.pp-settings-link-on {
background: $default !important;
color: #000 !important;
.panel, .panel-footer {
background: $default !important;
}
}
.pp-settings-tab-on {
border-bottom: 3px solid #3ed2f0;
}
.stretchHeightForm form {
height: 100%;
}
.stretchHeightForm .panel {
height: 100%;
}
.d-inline-block {
display: inline-block;
}
.tick li {
margin-bottom: 40px;
}
.pp-w-100, .bootstrap .pp-w-100 {
width: 100% !important;
}
.pp-select-preview-container {
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
.pp-select-container {
flex-basis: 75%;
}
.pp-preview-container {
display: flex;
flex-basis: 25%;
justify-content: center;
align-content: center;
.pp-preview {
width: 10vw;
height: 10vw;
background-size: cover;
background-color: #7b8a8b;
position: absolute;
top: -45px;
}
}
}
[widget-code-container] {
width: 75%;
}
[customize-style-shortcut-container] {
display: flex;
justify-content: space-between;
[setting-section] {
display: flex;
flex-basis: 60%;
flex-direction: column;
[current-view-section] {
display: flex;
}
[button-container] {
position: relative;
}
}
[preview-section] {
flex-basis: 40%;
display: flex;
justify-content: center;
align-items: center;
}
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 999;
}
[field-row] {
display: flex;
[label] {
flex-basis: 20%;
}
[field] {
flex-basis: 80%;
}
}
[chain-input-container] {
display: flex;
justify-content: space-around;
[item] {
flex-direction: column;
justify-content: center;
align-items: center;
}
}
.pp__label {
font-size: 13px;
}
.displayModeSection {
margin-top: 0 !important;
margin-bottom: 0 !important;
[field] {
flex-basis: 75%;
}
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* NOTICE OF LICENSE
*
* This source file is subject to a commercial license from SARL 202 ecommence
* Use, copy, modification or distribution of this source file without written
* license agreement from the SARL 202 ecommence is strictly forbidden.
* In order to obtain a license, please contact us: tech@202-ecommerce.com
* ...........................................................................
* INFORMATION SUR LA LICENCE D'UTILISATION
*
* L'utilisation de ce fichier source est soumise a une licence commerciale
* concedee par la societe 202 ecommence
* Toute utilisation, reproduction, modification ou distribution du present
* fichier source sans contrat de licence ecrit de la part de la SARL 202 ecommence est
* expressement interdite.
* Pour obtenir une licence, veuillez contacter 202-ecommerce <tech@202-ecommerce.com>
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,792 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.paypal-nav {
padding-bottom: 2px;
margin-bottom: 20px;
margin-left: 8px;
border-bottom: 1px solid #d3d3d3;
}
.paypal-nav > .nav-item > .link {
padding-bottom: 4px;
padding-left: 0;
margin-right: 30px;
font-size: 16px;
color: #2095f2;
}
.paypal-nav > .nav-item > .link:hover, .paypal-nav > .nav-item > .link:focus {
padding-bottom: 4px;
padding-left: 0;
text-decoration: none;
background: transparent;
}
.paypal-nav > .nav-item > .link:hover > span, .paypal-nav > .nav-item > .link:focus > span {
background: transparent;
}
.paypal-nav > .nav-item > .link:focus, .paypal-nav > .nav-item > .link:active {
font-weight: 700;
color: #3ed2f0;
}
.paypal-nav > .nav-item.active > .link {
font-weight: 700;
color: #3ed2f0;
background: transparent;
}
.paypal-nav > .nav-item.active > .link:hover, .paypal-nav > .nav-item.active > .link:focus {
color: #3ed2f0;
background: transparent;
}
.paypal-nav > .nav-item.active > .link > span {
padding-bottom: 4px;
border-bottom: 3px solid #3ed2f0;
}
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
@keyframes spinner-border {
to {
transform: rotate(360deg);
}
}
.spinner {
display: none;
}
.spinner-button {
pointer-events: none;
opacity: 0.7;
}
.spinner-button i {
display: none;
}
.spinner-button .spinner {
display: inline-block;
width: 1rem;
height: 1rem;
vertical-align: text-bottom;
border: 0.2em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
animation: spinner-border 0.75s linear infinite;
}
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.pp__border-t-primary {
border-top: 3px solid #3ed2f0 !important;
}
.pp__border-t-secondary {
border-top: 3px solid #d3d3d3 !important;
}
.pp__border-t-default {
border-top: 3px solid #ecf6fb !important;
}
.pp__border-r-primary {
border-right: 3px solid #3ed2f0 !important;
}
.pp__border-r-secondary {
border-right: 3px solid #d3d3d3 !important;
}
.pp__border-r-default {
border-right: 3px solid #ecf6fb !important;
}
.pp__border-b-primary {
border-bottom: 3px solid #3ed2f0 !important;
}
.pp__border-b-secondary {
border-bottom: 3px solid #d3d3d3 !important;
}
.pp__border-b-default {
border-bottom: 3px solid #ecf6fb !important;
}
.pp__border-l-primary {
border-left: 3px solid #3ed2f0 !important;
}
.pp__border-l-secondary {
border-left: 3px solid #d3d3d3 !important;
}
.pp__border-l-default {
border-left: 3px solid #ecf6fb !important;
}
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.pp__flex {
display: flex !important;
}
.pp__align-items-center {
align-items: center !important;
}
.pp__justify-content-center {
justify-content: center !important;
}
.pp__hidden {
display: none;
}
.pp__d-table-cell {
display: table-cell;
}
.pp__position-relative {
position: relative;
}
.pp__position-absolute {
position: relative;
}
.pp__flex_direction_column {
flex-direction: column !important;
}
.pp__justify-content-between {
justify-content: space-between !important;
}
.pp__flex_direction_column {
flex-direction: column !important;
}
.pp__justify-content-between {
justify-content: space-between !important;
}
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.pp__m-0 {
margin: 0 !important;
}
.pp__p-0 {
padding: 0 !important;
}
.pp__my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.pp__py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.pp__px-0 {
padding-left: 0 !important;
padding-right: 0 !important;
}
.pp__m-1 {
margin: 5px !important;
}
.pp__p-1 {
padding: 5px !important;
}
.pp__my-1 {
margin-top: 5px !important;
margin-bottom: 5px !important;
}
.pp__py-1 {
padding-top: 5px !important;
padding-bottom: 5px !important;
}
.pp__px-1 {
padding-left: 5px !important;
padding-right: 5px !important;
}
.pp__m-2 {
margin: 10px !important;
}
.pp__p-2 {
padding: 10px !important;
}
.pp__my-2 {
margin-top: 10px !important;
margin-bottom: 10px !important;
}
.pp__py-2 {
padding-top: 10px !important;
padding-bottom: 10px !important;
}
.pp__px-2 {
padding-left: 10px !important;
padding-right: 10px !important;
}
.pp__m-3 {
margin: 15px !important;
}
.pp__p-3 {
padding: 15px !important;
}
.pp__my-3 {
margin-top: 15px !important;
margin-bottom: 15px !important;
}
.pp__py-3 {
padding-top: 15px !important;
padding-bottom: 15px !important;
}
.pp__px-3 {
padding-left: 15px !important;
padding-right: 15px !important;
}
.pp__m-4 {
margin: 20px !important;
}
.pp__p-4 {
padding: 20px !important;
}
.pp__my-4 {
margin-top: 20px !important;
margin-bottom: 20px !important;
}
.pp__py-4 {
padding-top: 20px !important;
padding-bottom: 20px !important;
}
.pp__px-4 {
padding-left: 20px !important;
padding-right: 20px !important;
}
.pp__m-5 {
margin: 25px !important;
}
.pp__p-5 {
padding: 25px !important;
}
.pp__my-5 {
margin-top: 25px !important;
margin-bottom: 25px !important;
}
.pp__py-5 {
padding-top: 25px !important;
padding-bottom: 25px !important;
}
.pp__px-5 {
padding-left: 25px !important;
padding-right: 25px !important;
}
.pp__mt-0 {
margin-top: 0 !important;
}
.pp__pt-0 {
padding-top: 0 !important;
}
.pp__mt-1 {
margin-top: 5px !important;
}
.pp__pt-1 {
padding-top: 5px !important;
}
.pp__mt-2 {
margin-top: 10px !important;
}
.pp__pt-2 {
padding-top: 10px !important;
}
.pp__mt-3 {
margin-top: 15px !important;
}
.pp__pt-3 {
padding-top: 15px !important;
}
.pp__mt-4 {
margin-top: 20px !important;
}
.pp__pt-4 {
padding-top: 20px !important;
}
.pp__mt-5 {
margin-top: 25px !important;
}
.pp__pt-5 {
padding-top: 25px !important;
}
.pp__mr-0 {
margin-right: 0 !important;
}
.pp__pr-0 {
padding-right: 0 !important;
}
.pp__mr-1 {
margin-right: 5px !important;
}
.pp__pr-1 {
padding-right: 5px !important;
}
.pp__mr-2 {
margin-right: 10px !important;
}
.pp__pr-2 {
padding-right: 10px !important;
}
.pp__mr-3 {
margin-right: 15px !important;
}
.pp__pr-3 {
padding-right: 15px !important;
}
.pp__mr-4 {
margin-right: 20px !important;
}
.pp__pr-4 {
padding-right: 20px !important;
}
.pp__mr-5 {
margin-right: 25px !important;
}
.pp__pr-5 {
padding-right: 25px !important;
}
.pp__mb-0 {
margin-bottom: 0 !important;
}
.pp__pb-0 {
padding-bottom: 0 !important;
}
.pp__mb-1 {
margin-bottom: 5px !important;
}
.pp__pb-1 {
padding-bottom: 5px !important;
}
.pp__mb-2 {
margin-bottom: 10px !important;
}
.pp__pb-2 {
padding-bottom: 10px !important;
}
.pp__mb-3 {
margin-bottom: 15px !important;
}
.pp__pb-3 {
padding-bottom: 15px !important;
}
.pp__mb-4 {
margin-bottom: 20px !important;
}
.pp__pb-4 {
padding-bottom: 20px !important;
}
.pp__mb-5 {
margin-bottom: 25px !important;
}
.pp__pb-5 {
padding-bottom: 25px !important;
}
.pp__ml-0 {
margin-left: 0 !important;
}
.pp__pl-0 {
padding-left: 0 !important;
}
.pp__ml-1 {
margin-left: 5px !important;
}
.pp__pl-1 {
padding-left: 5px !important;
}
.pp__ml-2 {
margin-left: 10px !important;
}
.pp__pl-2 {
padding-left: 10px !important;
}
.pp__ml-3 {
margin-left: 15px !important;
}
.pp__pl-3 {
padding-left: 15px !important;
}
.pp__ml-4 {
margin-left: 20px !important;
}
.pp__pl-4 {
padding-left: 20px !important;
}
.pp__ml-5 {
margin-left: 25px !important;
}
.pp__pl-5 {
padding-left: 25px !important;
}
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.pp-settings-link-on {
background: #ecf6fb !important;
color: #000 !important;
}
.pp-settings-link-on .panel, .pp-settings-link-on .panel-footer {
background: #ecf6fb !important;
}
.pp-settings-tab-on {
border-bottom: 3px solid #3ed2f0;
}
.stretchHeightForm form {
height: 100%;
}
.stretchHeightForm .panel {
height: 100%;
}
.d-inline-block {
display: inline-block;
}
.tick li {
margin-bottom: 40px;
}
.pp-w-100, .bootstrap .pp-w-100 {
width: 100% !important;
}
.pp-select-preview-container {
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
}
.pp-select-preview-container .pp-select-container {
flex-basis: 75%;
}
.pp-select-preview-container .pp-preview-container {
display: flex;
flex-basis: 25%;
justify-content: center;
align-content: center;
}
.pp-select-preview-container .pp-preview-container .pp-preview {
width: 10vw;
height: 10vw;
background-size: cover;
background-color: #7b8a8b;
position: absolute;
top: -45px;
}
[widget-code-container] {
width: 75%;
}
[customize-style-shortcut-container] {
display: flex;
justify-content: space-between;
}
[customize-style-shortcut-container] [setting-section] {
display: flex;
flex-basis: 60%;
flex-direction: column;
}
[customize-style-shortcut-container] [setting-section] [current-view-section] {
display: flex;
}
[customize-style-shortcut-container] [setting-section] [button-container] {
position: relative;
}
[customize-style-shortcut-container] [preview-section] {
flex-basis: 40%;
display: flex;
justify-content: center;
align-items: center;
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 999;
}
[field-row] {
display: flex;
}
[field-row] [label] {
flex-basis: 20%;
}
[field-row] [field] {
flex-basis: 80%;
}
[chain-input-container] {
display: flex;
justify-content: space-around;
}
[chain-input-container] [item] {
flex-direction: column;
justify-content: center;
align-items: center;
}
.pp__label {
font-size: 13px;
}
.displayModeSection {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.displayModeSection [field] {
flex-basis: 75%;
}/*# sourceMappingURL=paypal_bo.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,39 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
// Utils
@import "abstract/variables";
// Components
@import "components/nav";
@import "components/spinner";
// Helpers
@import "helpers/borders";
@import "helpers/display";
@import "helpers/spacing";
// Pages
@import "pages/admin";

View File

@@ -0,0 +1,162 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.paypal-loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 25px;
height: 25px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.paypal-loader-container {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
background: #fff;
}
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
.pp__flex {
display: flex !important;
}
.pp__align-items-center {
align-items: center !important;
}
.pp__justify-content-center {
justify-content: center !important;
}
.pp__hidden {
display: none;
}
.pp__d-table-cell {
display: table-cell;
}
.pp__position-relative {
position: relative;
}
.pp__position-absolute {
position: relative;
}
.pp__flex_direction_column {
flex-direction: column !important;
}
.pp__justify-content-between {
justify-content: space-between !important;
}
.pp__flex_direction_column {
flex-direction: column !important;
}
.pp__justify-content-between {
justify-content: space-between !important;
}
.pp-info .item {
display: flex;
flex-direction: column;
align-items: center;
font-size: 14px;
}
.pp-info .item .header {
font-weight: 700;
}
.pp-info .item .desc {
text-align: center;
line-height: 1.3;
width: 100%;
}
@media only screen and (min-width: 992px) {
body.pp-popover .popover {
max-width: 500px;
}
}
@media only screen and (max-width: 991px) {
.popover.bs-tether-element-attached-top {
left: -95px !important;
width: 276px;
top: 13px !important;
}
.popover.bs-tether-element-attached-top::before, .popover.bs-tether-element-attached-top::after {
left: 85%;
}
}/*# sourceMappingURL=paypal_fo.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,67 @@
/*!
* 2007-2020 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2020 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
// Components
@import "components/loader";
@import "helpers/display";
.pp-info {
.item {
display: flex;
flex-direction: column;
align-items: center;
font-size: 14px;
.header {
font-weight: 700;
}
.desc {
text-align: center;
line-height: 1.3;
width: 100%;
}
}
}
@media only screen and (min-width: 992px) {
body.pp-popover .popover {max-width:500px;}
}
@media only screen and (max-width: 991px) {
.popover.bs-tether-element-attached-top {
left: -95px !important;
width: 276px;
top: 13px !important;
&::before,
&::after {
left: 85%;
}
}
}