This commit is contained in:
2025-10-20 14:10:54 +02:00
parent 75ca8fd840
commit d2c1970ef8
732 changed files with 101915 additions and 2 deletions

View File

@@ -0,0 +1,138 @@
.btn-sso {
display: flex;
align-items: center;
gap: 15px;
border: 1px solid transparent;
}
.btn-sso[data-theme="light"] {
border-color: #a3a3a3;
}
.btn-sso:hover {
filter: brightness(0.85);
color: #fff;
}
.btn-sso img {
width: 20px;
height: 20px;
}
.pshowsso-buttons {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 15px;
justify-content: center;
}
/* github */
.btn-sso-github[data-theme="dark"] {
background: #333;
color: #fff;
}
.btn-sso-github[data-theme="dark"] img {
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(92deg) brightness(101%) contrast(101%);
}
.btn-sso-github[data-theme="light"] {
background: #fff;
color: #111;
}
/* /github */
/* google */
.btn-sso-google[data-theme="dark"] {
background: #111;
color: #fff;
}
.btn-sso-google[data-theme="light"] {
background: #fff;
color: #111;
}
/* /google */
/* apple */
.btn-sso-apple[data-theme="dark"] {
background: #111;
color: #fff;
}
.btn-sso-apple[data-theme="dark"] img {
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(92deg) brightness(101%) contrast(101%);
}
.btn-sso-apple[data-theme="light"] {
background: #fff;
color: #111;
}
/* /apple */
/* facebook */
.btn-sso-facebook[data-theme="dark"] {
background: #111;
color: #fff;
}
.btn-sso-facebook[data-theme="light"] {
background: #fff;
color: #111;
}
/* /facebook */
/* x */
.btn-sso-x[data-theme="dark"] {
background: #111;
color: #fff;
}
.btn-sso-x[data-theme="light"] {
background: #fff;
color: #111;
}
.btn-sso-x[data-theme="light"] img {
filter: brightness(0) saturate(100%);
}
/* /x */
/* x */
.btn-sso-microsoft[data-theme="dark"] {
background: #111;
color: #fff;
}
.btn-sso-microsoft[data-theme="light"] {
background: #fff;
color: #111;
}
/* /x */
/* keycloak */
.btn-sso-keycloak[data-theme="dark"] {
background: #111;
color: #fff;
}
.btn-sso-keycloak[data-theme="light"] {
background: #fff;
color: #111;
}
/* /keycloak */

View File

@@ -0,0 +1,23 @@
<?php
/**
* File from https://prestashow.pl
*
* DISCLAIMER
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future.
*
* @authors PrestaShow.pl <kontakt@prestashow.pl>
*
* @copyright 2018 PrestaShow.pl
* @license https://prestashow.pl/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;