Add PrivateShop module templates and initial setup files
- Created restricted.tpl for displaying restricted access messages with customizable background options. - Added index.php files in hook and main template directories to prevent direct access and ensure proper redirection. - Implemented info.tpl to provide module information and support links, enhancing user experience with promotional content. - Included necessary CSS styles for the new templates to ensure proper layout and responsiveness.
This commit is contained in:
95
modules/privateshoplite/views/css/authentication15.css
Normal file
95
modules/privateshoplite/views/css/authentication15.css
Normal file
@@ -0,0 +1,95 @@
|
||||
/*
|
||||
* PrivateShop
|
||||
*
|
||||
* Do not edit or add to this file.
|
||||
* You are not authorized to modify, copy or redistribute this file.
|
||||
* Permissions are reserved by FME Modules.
|
||||
*
|
||||
* @author FME Modules
|
||||
* @copyright 2021 FME Modules All right reserved
|
||||
* @license Copyrights FME Modules
|
||||
* @category FMM Modules
|
||||
* @package PrivateShop
|
||||
*/
|
||||
|
||||
#account-creation_form {}
|
||||
|
||||
#account-creation_form fieldset {
|
||||
padding:0 0 15px 0;
|
||||
border:1px solid #ccc;
|
||||
background:#f8f8f8
|
||||
}
|
||||
#account-creation_form h3 {
|
||||
margin:0 0 15px 0;
|
||||
padding:8px;
|
||||
font-size:14px;
|
||||
color:#fff;
|
||||
text-transform:uppercase;
|
||||
background:url(../img/bg_form_h3.png) repeat-x 0 0 #989898
|
||||
}
|
||||
#center_column #account-creation_form p {margin:0; padding:0 0 10px 0}
|
||||
#account-creation_form p.required {color:#222}
|
||||
#account-creation_form p.required sup {color:#990000}
|
||||
|
||||
#account-creation_form p.radio span,
|
||||
#account-creation_form p.text label,
|
||||
#account-creation_form p.password label,
|
||||
#account-creation_form p.select label,
|
||||
#account-creation_form p.select span,
|
||||
#account-creation_form p.textarea label {
|
||||
display:inline-block;
|
||||
padding:6px 15px;
|
||||
width:210px;/* 260 */
|
||||
font-size:14px;
|
||||
text-align:right
|
||||
}
|
||||
#account-creation_form p.radio label {
|
||||
float:none;
|
||||
padding-right:10px;
|
||||
width:auto;
|
||||
font-size:14px
|
||||
}
|
||||
#account-creation_form p.checkbox label {
|
||||
float:none;
|
||||
width:auto;
|
||||
font-size:12px
|
||||
}
|
||||
#account-creation_form p.text input,
|
||||
#account-creation_form p.password input,
|
||||
#account-creation_form p.select input {
|
||||
padding:0 5px;
|
||||
height:22px;
|
||||
width:40%;/* 370 */
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#account-creation_form p.checkbox input {
|
||||
margin-left:140px;
|
||||
}
|
||||
#account-creation_form p.select select {
|
||||
margin-right:10px;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#account-creation_form p.textarea textarea {
|
||||
height:80px;
|
||||
width:41%;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
|
||||
#account-creation_form span.form_info {
|
||||
display:block;
|
||||
margin:5px 0 0 265px;
|
||||
color:#666
|
||||
}
|
||||
#account-creation_form p.inline-infos {
|
||||
margin:0 0 0 45% !important;
|
||||
font-size:12px;
|
||||
color:#666;
|
||||
}
|
||||
|
||||
#center_column #account-creation_form p.cart_navigation {margin:20px 0}
|
||||
52
modules/privateshoplite/views/css/authentication16.css
Normal file
52
modules/privateshoplite/views/css/authentication16.css
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* PrivateShop
|
||||
*
|
||||
* Do not edit or add to this file.
|
||||
* You are not authorized to modify, copy or redistribute this file.
|
||||
* Permissions are reserved by FME Modules.
|
||||
*
|
||||
* @author FME Modules
|
||||
* @copyright 2021 FME Modules All right reserved
|
||||
* @license Copyrights FME Modules
|
||||
* @category FMM Modules
|
||||
* @package PrivateShop
|
||||
*/
|
||||
|
||||
#account-creation_form .id_state,
|
||||
#account-creation_form .dni,
|
||||
#account-creation_form .postcode {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#create-account_form {
|
||||
min-height: 297px;
|
||||
}
|
||||
#create-account_form p {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
#create-account_form .form-group {
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
#login_form {
|
||||
min-height: 297px;
|
||||
}
|
||||
#login_form .form-group {
|
||||
margin: 0 0 3px 0;
|
||||
}
|
||||
#login_form .form-group.lost_password {
|
||||
margin: 14px 0 15px 0;
|
||||
}
|
||||
#login_form .form-group.lost_password a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
#login_form .form-group.lost_password a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#login_form .form-control,
|
||||
#create-account_form .form-control {
|
||||
max-width: 271px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=authentication.css.map */
|
||||
36
modules/privateshoplite/views/css/index.php
Normal file
36
modules/privateshoplite/views/css/index.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2015 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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 PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2015 PrestaShop SA
|
||||
* @version Release: $Revision$
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
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;
|
||||
51
modules/privateshoplite/views/css/jquery.autocomplete.css
Normal file
51
modules/privateshoplite/views/css/jquery.autocomplete.css
Normal file
@@ -0,0 +1,51 @@
|
||||
.ac_results {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
border: 1px solid black;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.ac_results ul {
|
||||
width: 100%;
|
||||
list-style-position: outside;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ac_results li {
|
||||
margin: 0px;
|
||||
padding: 2px 5px;
|
||||
cursor: default;
|
||||
display: block;
|
||||
/*
|
||||
if width will be 100% horizontal scrollbar will apear
|
||||
when scroll mode will be used
|
||||
*/
|
||||
/*width: 100%;*/
|
||||
font: menu;
|
||||
font-size: 12px;
|
||||
/*
|
||||
it is very important, if line-height not setted or setted
|
||||
in relative units scroll will be broken in firefox
|
||||
*/
|
||||
line-height: 16px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/*
|
||||
.ac_loading {
|
||||
background: white url('indicator.gif') right center no-repeat;
|
||||
}
|
||||
*/
|
||||
|
||||
.ac_odd {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.ac_over {
|
||||
background-color: #0A246A;
|
||||
color: white;
|
||||
}
|
||||
438
modules/privateshoplite/views/css/private.css
Normal file
438
modules/privateshoplite/views/css/private.css
Normal file
@@ -0,0 +1,438 @@
|
||||
/*
|
||||
* PrivateShop
|
||||
*
|
||||
* Do not edit or add to this file.
|
||||
* You are not authorized to modify, copy or redistribute this file.
|
||||
* Permissions are reserved by FME Modules.
|
||||
*
|
||||
* @author FME Modules
|
||||
* @copyright 2021 FME Modules All right reserved
|
||||
* @license Copyrights FME Modules
|
||||
* @category FMM Modules
|
||||
* @package PrivateShop
|
||||
*/
|
||||
|
||||
::-moz-selection {
|
||||
background: #b3d4fc;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #b3d4fc;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
html {
|
||||
padding: 30px 10px;
|
||||
font-size: 16px;
|
||||
line-height: 1.4;
|
||||
color: #737373;
|
||||
background: #f0f0f0;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
background: transparent;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
body,
|
||||
html {
|
||||
height: auto !important;
|
||||
}
|
||||
|
||||
html,
|
||||
input {
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
#privatebox {
|
||||
border: medium none;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
/*overflow: auto;*/
|
||||
padding: 10px;
|
||||
/*width: 45%;*/
|
||||
}
|
||||
#wrapper.private_wrapper {
|
||||
height: 65%;
|
||||
margin-left: 1%;
|
||||
overflow: auto;
|
||||
width: 44%;
|
||||
border-bottom: 1px solid #999;
|
||||
border-top: 1px solid #999;
|
||||
}
|
||||
#wrapper {
|
||||
width: 40%;
|
||||
margin-top: 15% !important;
|
||||
margin-bottom: 5% !important;
|
||||
background: #f1f1f1 none repeat scroll 0 0 !important;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0 10px;
|
||||
font-size: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 span {
|
||||
color: #bbb;
|
||||
}
|
||||
h2 {
|
||||
color: #d35780;
|
||||
margin: 0 10px;
|
||||
font-size: 40px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h2 span {
|
||||
color: #bbb;
|
||||
font-size: 60px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin: 1.5em 0 0.5em;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0 0 0 40px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 10px;
|
||||
_width: 380px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
input::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
#privatebox .private_login {
|
||||
/*border-top: 1px solid #e1e1e1;*/
|
||||
padding: 10px;
|
||||
}
|
||||
.radio-inline,
|
||||
.checkbox {
|
||||
padding-left: 5% !important;
|
||||
}
|
||||
#privatebox .private-subheading {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
color: #d35780;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
line-height: normal;
|
||||
margin-bottom: 12px;
|
||||
padding: 0 0 15px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/*~~~~~~~~~~ PS 1.7 Styles ~~~~~~~~~~*/
|
||||
#fmm_ps17 h1 {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#fmm_ps17 #ps17_errors {
|
||||
background: #f3515c;
|
||||
color: #fff;
|
||||
padding: 1%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#fmm_ps17 #ps17_errors ol {
|
||||
list-style: none;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
}
|
||||
/*
|
||||
#fmm_ps17 label {color: #333; font-weight: bold; font-size: 12px}
|
||||
|
||||
#fmm_ps17 #login_form { background: #fbfbfb; border: 1px solid #d6d4d4; padding: 14px 18px 13px}
|
||||
|
||||
#fmm_ps17 .form-control {box-shadow: none; height: 27px; padding: 3px 5px;border: 1px solid #d6d4d4; border-radius: 0;
|
||||
color: #9c9b9b; font-size: 13px; vertical-align: middle}*/
|
||||
|
||||
/*--------- END PS 1.7 -----------*/
|
||||
|
||||
@media only screen and (max-width: 360px) {
|
||||
#privatebox .container {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
#privatebox .container p img {
|
||||
width: 80%;
|
||||
}
|
||||
#privatebox .container h1 {
|
||||
margin-bottom: -10px;
|
||||
margin-top: 0;
|
||||
font-size: 25px;
|
||||
}
|
||||
#privatebox #noSlide .page-heading {
|
||||
font-size: 15px;
|
||||
}
|
||||
#private-lost-password h1.page-subheading {
|
||||
font-size: 16px;
|
||||
}
|
||||
#privatebox .private-subheading {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
color: #d35780;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
line-height: normal;
|
||||
margin-bottom: 5px;
|
||||
padding: 0 0 10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
#register span {
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
#SubmitLogin span,
|
||||
#SubmitCreate span,
|
||||
#privatebox #noSlide #account-creation_form .page-subheading {
|
||||
font-size: 12px;
|
||||
}
|
||||
#SubmitLogin span i,
|
||||
#SubmitCreate span i,
|
||||
.exttra_row {
|
||||
display: none;
|
||||
}
|
||||
td span.label-default {
|
||||
background-color: #999999;
|
||||
margin-top: -15px;
|
||||
}
|
||||
.private_error_resp {
|
||||
margin-bottom: 5px !important;
|
||||
margin-top: -17px !important;
|
||||
}
|
||||
#login_form {
|
||||
min-height: 240px;
|
||||
}
|
||||
#create-account_form {
|
||||
min-height: 275px;
|
||||
}
|
||||
.private_signup_table {
|
||||
margin-top: -40px;
|
||||
}
|
||||
}
|
||||
#logo_basic {
|
||||
text-align: center;
|
||||
}
|
||||
ul#pshop_bottom_footer {
|
||||
margin: 0px;
|
||||
}
|
||||
ul#pshop_bottom_footer li,
|
||||
ul#pshop_bottom_footer li div {
|
||||
display: inline-block;
|
||||
}
|
||||
table.private_login_table {
|
||||
width: 100%;
|
||||
}
|
||||
/*------- New Modern Theme Styles --------*/
|
||||
body.private_modern_theme #wrapper {
|
||||
padding-top: 0px !important;
|
||||
border-radius: 2px;
|
||||
}
|
||||
body.private_modern_theme .container {
|
||||
padding: 15px !important;
|
||||
border-radius: 2px;
|
||||
}
|
||||
body.private_modern_theme #logo_basic {
|
||||
padding: 15px 0 !important;
|
||||
text-align: center;
|
||||
background: rgba(239, 239, 239, 0.4);
|
||||
margin: -15px -15px 0 !important;
|
||||
display: block;
|
||||
}
|
||||
body.private_modern_theme #logo_basic img {
|
||||
max-width: 100%;
|
||||
}
|
||||
body.private_modern_theme h2.private-subheading {
|
||||
margin-left: 0px !important;
|
||||
margin-right: 0px !important;
|
||||
padding-top: 5px !important;
|
||||
font-weight: bold !important;
|
||||
color: #414141 !important;
|
||||
font-size: 19px !important;
|
||||
}
|
||||
body.private_modern_theme .private_login_table {
|
||||
width: 100%;
|
||||
}
|
||||
body.private_modern_theme
|
||||
.private_login_table
|
||||
tr.pshop_fields_row
|
||||
td:first-child {
|
||||
display: none;
|
||||
}
|
||||
body.private_modern_theme input.form-control {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
padding: 3%;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
margin: 3px 0 !important;
|
||||
border: 3px solid #efefef !important;
|
||||
}
|
||||
body.private_modern_theme .alert.alert-danger {
|
||||
background: rgba(243, 81, 92, 0.7) !important;
|
||||
border: 0px !important;
|
||||
border-radius: 4px;
|
||||
}
|
||||
body.private_modern_theme .alert.alert-danger ol {
|
||||
padding-left: 3px !important;
|
||||
}
|
||||
body.private_modern_theme .alert.alert-danger {
|
||||
background: rgba(243, 81, 92, 0.7) !important;
|
||||
border: 0px !important;
|
||||
border-radius: 4px;
|
||||
}
|
||||
body.private_modern_theme .pshop_title_shop {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
body.private_modern_theme ul#pshop_bottom_footer {
|
||||
padding: 5px 0 0;
|
||||
}
|
||||
body.private_modern_theme ul#pshop_bottom_footer li.submit {
|
||||
float: right;
|
||||
}
|
||||
body.private_modern_theme ul#pshop_bottom_footer .lost_password {
|
||||
font-size: 13px !important;
|
||||
font-style: italic;
|
||||
margin: 8px 0 !important;
|
||||
}
|
||||
body.private_modern_theme ul#pshop_bottom_footer .lost_password a {
|
||||
text-decoration: none;
|
||||
background: rgba(239, 239, 239, 0.4);
|
||||
padding: 1px 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
body.private_modern_theme ul#pshop_bottom_footer .lost_password a:hover {
|
||||
color: #d35780;
|
||||
background: rgba(239, 239, 239, 0.8);
|
||||
}
|
||||
body.private_modern_theme .btn {
|
||||
border-radius: 3px;
|
||||
background: #00aff0 !important;
|
||||
text-transform: uppercase;
|
||||
border: 0px !important;
|
||||
color: #fff !important;
|
||||
box-shadow: 0 1px #009bd3 inset, 1px 0 #009bd3 inset, -1px 0 #009bd3 inset,
|
||||
0 -1px #009bd3 inset, 0 2px #009bd3, 0 3px #009bd3,
|
||||
0 4px 2px rgba(0, 0, 0, 0);
|
||||
font-weight: 700;
|
||||
}
|
||||
body.private_modern_theme .btn:hover {
|
||||
background: #009bd3 !important;
|
||||
}
|
||||
body.private_modern_theme form#form_forgotpassword label {
|
||||
display: none;
|
||||
}
|
||||
body.private_modern_theme form#customer-form .form-control-label,
|
||||
body.private_modern_theme form#customer-form .form-control-comment {
|
||||
display: none;
|
||||
}
|
||||
body.private_modern_theme form#customer-form .social_title label {
|
||||
display: inline !important;
|
||||
}
|
||||
body.private_modern_theme form#customer-form .row {
|
||||
margin-left: 0px !important;
|
||||
margin-right: 0px !important;
|
||||
}
|
||||
body.private_modern_theme form#customer-form .col-md-6 {
|
||||
width: 100% !important;
|
||||
padding: 0px !important;
|
||||
}
|
||||
body.private_modern_theme form#customer-form .pshop_show_hide button {
|
||||
padding: 1.1rem 1rem !important;
|
||||
}
|
||||
body.private_modern_theme form#customer-form .social_title .col-md-6 {
|
||||
width: 75% !important;
|
||||
padding-top: 0.625rem !important;
|
||||
}
|
||||
/*---------------------------------------*/
|
||||
/*---------PS-1.6 and below Fixes----------*/
|
||||
.privateshop_ps_lower .box {
|
||||
background: transparent !important;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower .box {
|
||||
padding: 0px !important;
|
||||
border: 0px !important;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower .pshop_fields_row_hide {
|
||||
display: none;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower input.form-control {
|
||||
height: auto !important;
|
||||
color: #7a7a7a !important;
|
||||
border-radius: 2px !important;
|
||||
font-size: 14px !important;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower input.form-control:focus {
|
||||
outline: 4px solid #2fb5d2;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower .btn span {
|
||||
border: 0px !important;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower .alert.alert-danger ol {
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower .alert.alert-danger ol li {
|
||||
list-style: none !important;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower .form-error input.form-control,
|
||||
body.private_modern_theme .privateshop_ps_lower .form-ok input.form-control {
|
||||
background-position: right center !important;
|
||||
}
|
||||
/*body.private_modern_theme .privateshop_ps_lower .account_creation .form-group label { display: none}*/
|
||||
/*------------------------*/
|
||||
@media (min-width: 500px) and (max-width: 768px) {
|
||||
#wrapper {
|
||||
width: 75% !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 200px) and (max-width: 499px) {
|
||||
#wrapper {
|
||||
width: 90% !important;
|
||||
}
|
||||
body.private_modern_theme
|
||||
form#customer-form
|
||||
.social_title
|
||||
label.form-control-label {
|
||||
display: none !important;
|
||||
}
|
||||
body.private_modern_theme .privateshop_ps_lower .btn,
|
||||
body.private_modern_theme .privateshop_ps_lower .btn span {
|
||||
font-size: 13px !important;
|
||||
}
|
||||
body.private_modern_theme
|
||||
.privateshop_ps_lower
|
||||
#new-private-account
|
||||
.pull-right {
|
||||
clear: both;
|
||||
float: left !important;
|
||||
margin-top: 5%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 200px) and (max-width: 400px) {
|
||||
body.private_modern_theme form#customer-form .pshop_show_hide button {
|
||||
padding-top: 0.7rem !important;
|
||||
padding-bottom: 0.7rem !important;
|
||||
}
|
||||
body.private_modern_theme
|
||||
form#customer-form
|
||||
.social_title
|
||||
.form-control-valign {
|
||||
width: 100% !important;
|
||||
}
|
||||
#private-lost-password h1 {
|
||||
margin-bottom: 10px !important;
|
||||
}
|
||||
}
|
||||
373
modules/privateshoplite/views/css/private_block.css
Normal file
373
modules/privateshoplite/views/css/private_block.css
Normal file
@@ -0,0 +1,373 @@
|
||||
/*
|
||||
* PrivateShop
|
||||
*
|
||||
* Do not edit or add to this file.
|
||||
* You are not authorized to modify, copy or redistribute this file.
|
||||
* Permissions are reserved by FME Modules.
|
||||
*
|
||||
* @author FME Modules
|
||||
* @copyright 2021 FME Modules All right reserved
|
||||
* @license Copyrights FME Modules
|
||||
* @category FMM Modules
|
||||
* @package PrivateShop
|
||||
*/
|
||||
|
||||
#privatebox {
|
||||
border: medium none;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
/*overflow: auto;*/
|
||||
padding: 10px;
|
||||
/*width: 45%;*/
|
||||
}
|
||||
#private-wrapper.private_wrapper {
|
||||
height: 65%;
|
||||
margin-left: 1%;
|
||||
overflow: auto;
|
||||
width: 44%;
|
||||
border-bottom: 1px solid #999;
|
||||
border-top: 1px solid #999;
|
||||
}
|
||||
#private-wrapper {
|
||||
width: 40%;
|
||||
margin-top: 15% !important;
|
||||
margin-bottom: 5% !important;
|
||||
background: #f1f1f1 none repeat scroll 0 0;
|
||||
}
|
||||
|
||||
#privatebox .private_login {
|
||||
/*border-top: 1px solid #e1e1e1;*/
|
||||
padding: 10px;
|
||||
}
|
||||
.radio-inline,
|
||||
.checkbox {
|
||||
padding-left: 5% !important;
|
||||
}
|
||||
#privatebox .private-subheading {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
color: #d35780;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
line-height: normal;
|
||||
margin-bottom: 12px;
|
||||
padding: 0 0 15px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/*~~~~~~~~~~ PS 1.7 Styles ~~~~~~~~~~*/
|
||||
#fmm_ps17 h1 {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#fmm_ps17 #ps17_errors {
|
||||
background: #f3515c;
|
||||
color: #fff;
|
||||
padding: 1%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#fmm_ps17 #ps17_errors ol {
|
||||
list-style: none;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
}
|
||||
/*
|
||||
#fmm_ps17 label {color: #333; font-weight: bold; font-size: 12px}
|
||||
|
||||
#fmm_ps17 #login_form { background: #fbfbfb; border: 1px solid #d6d4d4; padding: 14px 18px 13px}
|
||||
|
||||
#fmm_ps17 .form-control {box-shadow: none; height: 27px; padding: 3px 5px;border: 1px solid #d6d4d4; border-radius: 0;
|
||||
color: #9c9b9b; font-size: 13px; vertical-align: middle}*/
|
||||
|
||||
/*--------- END PS 1.7 -----------*/
|
||||
|
||||
@media only screen and (max-width: 360px) {
|
||||
#privatebox .container {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
#privatebox .container p img {
|
||||
width: 80%;
|
||||
}
|
||||
#privatebox .container h1 {
|
||||
margin-bottom: -10px;
|
||||
margin-top: 0;
|
||||
font-size: 25px;
|
||||
}
|
||||
#privatebox #noSlide .page-heading {
|
||||
font-size: 15px;
|
||||
}
|
||||
#private-lost-password h1.page-subheading {
|
||||
font-size: 16px;
|
||||
}
|
||||
#privatebox .private-subheading {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
color: #d35780;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
line-height: normal;
|
||||
margin-bottom: 5px;
|
||||
padding: 0 0 10px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
#register span {
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
#SubmitLogin span,
|
||||
#SubmitCreate span,
|
||||
#privatebox #noSlide #account-creation_form .page-subheading {
|
||||
font-size: 12px;
|
||||
}
|
||||
#SubmitLogin span i,
|
||||
#SubmitCreate span i,
|
||||
.exttra_row {
|
||||
display: none;
|
||||
}
|
||||
td span.label-default {
|
||||
background-color: #999999;
|
||||
margin-top: -15px;
|
||||
}
|
||||
.private_error_resp {
|
||||
margin-bottom: 5px !important;
|
||||
margin-top: -17px !important;
|
||||
}
|
||||
#login_form {
|
||||
min-height: 240px;
|
||||
}
|
||||
#create-account_form {
|
||||
min-height: 275px;
|
||||
}
|
||||
.private_signup_table {
|
||||
margin-top: -40px;
|
||||
}
|
||||
}
|
||||
#module-privateshoplite-private .breadcrumb {
|
||||
display: none !important;
|
||||
}
|
||||
#fmm_ps16 table.private_login_table td,
|
||||
#fmm_ps16 table.private_login_table th {
|
||||
padding: 0px !important;
|
||||
}
|
||||
#fmm_ps16 #new-private-account .form-control,
|
||||
#fmm_ps16 #private-login .form-control {
|
||||
height: 40px !important;
|
||||
}
|
||||
#logo_basic {
|
||||
text-align: center;
|
||||
}
|
||||
ul#pshop_bottom_footer {
|
||||
margin: 0px;
|
||||
}
|
||||
ul#pshop_bottom_footer li,
|
||||
ul#pshop_bottom_footer li div {
|
||||
display: inline-block;
|
||||
}
|
||||
table.private_login_table {
|
||||
width: 100%;
|
||||
}
|
||||
/*------- New Modern Theme Styles --------*/
|
||||
div.private_modern_theme #private-wrapper {
|
||||
padding-top: 0px !important;
|
||||
border-radius: 2px;
|
||||
}
|
||||
div.private_modern_theme .container {
|
||||
padding: 15px !important;
|
||||
border-radius: 2px;
|
||||
}
|
||||
div.private_modern_theme #logo_basic {
|
||||
padding: 15px 0 !important;
|
||||
text-align: center;
|
||||
background: rgba(239, 239, 239, 0.4);
|
||||
margin: -15px -15px 0 !important;
|
||||
display: block;
|
||||
}
|
||||
div.private_modern_theme #logo_basic img {
|
||||
max-width: 100%;
|
||||
}
|
||||
div.private_modern_theme h2.private-subheading {
|
||||
margin-left: 0px !important;
|
||||
margin-right: 0px !important;
|
||||
padding-top: 5px !important;
|
||||
font-weight: bold !important;
|
||||
color: #414141 !important;
|
||||
font-size: 19px !important;
|
||||
}
|
||||
div.private_modern_theme .private_login_table {
|
||||
width: 100%;
|
||||
}
|
||||
div.private_modern_theme
|
||||
.private_login_table
|
||||
tr.pshop_fields_row
|
||||
td:first-child {
|
||||
display: none;
|
||||
}
|
||||
#fmm_ps17 div.private_modern_theme input.form-control {
|
||||
width: 100% !important;
|
||||
max-width: 100% !important;
|
||||
padding: 3%;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
margin: 3px 0 !important;
|
||||
border: 3px solid #efefef !important;
|
||||
}
|
||||
div.private_modern_theme .alert.alert-danger {
|
||||
background: rgba(243, 81, 92, 0.7) !important;
|
||||
border: 0px !important;
|
||||
border-radius: 4px;
|
||||
}
|
||||
div.private_modern_theme .alert.alert-danger ol {
|
||||
padding-left: 3px !important;
|
||||
}
|
||||
div.private_modern_theme .alert.alert-danger {
|
||||
background: rgba(243, 81, 92, 0.7) !important;
|
||||
border: 0px !important;
|
||||
border-radius: 4px;
|
||||
}
|
||||
div.private_modern_theme .pshop_title_shop {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
div.private_modern_theme ul#pshop_bottom_footer {
|
||||
padding: 5px 0 0;
|
||||
}
|
||||
div.private_modern_theme ul#pshop_bottom_footer li.submit {
|
||||
float: right;
|
||||
}
|
||||
div.private_modern_theme ul#pshop_bottom_footer .lost_password {
|
||||
font-size: 13px !important;
|
||||
font-style: italic;
|
||||
margin: 8px 0 !important;
|
||||
}
|
||||
div.private_modern_theme ul#pshop_bottom_footer .lost_password a {
|
||||
text-decoration: none;
|
||||
background: rgba(239, 239, 239, 0.4);
|
||||
padding: 1px 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
div.private_modern_theme ul#pshop_bottom_footer .lost_password a:hover {
|
||||
color: #d35780;
|
||||
background: rgba(239, 239, 239, 0.8);
|
||||
}
|
||||
div.private_modern_theme .btn {
|
||||
border-radius: 3px;
|
||||
background: #00aff0 !important;
|
||||
text-transform: uppercase;
|
||||
border: 0px !important;
|
||||
color: #fff !important;
|
||||
box-shadow: 0 1px #009bd3 inset, 1px 0 #009bd3 inset, -1px 0 #009bd3 inset,
|
||||
0 -1px #009bd3 inset, 0 2px #009bd3, 0 3px #009bd3,
|
||||
0 4px 2px rgba(0, 0, 0, 0);
|
||||
font-weight: 700;
|
||||
}
|
||||
div.private_modern_theme .btn:hover {
|
||||
background: #009bd3 !important;
|
||||
}
|
||||
div.private_modern_theme form#form_forgotpassword label {
|
||||
display: none;
|
||||
}
|
||||
div.private_modern_theme form#customer-form .form-control-label,
|
||||
div.private_modern_theme form#customer-form .form-control-comment {
|
||||
display: none;
|
||||
}
|
||||
div.private_modern_theme form#customer-form .social_title label {
|
||||
display: inline !important;
|
||||
}
|
||||
div.private_modern_theme form#customer-form .row {
|
||||
margin-left: 0px !important;
|
||||
margin-right: 0px !important;
|
||||
}
|
||||
div.private_modern_theme form#customer-form .col-md-6 {
|
||||
width: 100% !important;
|
||||
padding: 0px !important;
|
||||
}
|
||||
div.private_modern_theme form#customer-form .pshop_show_hide button {
|
||||
padding: 1.1rem 1rem !important;
|
||||
}
|
||||
div.private_modern_theme form#customer-form .social_title .col-md-6 {
|
||||
width: 75% !important;
|
||||
padding-top: 0.625rem !important;
|
||||
}
|
||||
/*---------------------------------------*/
|
||||
/*---------PS-1.6 and below Fixes----------*/
|
||||
.privateshop_ps_lower .box {
|
||||
background: transparent !important;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower .box {
|
||||
padding: 0px !important;
|
||||
border: 0px !important;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower .pshop_fields_row_hide {
|
||||
display: none;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower input.form-control {
|
||||
height: auto !important;
|
||||
color: #7a7a7a !important;
|
||||
border-radius: 2px !important;
|
||||
font-size: 14px !important;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower input.form-control:focus {
|
||||
outline: 4px solid #2fb5d2;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower .btn span {
|
||||
border: 0px !important;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower .alert.alert-danger ol {
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower .alert.alert-danger ol li {
|
||||
list-style: none !important;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower .form-error input.form-control,
|
||||
div.private_modern_theme .privateshop_ps_lower .form-ok input.form-control {
|
||||
background-position: right center !important;
|
||||
}
|
||||
/*div.private_modern_theme .privateshop_ps_lower .account_creation .form-group label { display: none}*/
|
||||
/*------------------------*/
|
||||
@media (min-width: 500px) and (max-width: 768px) {
|
||||
#private-wrapper {
|
||||
width: 75% !important;
|
||||
}
|
||||
}
|
||||
@media (min-width: 200px) and (max-width: 499px) {
|
||||
#private-wrapper {
|
||||
width: 90% !important;
|
||||
}
|
||||
div.private_modern_theme
|
||||
form#customer-form
|
||||
.social_title
|
||||
label.form-control-label {
|
||||
display: none !important;
|
||||
}
|
||||
div.private_modern_theme .privateshop_ps_lower .btn,
|
||||
div.private_modern_theme .privateshop_ps_lower .btn span {
|
||||
font-size: 13px !important;
|
||||
}
|
||||
div.private_modern_theme
|
||||
.privateshop_ps_lower
|
||||
#new-private-account
|
||||
.pull-right {
|
||||
clear: both;
|
||||
float: left !important;
|
||||
margin-top: 5%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 200px) and (max-width: 400px) {
|
||||
div.private_modern_theme form#customer-form .pshop_show_hide button {
|
||||
padding-top: 0.7rem !important;
|
||||
padding-bottom: 0.7rem !important;
|
||||
}
|
||||
div.private_modern_theme
|
||||
form#customer-form
|
||||
.social_title
|
||||
.form-control-valign {
|
||||
width: 100% !important;
|
||||
}
|
||||
#private-lost-password h1 {
|
||||
margin-bottom: 10px !important;
|
||||
}
|
||||
}
|
||||
136
modules/privateshoplite/views/css/privateshopfields.css
Normal file
136
modules/privateshoplite/views/css/privateshopfields.css
Normal file
@@ -0,0 +1,136 @@
|
||||
/*
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* You are not authorized to modify, copy or redistribute this file.
|
||||
* Permissions are reserved by FMM Modules.
|
||||
*
|
||||
* @author FMM Modules
|
||||
* @copyright 2021 FMM Module All right reserved
|
||||
* @license FMM Modules
|
||||
*/
|
||||
|
||||
.image_container {
|
||||
border: 1px solid #d4d4d4;
|
||||
cursor: pointer;
|
||||
max-width: 100%;
|
||||
}
|
||||
.image_input, .extension_error, .image_container + .uploader {
|
||||
display: none;
|
||||
}
|
||||
.extension_error {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.type_multiboxes {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* radio and checkboxes */
|
||||
|
||||
#registration_fields input[type="checkbox"]:not(old),
|
||||
#registration_fields input[type="radio"]:not(old) {
|
||||
width: 2em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
#registration_fields input[type="checkbox"]:not(old) + label,
|
||||
#registration_fields input[type="radio"]:not(old) + label {
|
||||
display: inline-block;
|
||||
margin-left: 0em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
#registration_fields input[type="checkbox"]:not(old) + label > span {
|
||||
border-radius: 0.25em;
|
||||
}
|
||||
#registration_fields input[type="radio"]:not(old) + label > span {
|
||||
border-radius: 1.25em;
|
||||
}
|
||||
#registration_fields input[type="checkbox"]:not(old) + label > span,
|
||||
#registration_fields input[type="radio"]:not(old) + label > span {
|
||||
display: inline-block;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
margin: 0.25em 0.5em 0.25em 0.25em;
|
||||
border: 0.0625em solid rgb(192, 192, 192);
|
||||
/* border-radius: 0.25em; */
|
||||
background: rgb(224, 224, 224);
|
||||
background-image: -moz-linear-gradient(
|
||||
rgb(240, 240, 240),
|
||||
rgb(224, 224, 224)
|
||||
);
|
||||
background-image: -ms-linear-gradient(rgb(240, 240, 240), rgb(224, 224, 224));
|
||||
background-image: -o-linear-gradient(rgb(240, 240, 240), rgb(224, 224, 224));
|
||||
background-image: -webkit-linear-gradient(
|
||||
rgb(240, 240, 240),
|
||||
rgb(224, 224, 224)
|
||||
);
|
||||
background-image: linear-gradient(rgb(240, 240, 240), rgb(224, 224, 224));
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
#registration_fields
|
||||
input[type="checkbox"]:not(old):checked
|
||||
+ label
|
||||
> span,
|
||||
#registration_fields input[type="radio"]:not(old):checked + label > span {
|
||||
background-image: -moz-linear-gradient(
|
||||
rgb(224, 224, 224),
|
||||
rgb(240, 240, 240)
|
||||
);
|
||||
background-image: -ms-linear-gradient(rgb(224, 224, 224), rgb(240, 240, 240));
|
||||
background-image: -o-linear-gradient(rgb(224, 224, 224), rgb(240, 240, 240));
|
||||
background-image: -webkit-linear-gradient(
|
||||
rgb(224, 224, 224),
|
||||
rgb(240, 240, 240)
|
||||
);
|
||||
background-image: linear-gradient(rgb(224, 224, 224), rgb(240, 240, 240));
|
||||
}
|
||||
|
||||
#registration_fields
|
||||
input[type="checkbox"]:checked:not(old)
|
||||
+ label
|
||||
> span::before {
|
||||
content: "✔";
|
||||
display: block;
|
||||
width: 1em;
|
||||
color: rgb(115, 153, 77);
|
||||
font-size: 15px;
|
||||
line-height: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#registration_fields
|
||||
input[type="radio"]:checked:not(old)
|
||||
+ label
|
||||
> span
|
||||
> span {
|
||||
display: block;
|
||||
width: 0.9em;
|
||||
height: 0.9em;
|
||||
border: 0.0625em solid rgb(115, 153, 77);
|
||||
border-radius: 1.125em;
|
||||
background: rgb(153, 204, 102);
|
||||
background-image: -moz-linear-gradient(
|
||||
rgb(179, 217, 140),
|
||||
rgb(153, 204, 102)
|
||||
);
|
||||
background-image: -ms-linear-gradient(rgb(179, 217, 140), rgb(153, 204, 102));
|
||||
background-image: -o-linear-gradient(rgb(179, 217, 140), rgb(153, 204, 102));
|
||||
background-image: -webkit-linear-gradient(
|
||||
rgb(179, 217, 140),
|
||||
rgb(153, 204, 102)
|
||||
);
|
||||
background-image: linear-gradient(rgb(179, 217, 140), rgb(153, 204, 102));
|
||||
}
|
||||
#registration_fields .rf_no_display {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cf_disabled_btn {
|
||||
opacity: .65;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
Reference in New Issue
Block a user