update 05.11.13
This commit is contained in:
@@ -99,7 +99,7 @@ $(function(){ldelim}
|
||||
{if $field_name eq 'company'}
|
||||
<div class="form-group">
|
||||
<label for="company">{l s='Company'}</label>
|
||||
<input class="form-control" type="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{else}{if isset($address->company)}{$address->company|escape:'html'}{/if}{/if}" onkeyup="if($(this).val().length) { if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');}" />
|
||||
<input class="form-control" type="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{else}{if isset($address->company)}{$address->company|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{/if}
|
||||
{if $field_name eq 'vat_number'}
|
||||
@@ -107,46 +107,48 @@ $(function(){ldelim}
|
||||
<div id="vat_number">
|
||||
<div class="form-group">
|
||||
<label for="vat_number">{l s='VAT number'}</label>
|
||||
<input type="text" class="form-control" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{else}{if isset($address->vat_number)}{$address->vat_number|escape:'html'}{/if}{/if}" onkeyup="if($(this).val().length) { if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok'); }" />
|
||||
<input type="text" class="form-control" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{else}{if isset($address->vat_number)}{$address->vat_number|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{if $field_name eq 'firstname'}
|
||||
<div class="required form-group">
|
||||
|
||||
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" name="firstname" id="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{else}{if isset($address->firstname)}{$address->firstname|escape:'html'}{/if}{/if}" />
|
||||
</div>
|
||||
<input class="form-control" type="text" name="firstname" id="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{else}{if isset($address->firstname)}{$address->firstname|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
|
||||
{/if}
|
||||
{if $field_name eq 'lastname'}
|
||||
<div class="required form-group">
|
||||
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{else}{if isset($address->lastname)}{$address->lastname|escape:'html'}{/if}{/if}" />
|
||||
<input class="form-control" type="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{else}{if isset($address->lastname)}{$address->lastname|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{/if}
|
||||
{if $field_name eq 'address1'}
|
||||
<div class="required form-group">
|
||||
<label for="address1">{l s='Address'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="address1" name="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{else}{if isset($address->address1)}{$address->address1|escape:'html'}{/if}{/if}" />
|
||||
<input class="form-control" type="text" id="address1" name="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{else}{if isset($address->address1)}{$address->address1|escape:'html'}{/if}{/if}"onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{/if}
|
||||
{if $field_name eq 'address2'}
|
||||
<div class="required form-group">
|
||||
<label for="address2">{l s='Address (Line 2)'}</label>
|
||||
<input class="validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="address2" name="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{else}{if isset($address->address2)}{$address->address2|escape:'html'}{/if}{/if}" />
|
||||
<input class="form-control" type="text" id="address2" name="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{else}{if isset($address->address2)}{$address->address2|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{/if}
|
||||
{if $field_name eq 'postcode'}
|
||||
{assign var="postCodeExist" value="true"}
|
||||
<div class="required postcode form-group">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html'}{/if}{/if}" />
|
||||
<input class="form-control" type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{/if}
|
||||
{if $field_name eq 'city'}
|
||||
<div class="required form-group">
|
||||
<label for="city">{l s='City'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{else}{if isset($address->city)}{$address->city|escape:'html'}{/if}{/if}" maxlength="64" />
|
||||
<input class="form-control" type="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{else}{if isset($address->city)}{$address->city|escape:'html'}{/if}{/if}" maxlength="64" onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{*
|
||||
if customer hasn't update his layout address, country has to be verified
|
||||
@@ -198,7 +200,8 @@ $(function(){ldelim}
|
||||
{if $postCodeExist eq "false"}
|
||||
<div class="required postcode form-group unvisible">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="{$address_validation.$field_name.validate}" type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html'}{/if}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
<input class="form-control" type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html'}{/if}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());"
|
||||
onkeyup="if (validate_{$address_validation.$field_name.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{/if}
|
||||
{if $stateExist eq "false"}
|
||||
@@ -211,11 +214,12 @@ $(function(){ldelim}
|
||||
{/if}
|
||||
<div class="form-group">
|
||||
<label for="other">{l s='Additional information'}</label>
|
||||
<textarea class="validate form-control" data-validate="{$address_validation.other.validate}" id="other" name="other" cols="26" rows="3" >{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
|
||||
<textarea class="form-control" id="other" name="other" cols="26" rows="3" onkeyup="if (validate_{$address_validation.other.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');
|
||||
">{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
|
||||
</div>
|
||||
<div class="form-group phone-number">
|
||||
<label for="phone">{l s='Home phone'}</label>
|
||||
<input class="{if isset($one_phone_at_least) && $one_phone_at_least}is_required{/if} validate form-control" data-validate="{$address_validation.phone.validate}" type="tel" id="phone" name="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{else}{if isset($address->phone)}{$address->phone|escape:'html'}{/if}{/if}" />
|
||||
<input type="tel" id="phone" class="form-control" name="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{else}{if isset($address->phone)}{$address->phone|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.phone.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{if isset($one_phone_at_least) && $one_phone_at_least}
|
||||
<p class="inline-infos required">{l s='You must register at least one phone number.'}</p>
|
||||
@@ -223,11 +227,11 @@ $(function(){ldelim}
|
||||
<div class="clearfix"></div>
|
||||
<div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group">
|
||||
<label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
|
||||
<input class="validate form-control" data-validate="{$address_validation.phone_mobile.validate}" type="tel" id="phone_mobile" name="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{else}{if isset($address->phone_mobile)}{$address->phone_mobile|escape:'html'}{/if}{/if}" />
|
||||
<input type="tel" id="phone_mobile" class="form-control" name="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{else}{if isset($address->phone_mobile)}{$address->phone_mobile|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.phone_mobile.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
<div class="required form-group" id="adress_alias">
|
||||
<label for="alias">{l s='Please assign an address title for future reference.'} <sup>*</sup></label>
|
||||
<input type="text" id="alias" class="is_required validate form-control" data-validate="{$address_validation.alias.validate}" name="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else if isset($address->alias)}{$address->alias|escape:'html'}{elseif !$select_address}{l s='My address'}{/if}" />
|
||||
<input type="text" id="alias" class="form-control" name="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else if isset($address->alias)}{$address->alias|escape:'html'}{elseif !$select_address}{l s='My address'}{/if}" onkeyup="if (validate_{$address_validation.alias.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
</fieldset>
|
||||
<p class="submit2">
|
||||
|
||||
@@ -166,7 +166,7 @@ $(document).ready(function() {
|
||||
<div class="alert alert-danger" id="create_account_error" style="display:none"></div>
|
||||
<div class="form-group">
|
||||
<label for="email_create">{l s='Email address'}</label>
|
||||
<input type="text" class="is_required validate account_input form-control" data-validate="isEmail" id="email_create" name="email_create" value="{if isset($smarty.post.email_create)}{$smarty.post.email_create|stripslashes}{/if}" />
|
||||
<input type="text" id="email_create" name="email_create" value="{if isset($smarty.post.email_create)}{$smarty.post.email_create|stripslashes}{/if}" class="account_input form-control" />
|
||||
</div>
|
||||
<div class="submit">
|
||||
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
|
||||
@@ -184,11 +184,11 @@ $(document).ready(function() {
|
||||
<div class="form_content clearfix">
|
||||
<div class="form-group">
|
||||
<label for="email">{l s='Email address'}</label>
|
||||
<input class="is_required validate account_input form-control" data-validate="isEmail" type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes}{/if}" />
|
||||
<input type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes}{/if}" class="account_input form-control" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="passwd">{l s='Password'}</label>
|
||||
<span><input class="is_required validate account_input form-control" type="password" data-validate="isPasswd" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes}{/if}" /></span>
|
||||
<span><input type="password" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes}{/if}" class="account_input form-control" /></span>
|
||||
</div>
|
||||
<p class="lost_password form-group"><a href="{$link->getPageLink('password')|escape:'html'}" title="{l s='Recover your forgotten password'}" rel="nofollow">{l s='Forgot your password?'}</a></p>
|
||||
<p class="submit">
|
||||
@@ -209,11 +209,10 @@ $(document).ready(function() {
|
||||
<!-- Account -->
|
||||
<div class="required form-group">
|
||||
<label for="guest_email">{l s='Email address'} <sup>*</sup></label>
|
||||
<input type="text" class="is_required validate form-control" data-validate="isEmail" id="guest_email" name="guest_email" value="{if isset($smarty.post.guest_email)}{$smarty.post.guest_email}{/if}" />
|
||||
<input type="text" class="form-control" id="guest_email" name="guest_email" value="{if isset($smarty.post.guest_email)}{$smarty.post.guest_email}{/if}" />
|
||||
</div>
|
||||
<div class="cleafix">
|
||||
<div class="cleafix gender-line">
|
||||
<label>{l s='Title'}</label>
|
||||
<br />
|
||||
{foreach from=$genders key=k item=gender}
|
||||
<div class="radio-inline">
|
||||
<label for="id_gender{$gender->id}" class="top">
|
||||
@@ -224,12 +223,12 @@ $(document).ready(function() {
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input type="text" class="is_required validate text form-control" data-validate="isName" id="firstname" name="firstname" onblur="$('#customer_firstname').val($(this).val());" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
||||
<input type="text" class="text form-control" id="firstname" name="firstname" onblur="$('#customer_firstname').val($(this).val());" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
||||
<input type="hidden" class="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input type="text" class="is_required validate text form-control" data-validate="isName" id="lastname" name="lastname" onblur="$('#customer_lastname').val($(this).val());" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
||||
<input type="text" class="text form-control" id="lastname" name="lastname" onblur="$('#customer_lastname').val($(this).val());" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
||||
<input type="hidden" class="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
||||
</div>
|
||||
<div class="form-group date-select">
|
||||
@@ -412,19 +411,19 @@ $(document).ready(function() {
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="customer_firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input onkeyup="$('#firstname').val(this.value);" type="text" class="is_required validate form-control" data-validate="isName" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.customer_firstname)}{$smarty.post.customer_firstname}{/if}" />
|
||||
<input onkeyup="$('#firstname').val(this.value);" type="text" class="form-control" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.customer_firstname)}{$smarty.post.customer_firstname}{/if}" />
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="customer_lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input onkeyup="$('#lastname').val(this.value);" type="text" class="is_required validate form-control" data-validate="isName" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.customer_lastname)}{$smarty.post.customer_lastname}{/if}" />
|
||||
<input onkeyup="$('#lastname').val(this.value);" type="text" class="form-control" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.customer_lastname)}{$smarty.post.customer_lastname}{/if}" />
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="email">{l s='Email'} <sup>*</sup></label>
|
||||
<input type="text" class="is_required validate form-control" data-validate="isEmail" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email}{/if}" />
|
||||
<input type="text" class="form-control" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email}{/if}" />
|
||||
</div>
|
||||
<div class="required password form-group">
|
||||
<label for="passwd">{l s='Password'} <sup>*</sup></label>
|
||||
<input type="password" class="is_required validate form-control" data-validate="isPasswd" name="passwd" id="passwd" />
|
||||
<input type="password" class="form-control" name="passwd" id="passwd" />
|
||||
<span class="form_info">{l s='(Five characters minimum)'}</span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
||||
@@ -2,20 +2,25 @@
|
||||
/*******************************************************
|
||||
Addresses Styles
|
||||
********************************************************/
|
||||
/* line 9, ../sass/addresses.scss */
|
||||
#addresses #center_column .page-heading {
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
/* line 13, ../sass/addresses.scss */
|
||||
#addresses #center_column p {
|
||||
margin-bottom: 13px;
|
||||
}
|
||||
/* line 16, ../sass/addresses.scss */
|
||||
#addresses #center_column p.p-indent {
|
||||
margin-bottom: 27px;
|
||||
}
|
||||
|
||||
/* line 23, ../sass/addresses.scss */
|
||||
.address li.address_update {
|
||||
margin-top: 14px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
/* line 27, ../sass/addresses.scss */
|
||||
.address li.address_update a {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
@@ -2,36 +2,46 @@
|
||||
/**********************************************************
|
||||
Authentication Styles
|
||||
**********************************************************/
|
||||
/* line 5, ../sass/authentication.scss */
|
||||
#account-creation_form .id_state, #account-creation_form .dni, #account-creation_form .postcode {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* line 9, ../sass/authentication.scss */
|
||||
#create-account_form {
|
||||
min-height: 297px;
|
||||
}
|
||||
/* line 12, ../sass/authentication.scss */
|
||||
#create-account_form p {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
/* line 16, ../sass/authentication.scss */
|
||||
#create-account_form .form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* line 21, ../sass/authentication.scss */
|
||||
#login_form {
|
||||
min-height: 297px;
|
||||
}
|
||||
/* line 24, ../sass/authentication.scss */
|
||||
#login_form .form-group {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
/* line 27, ../sass/authentication.scss */
|
||||
#login_form .form-group.lost_password {
|
||||
margin: 14px 0 15px 0;
|
||||
}
|
||||
/* line 30, ../sass/authentication.scss */
|
||||
#login_form .form-group.lost_password a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
/* line 33, ../sass/authentication.scss */
|
||||
#login_form .form-group.lost_password a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* line 42, ../sass/authentication.scss */
|
||||
#login_form .form-control, #create-account_form .form-control {
|
||||
max-width: 271px;
|
||||
}
|
||||
|
||||
+1362
-113
File diff suppressed because it is too large
Load Diff
@@ -2,50 +2,62 @@
|
||||
/* ************************************************************************************************
|
||||
Categories Page Styles
|
||||
************************************************************************************************ */
|
||||
/* line 5, ../sass/category.scss */
|
||||
.content_scene_cat {
|
||||
border-top: 5px solid #333333;
|
||||
color: #d7d7d7;
|
||||
line-height: 19px;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
/* line 11, ../sass/category.scss */
|
||||
.content_scene_cat .content_scene_cat_bg {
|
||||
padding: 18px 10px 10px 42px;
|
||||
background-color: #464646 !important;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
/* line 11, ../sass/category.scss */
|
||||
.content_scene_cat .content_scene_cat_bg {
|
||||
padding: 10px 10px 10px 15px;
|
||||
}
|
||||
}
|
||||
/* line 19, ../sass/category.scss */
|
||||
.content_scene_cat h1.category-name {
|
||||
font: 600 42px/51px "Open Sans", sans-serif;
|
||||
color: #fff;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
/* line 19, ../sass/category.scss */
|
||||
.content_scene_cat h1.category-name {
|
||||
font-size: 25px;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
/* line 29, ../sass/category.scss */
|
||||
.content_scene_cat p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* line 31, ../sass/category.scss */
|
||||
.content_scene_cat a {
|
||||
color: #fff;
|
||||
}
|
||||
/* line 34, ../sass/category.scss */
|
||||
.content_scene_cat a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
/* line 37, ../sass/category.scss */
|
||||
.content_scene_cat .content_scene {
|
||||
color: #777777;
|
||||
}
|
||||
/* line 40, ../sass/category.scss */
|
||||
.content_scene_cat .content_scene .cat_desc {
|
||||
padding-top: 20px;
|
||||
}
|
||||
/* line 43, ../sass/category.scss */
|
||||
.content_scene_cat .content_scene .cat_desc a {
|
||||
color: #777777;
|
||||
}
|
||||
/* line 46, ../sass/category.scss */
|
||||
.content_scene_cat .content_scene .cat_desc a:hover {
|
||||
color: #515151;
|
||||
}
|
||||
@@ -53,18 +65,22 @@
|
||||
/* ************************************************************************************************
|
||||
Sub Categories Styles
|
||||
************************************************************************************************ */
|
||||
/* line 58, ../sass/category.scss */
|
||||
#subcategories {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
padding: 15px 0 0px 0;
|
||||
}
|
||||
/* line 62, ../sass/category.scss */
|
||||
#subcategories p.subcategory-heading {
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
/* line 68, ../sass/category.scss */
|
||||
#subcategories ul {
|
||||
margin-left: -20px;
|
||||
}
|
||||
/* line 71, ../sass/category.scss */
|
||||
#subcategories ul li {
|
||||
float: left;
|
||||
width: 128px;
|
||||
@@ -73,29 +89,36 @@
|
||||
margin-bottom: 13px;
|
||||
height: 202px;
|
||||
}
|
||||
/* line 79, ../sass/category.scss */
|
||||
#subcategories ul li .subcategory-image {
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
/* line 82, ../sass/category.scss */
|
||||
#subcategories ul li .subcategory-image a {
|
||||
display: block;
|
||||
padding: 9px;
|
||||
border: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 87, ../sass/category.scss */
|
||||
#subcategories ul li .subcategory-image a img {
|
||||
max-width: 100%;
|
||||
vertical-align: top;
|
||||
}
|
||||
/* line 94, ../sass/category.scss */
|
||||
#subcategories ul li .subcategory-name {
|
||||
font: 600 18px/22px "Open Sans", sans-serif;
|
||||
color: #555454;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
/* line 99, ../sass/category.scss */
|
||||
#subcategories ul li .subcategory-name:hover {
|
||||
color: #515151;
|
||||
}
|
||||
/* line 104, ../sass/category.scss */
|
||||
#subcategories ul li .cat_desc {
|
||||
display: none;
|
||||
}
|
||||
/* line 110, ../sass/category.scss */
|
||||
#subcategories ul li:hover .subcategory-image a {
|
||||
border: 5px solid #333333;
|
||||
padding: 5px;
|
||||
|
||||
@@ -2,47 +2,57 @@
|
||||
/**************************************************************
|
||||
CMS Pages Styles
|
||||
***************************************************************/
|
||||
/* line 11, ../sass/cms.scss */
|
||||
#cms #center_column .cms-block {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
/* line 13, ../sass/cms.scss */
|
||||
#cms #center_column h1 {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
/* line 17, ../sass/cms.scss */
|
||||
#cms #center_column h3 {
|
||||
font-size: 16px;
|
||||
border-bottom: none;
|
||||
margin: 0 0 0 0;
|
||||
padding-bottom: 17px;
|
||||
}
|
||||
/* line 24, ../sass/cms.scss */
|
||||
#cms #center_column p {
|
||||
line-height: 18px;
|
||||
}
|
||||
/* line 30, ../sass/cms.scss */
|
||||
#cms #center_column .list-1 li {
|
||||
padding: 4px 0 6px 0;
|
||||
font-weight: bold;
|
||||
color: #46a74e;
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 36, ../sass/cms.scss */
|
||||
#cms #center_column .list-1 li:first-child {
|
||||
border: none;
|
||||
}
|
||||
/* line 38, ../sass/cms.scss */
|
||||
#cms #center_column .list-1 li em {
|
||||
font-size: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 15px;
|
||||
vertical-align: -2px;
|
||||
}
|
||||
/* line 46, ../sass/cms.scss */
|
||||
#cms #center_column img {
|
||||
margin: 4px 0 17px;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
/* line 51, ../sass/cms.scss */
|
||||
#cms #center_column .testimonials {
|
||||
border: 1px solid;
|
||||
border-color: #dfdede #d2d0d0 #b0afaf #d2d0d0;
|
||||
margin: 4px 0 13px 0;
|
||||
position: relative;
|
||||
}
|
||||
/* line 57, ../sass/cms.scss */
|
||||
#cms #center_column .testimonials .inner {
|
||||
border: 1px solid #fff;
|
||||
padding: 19px 18px 11px 18px;
|
||||
@@ -54,20 +64,24 @@
|
||||
background: -ms-linear-gradient(top, #fbfbfb 0%, #fefefe 100%);
|
||||
background: linear-gradient(to bottom, #fbfbfb 0%, #fefefe 100%);
|
||||
}
|
||||
/* line 68, ../sass/cms.scss */
|
||||
#cms #center_column .testimonials .inner span {
|
||||
text-indent: -5000px;
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 15px;
|
||||
}
|
||||
/* line 74, ../sass/cms.scss */
|
||||
#cms #center_column .testimonials .inner span.before {
|
||||
background: url(../img/bl-before-bg.png) no-repeat;
|
||||
margin-right: 8px;
|
||||
}
|
||||
/* line 79, ../sass/cms.scss */
|
||||
#cms #center_column .testimonials .inner span.after {
|
||||
background: url(../img/bl-after-bg.png) no-repeat;
|
||||
margin-left: 8px;
|
||||
}
|
||||
/* line 86, ../sass/cms.scss */
|
||||
#cms #center_column .testimonials:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
@@ -79,10 +93,12 @@
|
||||
height: 16px;
|
||||
background: url(../img/testimon-after.gif) no-repeat;
|
||||
}
|
||||
/* line 98, ../sass/cms.scss */
|
||||
#cms #center_column .testimonials + p {
|
||||
padding-left: 45px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
/* line 103, ../sass/cms.scss */
|
||||
#cms #center_column p.bottom-indent {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
@@ -2,80 +2,100 @@
|
||||
/********************************************************************
|
||||
Compare Page Styles
|
||||
********************************************************************/
|
||||
/* line 10, ../sass/comparator.scss */
|
||||
table#product_comparison tbody tr td.product-block {
|
||||
vertical-align: top;
|
||||
padding: 14px 19px 19px;
|
||||
text-align: center;
|
||||
}
|
||||
/* line 16, ../sass/comparator.scss */
|
||||
table#product_comparison tbody tr td.td_empty, table#product_comparison tbody tr td.feature-name, table#product_comparison tbody tr.comparison_header {
|
||||
background: #fbfbfb;
|
||||
color: #333;
|
||||
}
|
||||
/* line 21, ../sass/comparator.scss */
|
||||
table#product_comparison tbody tr td.comparison_infos {
|
||||
text-align: center;
|
||||
}
|
||||
/* line 24, ../sass/comparator.scss */
|
||||
table#product_comparison tbody tr td.comparison_infos div.center {
|
||||
margin: 0 auto;
|
||||
width: 80px;
|
||||
}
|
||||
/* line 30, ../sass/comparator.scss */
|
||||
table#product_comparison tbody tr td.td_empty {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
/* line 33, ../sass/comparator.scss */
|
||||
table#product_comparison tbody tr td.td_empty span {
|
||||
font: 600 18px/22px "Open Sans", sans-serif;
|
||||
text-transform: uppercase;
|
||||
color: #555454;
|
||||
}
|
||||
/* line 41, ../sass/comparator.scss */
|
||||
table#product_comparison .remove {
|
||||
text-align: right;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
/* line 45, ../sass/comparator.scss */
|
||||
table#product_comparison .remove a {
|
||||
font-size: 23px;
|
||||
line-height: 23px;
|
||||
color: #c0c0c0;
|
||||
}
|
||||
/* line 50, ../sass/comparator.scss */
|
||||
table#product_comparison .remove a:hover {
|
||||
color: #515151;
|
||||
}
|
||||
/* line 55, ../sass/comparator.scss */
|
||||
table#product_comparison .product-image-block {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
/* line 59, ../sass/comparator.scss */
|
||||
table#product_comparison .product-image-block .product_image {
|
||||
padding: 9px;
|
||||
border: 1px solid #d6d4d4;
|
||||
display: inline-block;
|
||||
margin: 0 0 8px 0;
|
||||
}
|
||||
/* line 65, ../sass/comparator.scss */
|
||||
table#product_comparison .product-image-block .product_image img {
|
||||
width: 100%;
|
||||
}
|
||||
/* line 68, ../sass/comparator.scss */
|
||||
table#product_comparison h5 {
|
||||
padding-bottom: 8px;
|
||||
min-height: 54px;
|
||||
}
|
||||
/* line 72, ../sass/comparator.scss */
|
||||
table#product_comparison .prices-container {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
/* line 75, ../sass/comparator.scss */
|
||||
table#product_comparison .comparison_availability_statut {
|
||||
display: none;
|
||||
font-weight: bold;
|
||||
color: #060;
|
||||
}
|
||||
/* line 80, ../sass/comparator.scss */
|
||||
table#product_comparison .product_discount {
|
||||
padding-top: 5px;
|
||||
}
|
||||
/* line 83, ../sass/comparator.scss */
|
||||
table#product_comparison .product_discount .reduced-price {
|
||||
color: #f00;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 88, ../sass/comparator.scss */
|
||||
table#product_comparison .product_desc {
|
||||
padding-bottom: 12px;
|
||||
}
|
||||
/* line 93, ../sass/comparator.scss */
|
||||
table#product_comparison .button-container a {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/* line 97, ../sass/comparator.scss */
|
||||
table#product_comparison .comparison_unit_price {
|
||||
font-size: 17px;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
@@ -83,6 +103,7 @@ table#product_comparison .comparison_unit_price {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* line 104, ../sass/comparator.scss */
|
||||
.footer_link {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
@@ -2,77 +2,94 @@
|
||||
/**************************************************************************
|
||||
Contact Page Styles
|
||||
**************************************************************************/
|
||||
/* line 7, ../sass/contact-form.scss */
|
||||
.contact-title {
|
||||
margin-top: -5px;
|
||||
line-height: 23px;
|
||||
margin-bottom: 27px;
|
||||
}
|
||||
/* line 12, ../sass/contact-form.scss */
|
||||
.contact-title i {
|
||||
font-size: 23px;
|
||||
color: #c0c0c0;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
/* line 19, ../sass/contact-form.scss */
|
||||
.contact-form-box {
|
||||
padding: 23px 0 0 0;
|
||||
margin-bottom: 30px;
|
||||
background: url(../img/contact-form.png) repeat-x white;
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0) 0px 5px 13px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0) 0px 5px 13px;
|
||||
box-shadow: rgba(0, 0, 0, 0) 0px 5px 13px;
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0.17) 0px 5px 13px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0.17) 0px 5px 13px;
|
||||
box-shadow: rgba(0, 0, 0, 0.17) 0px 5px 13px;
|
||||
/* min 992px max 1199px */
|
||||
}
|
||||
/* line 25, ../sass/contact-form.scss */
|
||||
.contact-form-box fieldset {
|
||||
padding: 0 19px 21px 19px;
|
||||
background: url(../img/form-contact-shadow.png) center bottom no-repeat;
|
||||
background-size: contain;
|
||||
}
|
||||
/* line 31, ../sass/contact-form.scss */
|
||||
.contact-form-box label {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
/* line 35, ../sass/contact-form.scss */
|
||||
.contact-form-box .page-subheading {
|
||||
padding-left: 0px;
|
||||
border: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* line 41, ../sass/contact-form.scss */
|
||||
.contact-form-box .col-md-3 {
|
||||
padding-left: 0;
|
||||
/* max 991px */
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
/* line 41, ../sass/contact-form.scss */
|
||||
.contact-form-box .col-md-3 {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
/* line 50, ../sass/contact-form.scss */
|
||||
.contact-form-box .col-md-9 {
|
||||
padding-right: 0;
|
||||
/* max 991px */
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
/* line 50, ../sass/contact-form.scss */
|
||||
.contact-form-box .col-md-9 {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
/* line 59, ../sass/contact-form.scss */
|
||||
.contact-form-box #desc_contact0 {
|
||||
display: none;
|
||||
}
|
||||
/* line 61, ../sass/contact-form.scss */
|
||||
.contact-form-box .form-group {
|
||||
margin-bottom: 7px;
|
||||
}
|
||||
/* line 65, ../sass/contact-form.scss */
|
||||
.contact-form-box textarea {
|
||||
height: 257px;
|
||||
}
|
||||
/* line 69, ../sass/contact-form.scss */
|
||||
.contact-form-box .submit {
|
||||
margin-top: 13px;
|
||||
}
|
||||
/* line 71, ../sass/contact-form.scss */
|
||||
.contact-form-box select.form-control {
|
||||
max-width: 270px;
|
||||
width: 100%;
|
||||
}
|
||||
/* line 75, ../sass/contact-form.scss */
|
||||
.contact-form-box input.form-control {
|
||||
max-width: 270px;
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
/* line 80, ../sass/contact-form.scss */
|
||||
.contact-form-box div.uploader span.filename {
|
||||
width: 114px;
|
||||
}
|
||||
@@ -81,14 +98,17 @@
|
||||
/**************************************************************************
|
||||
Contact Page Bottom Banners Styles
|
||||
**************************************************************************/
|
||||
/* line 90, ../sass/contact-form.scss */
|
||||
.contact-banners .list-1 {
|
||||
padding: 6px 0 3px 0;
|
||||
}
|
||||
/* line 93, ../sass/contact-form.scss */
|
||||
.contact-banners .list-1 li {
|
||||
padding: 0px 0 3px 0;
|
||||
font: 600 18px/22px "Open Sans", sans-serif;
|
||||
color: #555454;
|
||||
}
|
||||
/* line 98, ../sass/contact-form.scss */
|
||||
.contact-banners .list-1 li i {
|
||||
font-size: 25px;
|
||||
line-height: 25px;
|
||||
@@ -96,23 +116,28 @@
|
||||
padding-right: 10px;
|
||||
vertical-align: -3px;
|
||||
}
|
||||
/* line 108, ../sass/contact-form.scss */
|
||||
.contact-banners .list-2 {
|
||||
padding: 2px 0 2px 0;
|
||||
}
|
||||
/* line 111, ../sass/contact-form.scss */
|
||||
.contact-banners .list-2 li {
|
||||
font-weight: bold;
|
||||
color: #46a74e;
|
||||
padding: 0 0 5px 0;
|
||||
}
|
||||
/* line 116, ../sass/contact-form.scss */
|
||||
.contact-banners .list-2 li i {
|
||||
font-size: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 10px;
|
||||
vertical-align: -2px;
|
||||
}
|
||||
/* line 125, ../sass/contact-form.scss */
|
||||
.contact-banners .box.box-last {
|
||||
padding-bottom: 49px;
|
||||
}
|
||||
/* line 130, ../sass/contact-form.scss */
|
||||
.contact-banners .box.box-last p i {
|
||||
font-size: 29px;
|
||||
line-height: 29px;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,16 +2,20 @@
|
||||
/************************************************************
|
||||
History Page Styles
|
||||
************************************************************/
|
||||
/* line 8, ../sass/history.scss */
|
||||
#order-detail-content table .return_quantity_buttons {
|
||||
margin-top: 3px;
|
||||
}
|
||||
/* line 11, ../sass/history.scss */
|
||||
#order-detail-content table .return_quantity_buttons a {
|
||||
display: none;
|
||||
float: left;
|
||||
}
|
||||
/* line 15, ../sass/history.scss */
|
||||
#order-detail-content table .return_quantity_buttons a + a {
|
||||
margin-left: 3px;
|
||||
}
|
||||
/* line 19, ../sass/history.scss */
|
||||
#order-detail-content table .order_qte_input {
|
||||
display: none;
|
||||
width: 57px;
|
||||
@@ -20,30 +24,42 @@
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
/* line 28, ../sass/history.scss */
|
||||
#order-detail-content table label {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* line 35, ../sass/history.scss */
|
||||
.table td.history_detail a + a {
|
||||
margin-left: 14px;
|
||||
}
|
||||
/* line 39, ../sass/history.scss */
|
||||
.table td.step-by-step-date {
|
||||
width: 105px;
|
||||
}
|
||||
/* line 44, ../sass/history.scss */
|
||||
.table tfoot strong {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* line 51, ../sass/history.scss */
|
||||
.info-order i {
|
||||
font-size: 20px;
|
||||
}
|
||||
/* line 54, ../sass/history.scss */
|
||||
.info-order i.icon-gift {
|
||||
color: #f13340;
|
||||
}
|
||||
/* line 55, ../sass/history.scss */
|
||||
.info-order i.icon-repeat {
|
||||
color: #55c65e;
|
||||
}
|
||||
|
||||
/* line 58, ../sass/history.scss */
|
||||
#sendOrderMessage {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
/* line 61, ../sass/history.scss */
|
||||
#sendOrderMessage select.form-control {
|
||||
width: 263px;
|
||||
}
|
||||
|
||||
@@ -1,21 +1,27 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* line 2, ../../sass/jquery/footable.core.scss */
|
||||
.footable {
|
||||
width: 100%;
|
||||
}
|
||||
/* line 8, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint > tbody > tr.footable-detail-show > td {
|
||||
border-bottom: none;
|
||||
}
|
||||
/* line 11, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
|
||||
font-family: "FontAwesome";
|
||||
content: "";
|
||||
}
|
||||
/* line 17, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint > tbody > tr:hover:not(.footable-row-detail) {
|
||||
cursor: pointer;
|
||||
}
|
||||
/* line 21, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint > tbody > tr > td.footable-cell-detail {
|
||||
background: #eee;
|
||||
border-top: none;
|
||||
}
|
||||
/* line 26, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint > tbody > tr > td > span.footable-toggle {
|
||||
display: inline-block;
|
||||
font-family: "FontAwesome";
|
||||
@@ -28,34 +34,42 @@
|
||||
padding-right: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
/* line 38, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint > tbody > tr > td > span.footable-toggle:before {
|
||||
font-family: "FontAwesome";
|
||||
content: "";
|
||||
}
|
||||
/* line 45, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint.toggle-medium > tbody > tr > td > span.footable-toggle {
|
||||
font-size: 18px;
|
||||
}
|
||||
/* line 51, ../../sass/jquery/footable.core.scss */
|
||||
.footable.breakpoint.toggle-large > tbody > tr > td > span.footable-toggle {
|
||||
font-size: 24px;
|
||||
}
|
||||
/* line 56, ../../sass/jquery/footable.core.scss */
|
||||
.footable .footable-row-detail-inner {
|
||||
display: table;
|
||||
}
|
||||
/* line 60, ../../sass/jquery/footable.core.scss */
|
||||
.footable .footable-row-detail-row {
|
||||
display: table-row;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
/* line 65, ../../sass/jquery/footable.core.scss */
|
||||
.footable .footable-row-detail-group {
|
||||
display: block;
|
||||
line-height: 2em;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 72, ../../sass/jquery/footable.core.scss */
|
||||
.footable .footable-row-detail-name {
|
||||
display: table-cell;
|
||||
font-weight: bold;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
/* line 78, ../../sass/jquery/footable.core.scss */
|
||||
.footable .footable-row-detail-value {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
* CEO and founder of bxCreative, LTD
|
||||
* http://bxcreative.com
|
||||
*/
|
||||
/* line 16, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list, .accessories-block .block_content, #productscategory_list {
|
||||
/** RESET AND LAYOUT
|
||||
===================================*/
|
||||
@@ -22,16 +23,19 @@
|
||||
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
|
||||
/* IMAGE CAPTIONS */
|
||||
}
|
||||
/* line 21, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper, .accessories-block .block_content .bx-wrapper, #productscategory_list .bx-wrapper {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
*zoom: 1;
|
||||
margin: 0 !important;
|
||||
}
|
||||
/* line 28, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper img, .accessories-block .block_content .bx-wrapper img, #productscategory_list .bx-wrapper img {
|
||||
max-width: 100%;
|
||||
display: block;
|
||||
}
|
||||
/* line 39, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-pager,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto, .accessories-block .block_content .bx-wrapper .bx-pager,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto, #productscategory_list .bx-wrapper .bx-pager,
|
||||
@@ -40,6 +44,7 @@
|
||||
bottom: -30px;
|
||||
width: 100%;
|
||||
}
|
||||
/* line 47, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-loading, .accessories-block .block_content .bx-wrapper .bx-loading, #productscategory_list .bx-wrapper .bx-loading {
|
||||
min-height: 50px;
|
||||
background: url(images/bx_loader.gif) center center no-repeat;
|
||||
@@ -51,6 +56,7 @@
|
||||
z-index: 2000;
|
||||
display: none;
|
||||
}
|
||||
/* line 61, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-pager, .accessories-block .block_content .bx-wrapper .bx-pager, #productscategory_list .bx-wrapper .bx-pager {
|
||||
text-align: center;
|
||||
font-size: .85em;
|
||||
@@ -59,6 +65,7 @@
|
||||
color: #666;
|
||||
padding-top: 20px;
|
||||
}
|
||||
/* line 71, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-pager .bx-pager-item,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-controls-auto-item, .accessories-block .block_content .bx-wrapper .bx-pager .bx-pager-item,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-controls-auto-item, #productscategory_list .bx-wrapper .bx-pager .bx-pager-item,
|
||||
@@ -67,6 +74,7 @@
|
||||
*zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
/* line 77, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-pager.bx-default-pager a, .accessories-block .block_content .bx-wrapper .bx-pager.bx-default-pager a, #productscategory_list .bx-wrapper .bx-pager.bx-default-pager a {
|
||||
text-indent: -9999px;
|
||||
display: block;
|
||||
@@ -81,12 +89,14 @@
|
||||
-o-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
/* line 89, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
#crossselling_list .bx-wrapper .bx-pager.bx-default-pager a.active, .accessories-block .block_content .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
.accessories-block .block_content .bx-wrapper .bx-pager.bx-default-pager a.active, #productscategory_list .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
#productscategory_list .bx-wrapper .bx-pager.bx-default-pager a.active {
|
||||
background: #000;
|
||||
}
|
||||
/* line 98, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a, .accessories-block .block_content .bx-wrapper .bx-controls-direction a, #productscategory_list .bx-wrapper .bx-controls-direction a {
|
||||
margin-top: 38px;
|
||||
height: 20px;
|
||||
@@ -98,6 +108,7 @@
|
||||
font-size: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
/* line 108, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a:before, .accessories-block .block_content .bx-wrapper .bx-controls-direction a:before, #productscategory_list .bx-wrapper .bx-controls-direction a:before {
|
||||
padding-left: 2px;
|
||||
color: #c0c0c0;
|
||||
@@ -105,27 +116,35 @@
|
||||
font-size: 20px;
|
||||
line-height: 22px;
|
||||
}
|
||||
/* line 116, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a:hover:before, .accessories-block .block_content .bx-wrapper .bx-controls-direction a:hover:before, #productscategory_list .bx-wrapper .bx-controls-direction a:hover:before {
|
||||
color: #333;
|
||||
}
|
||||
/* line 120, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-next, .accessories-block .block_content .bx-next, #productscategory_list .bx-next {
|
||||
right: 10px;
|
||||
}
|
||||
/* line 122, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-next:before, .accessories-block .block_content .bx-next:before, #productscategory_list .bx-next:before {
|
||||
content: "";
|
||||
}
|
||||
/* line 127, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-prev, .accessories-block .block_content .bx-prev, #productscategory_list .bx-prev {
|
||||
left: 10px;
|
||||
}
|
||||
/* line 129, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-prev:before, .accessories-block .block_content .bx-prev:before, #productscategory_list .bx-prev:before {
|
||||
content: "";
|
||||
}
|
||||
/* line 137, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a.disabled, .accessories-block .block_content .bx-wrapper .bx-controls-direction a.disabled, #productscategory_list .bx-wrapper .bx-controls-direction a.disabled {
|
||||
display: none;
|
||||
}
|
||||
/* line 143, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto, .accessories-block .block_content .bx-wrapper .bx-controls-auto, #productscategory_list .bx-wrapper .bx-controls-auto {
|
||||
text-align: center;
|
||||
}
|
||||
/* line 147, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-start, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-start, #productscategory_list .bx-wrapper .bx-controls-auto .bx-start {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
@@ -135,12 +154,14 @@
|
||||
background: url(images/controls.png) -86px -11px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
/* line 158, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-start.active, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-start.active, #productscategory_list .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
#productscategory_list .bx-wrapper .bx-controls-auto .bx-start.active {
|
||||
background-position: -86px 0;
|
||||
}
|
||||
/* line 162, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-stop, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-stop, #productscategory_list .bx-wrapper .bx-controls-auto .bx-stop {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
@@ -150,28 +171,33 @@
|
||||
background: url(images/controls.png) -86px -44px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
/* line 173, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-stop.active, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-stop.active, #productscategory_list .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
#productscategory_list .bx-wrapper .bx-controls-auto .bx-stop.active {
|
||||
background-position: -86px -33px;
|
||||
}
|
||||
/* line 179, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager, .accessories-block .block_content .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager, #productscategory_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
|
||||
text-align: left;
|
||||
width: 80%;
|
||||
}
|
||||
/* line 184, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto, .accessories-block .block_content .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto, #productscategory_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
|
||||
right: 0;
|
||||
width: 35px;
|
||||
}
|
||||
/* line 192, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-caption, .accessories-block .block_content .bx-wrapper .bx-caption, #productscategory_list .bx-wrapper .bx-caption {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: #666\9;
|
||||
background: rgba(80, 80, 80, 0);
|
||||
background: rgba(80, 80, 80, 0.75);
|
||||
width: 100%;
|
||||
}
|
||||
/* line 201, ../../sass/jquery/jquery.bxslider.scss */
|
||||
#crossselling_list .bx-wrapper .bx-caption span, .accessories-block .block_content .bx-wrapper .bx-caption span, #productscategory_list .bx-wrapper .bx-caption span {
|
||||
color: #fff;
|
||||
font-family: Arial;
|
||||
|
||||
@@ -9,23 +9,28 @@ http://uniformjs.com/
|
||||
|
||||
*/
|
||||
/* General settings */
|
||||
/* line 178, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
|
||||
background-image: url("../../../img/jquery/uniform/sprite.png");
|
||||
background-repeat: no-repeat;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
/* line 188, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector, div.checker, div.button, div.radio, div.uploader {
|
||||
vertical-align: middle;
|
||||
/* Keeping this as :focus to remove browser styles */
|
||||
}
|
||||
/* line 193, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector:focus, div.checker:focus, div.button:focus, div.radio:focus, div.uploader:focus {
|
||||
outline: 0;
|
||||
}
|
||||
/* line 203, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *, div.uploader, div.uploader *, div.button, div.button * {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* line 210, ../../sass/jquery/_uniform._base.scss */
|
||||
.highContrastDetect {
|
||||
background: url("../../../img/jquery/uniform/bg-input.png") repeat-x 0 0;
|
||||
width: 0px;
|
||||
@@ -33,6 +38,7 @@ div.selector, div.selector *, div.radio, div.radio *, div.checker, div.checker *
|
||||
}
|
||||
|
||||
/* Input & Textarea */
|
||||
/* line 220, ../../sass/jquery/_uniform._base.scss */
|
||||
input.uniform-input,
|
||||
select.uniform-multiselect,
|
||||
textarea.uniform {
|
||||
@@ -43,6 +49,7 @@ textarea.uniform {
|
||||
|
||||
/* Remove default webkit and possible mozilla .search styles.
|
||||
* Keeping this as :active to remove browser styles */
|
||||
/* line 234, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker input,
|
||||
input[type="search"],
|
||||
input[type="search"]:active {
|
||||
@@ -51,6 +58,7 @@ input[type="search"]:active {
|
||||
}
|
||||
|
||||
/* Select */
|
||||
/* line 240, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector {
|
||||
background-position: 0 -54px;
|
||||
line-height: 27px;
|
||||
@@ -59,6 +67,7 @@ div.selector {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
/* line 247, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector span {
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
@@ -72,12 +81,15 @@ div.selector span {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
/* line 258, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector.fixedWidth {
|
||||
width: 190px;
|
||||
}
|
||||
/* line 260, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector.fixedWidth span {
|
||||
width: 150px;
|
||||
}
|
||||
/* line 265, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector select {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
@@ -90,96 +102,124 @@ div.selector select {
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
/* line 275, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector.active span {
|
||||
background-position: right -27px;
|
||||
}
|
||||
/* line 281, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector.hover span, div.selector.focus span {
|
||||
background-position: right -27px;
|
||||
}
|
||||
/* line 286, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector.hover.active span, div.selector.focus.active span {
|
||||
background-position: right -27px;
|
||||
}
|
||||
/* line 294, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector.disabled span, div.selector.disabled.active span {
|
||||
background-position: right 0;
|
||||
}
|
||||
|
||||
/* Select1 */
|
||||
/* line 302, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector1 > div {
|
||||
background-position: 0 -135px;
|
||||
}
|
||||
/* line 304, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector1 > div span {
|
||||
background-position: right -81px;
|
||||
}
|
||||
/* line 309, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector1 > div.active span {
|
||||
background-position: right -108px;
|
||||
}
|
||||
/* line 315, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector1 > div.hover span, div.selector1 > div.focus span {
|
||||
background-position: right -108px;
|
||||
}
|
||||
/* line 320, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector1 > div.hover.active span, div.selector1 > div.focus.active span {
|
||||
background-position: right -108px;
|
||||
}
|
||||
/* line 93, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector1 > div.disabled, div.selector1 > div.disabled.active {
|
||||
background-position: 0 -135px;
|
||||
}
|
||||
/* line 328, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector1 > div.disabled span, div.selector1 > div.disabled.active span {
|
||||
background-position: right -81px;
|
||||
}
|
||||
|
||||
/* Select2 */
|
||||
/* line 338, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector2 > div {
|
||||
background-position: 0 -216px;
|
||||
}
|
||||
/* line 340, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector2 > div span {
|
||||
background-position: right -162px;
|
||||
}
|
||||
/* line 345, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector2 > div.active span {
|
||||
background-position: right -189px;
|
||||
}
|
||||
/* line 351, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector2 > div.hover span, div.selector2 > div.focus span {
|
||||
background-position: right -189px;
|
||||
}
|
||||
/* line 356, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector2 > div.hover.active span, div.selector2 > div.focus.active span {
|
||||
background-position: right -189px;
|
||||
}
|
||||
/* line 93, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector2 > div.disabled, div.selector2 > div.disabled.active {
|
||||
background-position: 0 -216px;
|
||||
}
|
||||
/* line 364, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector2 > div.disabled span, div.selector2 > div.disabled.active span {
|
||||
background-position: right -162px;
|
||||
}
|
||||
|
||||
/* Select3 */
|
||||
/* line 373, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector3 > div {
|
||||
background-position: 0 -351px;
|
||||
}
|
||||
/* line 375, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector3 > div span {
|
||||
background-position: right -297px;
|
||||
}
|
||||
/* line 380, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector3 > div.active span {
|
||||
background-position: right -324px;
|
||||
}
|
||||
/* line 386, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector3 > div.hover span, div.selector3 > div.focus span {
|
||||
background-position: right -324px;
|
||||
}
|
||||
/* line 391, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector3 > div.hover.active span, div.selector3 > div.focus.active span {
|
||||
background-position: right -324px;
|
||||
}
|
||||
/* line 93, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector3 > div.disabled, div.selector3 > div.disabled.active {
|
||||
background-position: 0 -351px;
|
||||
}
|
||||
/* line 399, ../../sass/jquery/_uniform._base.scss */
|
||||
div.selector3 > div.disabled span, div.selector3 > div.disabled.active span {
|
||||
background-position: right -297px;
|
||||
}
|
||||
|
||||
/* Checkbox */
|
||||
/* line 411, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker {
|
||||
position: relative;
|
||||
}
|
||||
/* line 414, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker, div.checker span, div.checker input {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
/* line 419, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker span {
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
@@ -188,9 +228,11 @@ div.checker span {
|
||||
text-align: center;
|
||||
background-position: 0 -257px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
/* line 428, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker input {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
@@ -202,40 +244,51 @@ div.checker input {
|
||||
*display: inline;
|
||||
zoom: 1;
|
||||
}
|
||||
/* line 434, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.active span {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.active span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
/* line 444, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.hover span, div.checker.focus span {
|
||||
background-position: -30px -257px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.hover span.checked, div.checker.focus span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
/* line 453, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.hover.active span, div.checker.focus.active span {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.hover.active span.checked, div.checker.focus.active span.checked {
|
||||
background-position: -15px -257px;
|
||||
}
|
||||
/* line 93, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.disabled, div.checker.disabled.active {
|
||||
background-position: 0 -257px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.checker.disabled span.checked, div.checker.disabled.active span.checked {
|
||||
background-position: 0 -257px;
|
||||
}
|
||||
|
||||
/* Radio */
|
||||
/* line 477, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio {
|
||||
position: relative;
|
||||
display: inline;
|
||||
}
|
||||
/* line 480, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio, div.radio span, div.radio input {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
}
|
||||
/* line 484, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio span {
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
@@ -244,9 +297,11 @@ div.radio span {
|
||||
text-align: center;
|
||||
background-position: 0 -243px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
/* line 494, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio input {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
@@ -259,32 +314,41 @@ div.radio input {
|
||||
zoom: 1;
|
||||
text-align: center;
|
||||
}
|
||||
/* line 501, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.active span {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.active span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
/* line 511, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.hover span, div.radio.focus span {
|
||||
background-position: -13px -36px -243px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.hover span.checked, div.radio.focus span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
/* line 520, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.hover.active span, div.radio.focus.active span {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.hover.active span.checked, div.radio.focus.active span.checked {
|
||||
background-position: -13px -243px;
|
||||
}
|
||||
/* line 531, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.disabled span, div.radio.disabled.active span {
|
||||
background-position: 0 -243px;
|
||||
}
|
||||
/* line 99, ../../sass/jquery/_uniform._base.scss */
|
||||
div.radio.disabled span.checked, div.radio.disabled.active span.checked {
|
||||
background-position: 0 -243px;
|
||||
}
|
||||
|
||||
/* Uploader */
|
||||
/* line 543, ../../sass/jquery/_uniform._base.scss */
|
||||
div.uploader {
|
||||
background: none;
|
||||
height: 27px;
|
||||
@@ -293,6 +357,7 @@ div.uploader {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
/* line 551, ../../sass/jquery/_uniform._base.scss */
|
||||
div.uploader span.action {
|
||||
background-position: 0 -378px;
|
||||
height: 27px;
|
||||
@@ -304,6 +369,7 @@ div.uploader span.action {
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
}
|
||||
/* line 563, ../../sass/jquery/_uniform._base.scss */
|
||||
div.uploader span.filename {
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
@@ -317,6 +383,7 @@ div.uploader span.filename {
|
||||
width: 172px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
/* line 574, ../../sass/jquery/_uniform._base.scss */
|
||||
div.uploader input {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
@@ -333,6 +400,7 @@ div.uploader input {
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
/* line 588, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button {
|
||||
background-position: 0 -634px;
|
||||
height: 30px;
|
||||
@@ -340,6 +408,7 @@ div.button {
|
||||
position: relative;
|
||||
/* Keep buttons barely visible so they can get focus */
|
||||
}
|
||||
/* line 595, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button a, div.button button, div.button input {
|
||||
opacity: 0.01;
|
||||
filter: alpha(opacity=1);
|
||||
@@ -351,6 +420,7 @@ div.button a, div.button button, div.button input {
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
}
|
||||
/* line 605, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button span {
|
||||
display: -moz-inline-box;
|
||||
display: inline-block;
|
||||
@@ -363,22 +433,28 @@ div.button span {
|
||||
margin-left: 13px;
|
||||
padding: 0;
|
||||
}
|
||||
/* line 81, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button.active {
|
||||
background-position: 0 -664px;
|
||||
}
|
||||
/* line 618, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button.active span {
|
||||
background-position: right -544px;
|
||||
cursor: default;
|
||||
}
|
||||
/* line 87, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button.hover, div.button.focus {
|
||||
background-position: 0 -694px;
|
||||
}
|
||||
/* line 627, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button.hover span, div.button.focus span {
|
||||
background-position: right -574px;
|
||||
}
|
||||
/* line 93, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button.disabled, div.button.disabled.active {
|
||||
background-position: 0 -724px;
|
||||
}
|
||||
/* line 635, ../../sass/jquery/_uniform._base.scss */
|
||||
div.button.disabled span, div.button.disabled.active span {
|
||||
background-position: right -604px;
|
||||
cursor: default;
|
||||
@@ -388,6 +464,7 @@ div.button.disabled span, div.button.disabled.active span {
|
||||
/* ************************************************************************************************
|
||||
uniform
|
||||
************************************************************************************************ */
|
||||
/* line 24, ../../sass/jquery/uniform.default.scss */
|
||||
input.uniform-input,
|
||||
select.uniform-multiselect,
|
||||
textarea.uniform {
|
||||
@@ -398,6 +475,7 @@ textarea.uniform {
|
||||
color: #777;
|
||||
border: solid 1px #d6d4d4;
|
||||
}
|
||||
/* line 87, ../../sass/jquery/_uniform._base.scss */
|
||||
input.uniform-input.hover, input.uniform-input.focus,
|
||||
select.uniform-multiselect.hover,
|
||||
select.uniform-multiselect.focus,
|
||||
@@ -411,6 +489,7 @@ textarea.uniform.focus {
|
||||
|
||||
/* PRESENTATION */
|
||||
/* Buttons */
|
||||
/* line 44, ../../sass/jquery/uniform.default.scss */
|
||||
div.button span {
|
||||
font-weight: bold;
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
@@ -418,75 +497,92 @@ div.button span {
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
/* line 53, ../../sass/jquery/uniform.default.scss */
|
||||
div.button.hover span, div.button.focus span {
|
||||
color: #555;
|
||||
}
|
||||
/* line 59, ../../sass/jquery/uniform.default.scss */
|
||||
div.button.disabled span, div.button.disabled.active span {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
/* Select */
|
||||
/* line 68, ../../sass/jquery/uniform.default.scss */
|
||||
#compare_shipping .form-group label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* line 69, ../../sass/jquery/uniform.default.scss */
|
||||
div.selector {
|
||||
font-size: 12px;
|
||||
}
|
||||
/* line 72, ../../sass/jquery/uniform.default.scss */
|
||||
div.selector span {
|
||||
color: #666;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
}
|
||||
/* line 78, ../../sass/jquery/uniform.default.scss */
|
||||
div.selector select {
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
}
|
||||
/* line 84, ../../sass/jquery/uniform.default.scss */
|
||||
div.selector.disabled span, div.selector.disabled.active span {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
/* line 90, ../../sass/jquery/uniform.default.scss */
|
||||
.checker span input {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
/* line 92, ../../sass/jquery/uniform.default.scss */
|
||||
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
/* line 94, ../../sass/jquery/uniform.default.scss */
|
||||
.radio-inline, .checkbox-inline {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Checker */
|
||||
/* line 97, ../../sass/jquery/uniform.default.scss */
|
||||
div.checker {
|
||||
cursor: pointer;
|
||||
margin-right: 5px;
|
||||
}
|
||||
/* line 100, ../../sass/jquery/uniform.default.scss */
|
||||
div.checker span {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* line 103, ../../sass/jquery/uniform.default.scss */
|
||||
#layered_form div.checker {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* Radio */
|
||||
/* line 109, ../../sass/jquery/uniform.default.scss */
|
||||
div.radio {
|
||||
margin-right: 3px;
|
||||
}
|
||||
/* line 111, ../../sass/jquery/uniform.default.scss */
|
||||
div.radio span {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
/* Uploader */
|
||||
/* line 115, ../../sass/jquery/uniform.default.scss */
|
||||
div.uploader span.action {
|
||||
text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
}
|
||||
/* line 122, ../../sass/jquery/uniform.default.scss */
|
||||
div.uploader span.filename {
|
||||
color: #777;
|
||||
border: solid 1px #d6d4d4;
|
||||
@@ -494,14 +590,17 @@ div.uploader span.filename {
|
||||
background: #fbfbfb;
|
||||
margin-right: 2px;
|
||||
}
|
||||
/* line 131, ../../sass/jquery/uniform.default.scss */
|
||||
div.uploader.disabled span.action, div.uploader.disabled.active span.action {
|
||||
color: #aaa;
|
||||
}
|
||||
/* line 135, ../../sass/jquery/uniform.default.scss */
|
||||
div.uploader.disabled span.filename, div.uploader.disabled.active span.filename {
|
||||
border-color: #ddd;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* line 143, ../../sass/jquery/uniform.default.scss */
|
||||
input.uniform-input, input.uniform-input:focus {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
@@ -2,20 +2,24 @@
|
||||
/*********************************************************************
|
||||
Maintenance Page Styles
|
||||
**********************************************************************/
|
||||
/* line 7, ../sass/maintenance.scss */
|
||||
#maintenance {
|
||||
margin-top: 50px;
|
||||
/* > 1200 */
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 7, ../sass/maintenance.scss */
|
||||
#maintenance {
|
||||
margin: 126px 0 0 0;
|
||||
padding: 91px 48px 365px 297px;
|
||||
background: url(../img/bg_maintenance.png) no-repeat;
|
||||
}
|
||||
}
|
||||
/* line 15, ../sass/maintenance.scss */
|
||||
#maintenance .logo {
|
||||
margin-bottom: 31px;
|
||||
}
|
||||
/* line 18, ../sass/maintenance.scss */
|
||||
#maintenance h1 {
|
||||
font: 600 28px/34px "Open Sans", sans-serif;
|
||||
color: #333;
|
||||
@@ -24,6 +28,7 @@
|
||||
padding: 0 0 14px 0;
|
||||
margin: 0 0 19px 0;
|
||||
}
|
||||
/* line 27, ../sass/maintenance.scss */
|
||||
#maintenance #message {
|
||||
font: 600 16px/31px "Open Sans", sans-serif;
|
||||
padding-left: 18px;
|
||||
@@ -32,6 +37,7 @@
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1200px) {
|
||||
/* line 35, ../sass/maintenance.scss */
|
||||
.container {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
||||
@@ -3,14 +3,17 @@
|
||||
/*******************************************************************
|
||||
Cart Block Styles
|
||||
********************************************************************/
|
||||
/* line 11, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart_block_list .deleteCustomizableProduct, #cart_block #cart_block_list .remove_link {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 19px;
|
||||
}
|
||||
/* line 17, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart_block_list .remove_link a, #cart_block #cart_block_list .ajax_cart_block_remove_link {
|
||||
color: #777777;
|
||||
}
|
||||
/* line 20, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart_block_list .remove_link a:before, #cart_block #cart_block_list .ajax_cart_block_remove_link:before {
|
||||
display: inline-block;
|
||||
content: "";
|
||||
@@ -18,76 +21,93 @@
|
||||
font-size: 18px;
|
||||
line-height: 18px;
|
||||
}
|
||||
/* line 28, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart_block_list .remove_link a:hover, #cart_block #cart_block_list .ajax_cart_block_remove_link:hover {
|
||||
color: #515151;
|
||||
}
|
||||
/* line 32, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block .cart-images {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
/* line 37, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block .cart-info {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
padding-right: 20px;
|
||||
}
|
||||
/* line 42, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block .cart-info .product-name {
|
||||
padding-bottom: 15px;
|
||||
margin-top: -4px;
|
||||
}
|
||||
/* line 46, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block .cart-info .product-name a {
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
display: inline-block;
|
||||
}
|
||||
/* line 53, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block .cart-info .quantity-formated {
|
||||
display: inline-block;
|
||||
color: #9c9b9b;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
/* line 60, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block dt {
|
||||
font-weight: normal;
|
||||
overflow: hidden;
|
||||
padding: 20px 10px 16px 20px;
|
||||
position: relative;
|
||||
}
|
||||
/* line 67, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block dd {
|
||||
position: relative;
|
||||
}
|
||||
/* line 70, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block dd li {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
/* line 73, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block dd li .deleteCustomizableProduct {
|
||||
top: 12px !important;
|
||||
right: 15px !important;
|
||||
}
|
||||
/* line 80, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart_block_no_products {
|
||||
margin: 0;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
/* line 84, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart-prices {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
font-weight: bold;
|
||||
padding: 10px 20px 22px 20px;
|
||||
}
|
||||
/* line 89, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart-prices .cart-prices-line {
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #515151;
|
||||
padding: 7px 0;
|
||||
}
|
||||
/* line 94, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart-prices .cart-prices-line.last-line {
|
||||
border: none;
|
||||
}
|
||||
/* line 99, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart-buttons {
|
||||
overflow: hidden;
|
||||
padding: 20px 20px 10px 20px;
|
||||
margin: 0;
|
||||
background: #f6f6f6;
|
||||
}
|
||||
/* line 105, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart-buttons a {
|
||||
float: left;
|
||||
margin-bottom: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
/* line 110, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart-buttons a#button_order_cart {
|
||||
margin-right: 0;
|
||||
}
|
||||
@@ -95,6 +115,7 @@
|
||||
/*******************************************************************
|
||||
Cart Block(Header) Styles
|
||||
********************************************************************/
|
||||
/* line 121, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block {
|
||||
z-index: 10;
|
||||
display: none;
|
||||
@@ -106,73 +127,106 @@
|
||||
background: #484848;
|
||||
color: #fff;
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 121, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block {
|
||||
top: 69px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 121, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block {
|
||||
top: 44px;
|
||||
left: 50%;
|
||||
margin-left: -135px;
|
||||
}
|
||||
}
|
||||
/* line 140, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block a {
|
||||
color: #fff;
|
||||
}
|
||||
/* line 143, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block a:hover {
|
||||
color: #9c9b9b;
|
||||
}
|
||||
/* line 148, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block #cart_block_list .remove_link a, #header #cart_block #cart_block_list .ajax_cart_block_remove_link {
|
||||
color: #fff;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
/* line 153, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block #cart_block_list .remove_link a:hover, #header #cart_block #cart_block_list .ajax_cart_block_remove_link:hover {
|
||||
color: #9c9b9b;
|
||||
}
|
||||
/* line 157, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block .price {
|
||||
color: #fff;
|
||||
}
|
||||
/* line 161, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block dt {
|
||||
background: url(../../../img/cart-shadow.png) repeat-x;
|
||||
}
|
||||
/* line 164, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block dt.first_item {
|
||||
background: none;
|
||||
}
|
||||
/* line 167, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block dd {
|
||||
background: url(../../../img/cart-shadow.png) repeat-x;
|
||||
}
|
||||
/* line 169, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block .product-atributes {
|
||||
padding-bottom: 10px;
|
||||
font-size: 11px;
|
||||
}
|
||||
/* line 173, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block .product-atributes a {
|
||||
color: #9c9b9b;
|
||||
}
|
||||
/* line 176, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block .product-atributes a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
/* line 180, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block #cart-prices {
|
||||
border: none;
|
||||
background: url(../../../img/cart-shadow.png) repeat-x #3d3d3d;
|
||||
}
|
||||
/* line 185, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#header #cart_block #cart-buttons {
|
||||
background: url(../../../img/cart-shadow.png) repeat-x #333333;
|
||||
}
|
||||
|
||||
/* line 190, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart_block_summary, #cart_block .title_block span, #header #cart_block h4, #header #cart_block .title_block, #header #cart_block h4 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* line 193, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block #cart_block_shipping_cost,
|
||||
#cart_block #cart_block_total,
|
||||
#cart_block #cart_block_wrapping_cost {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* line 196, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block table#vouchers {
|
||||
clear: both;
|
||||
width: 80%;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/* line 202, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block table#vouchers tr td {
|
||||
padding: 2px;
|
||||
}
|
||||
/* line 205, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block table#vouchers tr td.quantity {
|
||||
margin-right: 5px;
|
||||
min-width: 18px;
|
||||
}
|
||||
/* line 210, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#cart_block table#vouchers tr td.delete {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
@@ -183,6 +237,7 @@
|
||||
/*****************************************************************************
|
||||
Layer Cart Css
|
||||
*****************************************************************************/
|
||||
/* line 222, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
.layer_cart_overlay {
|
||||
background-color: #000;
|
||||
display: none;
|
||||
@@ -197,6 +252,7 @@
|
||||
filter: alpha(opacity=20);
|
||||
}
|
||||
|
||||
/* line 235, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
* html .layer_cart_overlay {
|
||||
filter: alpha(opacity=20);
|
||||
position: absolute;
|
||||
@@ -204,6 +260,7 @@
|
||||
margin-left: -160px;
|
||||
}
|
||||
|
||||
/* line 241, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart {
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
@@ -218,11 +275,13 @@
|
||||
-o-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
/* line 251, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product {
|
||||
padding: 30px 30px 30px 30px;
|
||||
overflow: hidden;
|
||||
position: static;
|
||||
}
|
||||
/* line 256, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product h2 {
|
||||
font: 400 23px/29px Arial, Helvetica, sans-serif;
|
||||
color: #46a74e;
|
||||
@@ -230,12 +289,14 @@
|
||||
padding-right: 100px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 256, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product h2 {
|
||||
font-size: 18px;
|
||||
padding-right: 0;
|
||||
line-height: normal;
|
||||
}
|
||||
}
|
||||
/* line 266, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product h2 i {
|
||||
font-size: 30px;
|
||||
line-height: 30px;
|
||||
@@ -243,11 +304,13 @@
|
||||
padding-right: 8px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 266, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product h2 i {
|
||||
font-size: 22px;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
/* line 278, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product .product-image-container {
|
||||
max-width: 178px;
|
||||
border: 1px solid #d6d4d4;
|
||||
@@ -256,25 +319,31 @@
|
||||
margin-right: 30px;
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
/* line 278, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product .product-image-container {
|
||||
float: none;
|
||||
margin-right: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
/* line 291, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product .layer_cart_product_info {
|
||||
padding: 38px 0 0 0;
|
||||
}
|
||||
/* line 294, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product .layer_cart_product_info #layer_cart_product_title {
|
||||
display: block;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
/* line 299, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product .layer_cart_product_info > div {
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
/* line 302, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_product .layer_cart_product_info > div strong {
|
||||
padding-right: 3px;
|
||||
}
|
||||
/* line 306, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart {
|
||||
background: #fafafa;
|
||||
border-left: 1px solid #d6d4d4;
|
||||
@@ -287,21 +356,25 @@
|
||||
position: relative;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 306, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart {
|
||||
min-height: 318px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
/* line 306, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart {
|
||||
min-height: 360px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
/* line 306, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart {
|
||||
border-left: none;
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
}
|
||||
/* line 325, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart h2 {
|
||||
font: 400 23px/29px Arial, Helvetica, sans-serif;
|
||||
color: #333;
|
||||
@@ -310,13 +383,16 @@
|
||||
margin-bottom: 17px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 325, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart h2 {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
/* line 336, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart .layer_cart_row {
|
||||
padding: 0 0 7px 0;
|
||||
}
|
||||
/* line 340, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart .button-container {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
@@ -324,16 +400,20 @@
|
||||
width: 100%;
|
||||
padding: 0px 30px 20px 30px;
|
||||
}
|
||||
/* line 347, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart .button-container .btn {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/* line 349, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart .button-container span.exclusive-medium {
|
||||
margin-right: 5px;
|
||||
}
|
||||
/* line 352, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .layer_cart_cart .button-container span.exclusive-medium i {
|
||||
padding-right: 5px;
|
||||
color: #777777;
|
||||
}
|
||||
/* line 359, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .cross {
|
||||
position: absolute;
|
||||
right: 7px;
|
||||
@@ -344,6 +424,7 @@
|
||||
color: #333;
|
||||
z-index: 2;
|
||||
}
|
||||
/* line 369, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .cross:before {
|
||||
content: "";
|
||||
display: block;
|
||||
@@ -351,12 +432,15 @@
|
||||
font-size: 25px;
|
||||
line-height: 25px;
|
||||
}
|
||||
/* line 377, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .cross:hover {
|
||||
color: #515151;
|
||||
}
|
||||
/* line 381, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .continue {
|
||||
cursor: pointer;
|
||||
}
|
||||
/* line 384, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart p {
|
||||
padding: 0px;
|
||||
}
|
||||
@@ -364,46 +448,56 @@
|
||||
/************************************************************************
|
||||
Layer Cart Caroucel
|
||||
*************************************************************************/
|
||||
/* line 393, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling .crossseling-content {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
padding: 26px 30px 40px 30px;
|
||||
position: relative;
|
||||
}
|
||||
/* line 399, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling h2 {
|
||||
font: 400 23px/26px Arial, Helvetica, sans-serif;
|
||||
color: #333333;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
/* line 405, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list {
|
||||
max-width: 773px;
|
||||
width: 84%;
|
||||
margin: 0 auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
/* line 411, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list ul {
|
||||
display: block;
|
||||
}
|
||||
/* line 414, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list ul li {
|
||||
float: left;
|
||||
width: 178px;
|
||||
margin: 0 0px 0 0;
|
||||
}
|
||||
/* line 419, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-image-container {
|
||||
border: 1px solid #d6d4d4;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
/* line 425, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-image-container img {
|
||||
width: 100%;
|
||||
}
|
||||
/* line 428, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-name {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
/* line 431, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-name a {
|
||||
font-size: 15px;
|
||||
line-height: 20px;
|
||||
}
|
||||
/* line 436, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev, #layer_cart .crossseling #blockcart_list a.bx-next {
|
||||
display: block;
|
||||
font-family: "FontAwesome";
|
||||
@@ -417,28 +511,36 @@
|
||||
top: 45%;
|
||||
margin-top: -20px;
|
||||
}
|
||||
/* line 449, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev:after, #layer_cart .crossseling #blockcart_list a.bx-next:after {
|
||||
display: block;
|
||||
text-indent: 0;
|
||||
}
|
||||
/* line 453, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev:hover, #layer_cart .crossseling #blockcart_list a.bx-next:hover {
|
||||
color: #c0c0c0;
|
||||
}
|
||||
/* line 454, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev.disabled, #layer_cart .crossseling #blockcart_list a.bx-next.disabled {
|
||||
display: none;
|
||||
}
|
||||
/* line 457, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev {
|
||||
left: 5%;
|
||||
}
|
||||
/* line 460, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev:after {
|
||||
content: "";
|
||||
}
|
||||
/* line 463, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-next {
|
||||
right: 5%;
|
||||
}
|
||||
/* line 466, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list a.bx-next:after {
|
||||
content: "";
|
||||
}
|
||||
/* line 471, ../../../sass/modules/blockcart/blockcart.scss */
|
||||
#layer_cart .crossseling #blockcart_list .bx-controls {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@@ -1,19 +1,24 @@
|
||||
/* block CONTACT ******************************************************************************* */
|
||||
/* line 4, ../../../sass/modules/blockcontact/blockcontact.scss */
|
||||
#contact_block .label {
|
||||
display: none;
|
||||
}
|
||||
/* line 6, ../../../sass/modules/blockcontact/blockcontact.scss */
|
||||
#contact_block .block_content {
|
||||
color: #888888;
|
||||
padding: 0 20px 20px;
|
||||
}
|
||||
/* line 11, ../../../sass/modules/blockcontact/blockcontact.scss */
|
||||
#contact_block p {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
/* line 13, ../../../sass/modules/blockcontact/blockcontact.scss */
|
||||
#contact_block p.tel {
|
||||
font: 400 17px/21px Arial, Helvetica, sans-serif;
|
||||
color: #fff;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
/* line 18, ../../../sass/modules/blockcontact/blockcontact.scss */
|
||||
#contact_block p.tel i {
|
||||
font-size: 25px;
|
||||
vertical-align: -2px;
|
||||
|
||||
@@ -1,23 +1,28 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* line 2, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#enabled_filters {
|
||||
background: #484848;
|
||||
padding: 16px 20px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
/* line 7, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#enabled_filters span.layered_subtitle {
|
||||
color: #fff;
|
||||
display: block;
|
||||
padding-bottom: 11px;
|
||||
}
|
||||
/* line 13, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#enabled_filters li {
|
||||
padding: 1px 0;
|
||||
color: #9c9b9b;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
/* line 19, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#enabled_filters li:hover, #enabled_filters li:hover a {
|
||||
color: #fff;
|
||||
}
|
||||
/* line 23, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#enabled_filters li a {
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
@@ -27,6 +32,7 @@
|
||||
text-indent: 0px;
|
||||
color: #888888;
|
||||
}
|
||||
/* line 32, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#enabled_filters li a:before {
|
||||
content: "";
|
||||
display: block;
|
||||
@@ -35,6 +41,7 @@
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
/* line 46, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_subtitle_heading {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
padding: 0 12px 6px 0;
|
||||
@@ -43,6 +50,7 @@
|
||||
position: relative;
|
||||
color: #333333;
|
||||
}
|
||||
/* line 54, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_subtitle_heading .layered_close {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
@@ -50,6 +58,7 @@
|
||||
height: 14px;
|
||||
width: 12px;
|
||||
}
|
||||
/* line 61, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_subtitle_heading .layered_close a {
|
||||
display: block;
|
||||
height: 14px;
|
||||
@@ -60,6 +69,7 @@
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
}
|
||||
/* line 71, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_subtitle_heading .layered_close a:after {
|
||||
content: "";
|
||||
display: block;
|
||||
@@ -72,35 +82,52 @@
|
||||
font-family: 'FontAwesome';
|
||||
vertical-align: 1px;
|
||||
}
|
||||
/* line 84, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_subtitle_heading .layered_close a:hover {
|
||||
color: #515151;
|
||||
}
|
||||
/* line 93, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_subtitle_heading .layered_close.closed a:after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
/* line 103, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left label {
|
||||
font-weight: normal;
|
||||
}
|
||||
/* line 105, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_filter_ul {
|
||||
padding: 0 20px 5px;
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 105, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_filter_ul {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
/* line 112, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_filter_ul li {
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
/* line 114, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_filter_ul li .checker span, #layered_block_left .layered_filter_ul li .radio span {
|
||||
top: 0;
|
||||
}
|
||||
/* line 116, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_filter_ul li label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* line 119, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_filter_ul li label a {
|
||||
font-weight: normal;
|
||||
}
|
||||
/* line 122, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .layered_filter_ul li label a:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* line 128, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left ul li label {
|
||||
cursor: pointer;
|
||||
display: inline;
|
||||
@@ -110,10 +137,12 @@
|
||||
/******************************************************************************
|
||||
Color List Style
|
||||
*******************************************************************************/
|
||||
/* line 136, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left ul.color-group {
|
||||
padding-top: 2px;
|
||||
overflow: hidden;
|
||||
}
|
||||
/* line 140, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left ul.color-group li {
|
||||
width: 50%;
|
||||
float: left;
|
||||
@@ -121,6 +150,7 @@
|
||||
vertical-align: middle;
|
||||
padding-bottom: 9px;
|
||||
}
|
||||
/* line 147, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left ul.color-group li .color-option {
|
||||
border: 1px solid #d6d4d4;
|
||||
height: 15px;
|
||||
@@ -132,15 +162,18 @@
|
||||
-moz-box-shadow: white 0 0 1px 0px inset, white 0 0 0px 1px inset, white 0 0 0px 1px inset, white 0 0 1px 0px inset;
|
||||
box-shadow: white 0 0 1px 0px inset, white 0 0 0px 1px inset, white 0 0 0px 1px inset, white 0 0 1px 0px inset;
|
||||
}
|
||||
/* line 156, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left ul.color-group li .color-option.on {
|
||||
border-color: #000;
|
||||
}
|
||||
/* line 160, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left ul.color-group li .color-option.disable {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
-moz-opacity: 0.5;
|
||||
}
|
||||
|
||||
/* line 170, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_block_left .nomargin a {
|
||||
display: inline;
|
||||
}
|
||||
@@ -148,6 +181,7 @@
|
||||
/**************************************************************************************
|
||||
Layered Form Selects Styles
|
||||
***************************************************************************************/
|
||||
/* line 178, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
#layered_form .select {
|
||||
max-width: 230px;
|
||||
}
|
||||
@@ -155,6 +189,7 @@
|
||||
/**************************************************************************************
|
||||
Range Slider Styles
|
||||
***************************************************************************************/
|
||||
/* line 185, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
||||
background: #fbfbfb;
|
||||
border-color: #d6d4d4;
|
||||
@@ -166,16 +201,19 @@
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
/* line 192, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.ui-state-default.ui-state-hover, .ui-widget-content .ui-state-default.ui-state-hover, .ui-widget-header .ui-state-default.ui-state-hover {
|
||||
background: #555454;
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
/* line 197, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.ui-slider .ui-slider-range {
|
||||
background: #959595;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* line 201, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.ui-corner-all {
|
||||
-webkit-border-radius: 0px;
|
||||
-moz-border-radius: 0px;
|
||||
@@ -187,10 +225,12 @@
|
||||
height: 11px;
|
||||
}
|
||||
|
||||
/* line 207, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.ui-slider-horizontal .ui-slider-handle {
|
||||
top: -0.14em;
|
||||
}
|
||||
|
||||
/* line 208, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_price_range {
|
||||
margin-left: 7px;
|
||||
}
|
||||
@@ -198,37 +238,45 @@
|
||||
/**************************************************************************************
|
||||
Range Input Styles
|
||||
***************************************************************************************/
|
||||
/* line 214, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_price_range_unit {
|
||||
margin-right: 7px;
|
||||
}
|
||||
|
||||
/* line 217, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_slider_container {
|
||||
margin: 6px 0 6px 7px;
|
||||
}
|
||||
|
||||
/* line 220, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_input_range_min, .layered_input_range_max {
|
||||
width: 60px;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* line 224, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_list_selected {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* line 227, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_list {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* line 231, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_list:hover {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* line 234, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.layered_ajax_loader p {
|
||||
margin: 20px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* line 238, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.hide-action {
|
||||
text-align: center;
|
||||
text-align: right;
|
||||
@@ -236,6 +284,7 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* line 244, ../../../sass/modules/blocklayered/blocklayered-15.scss */
|
||||
.hide-action:hover {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,15 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* line 4, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left ul.layered_filter_ul {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
|
||||
/* line 9, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left div.block_content {
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
/* line 13, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left ul {
|
||||
padding-left: 0;
|
||||
max-height: 120px;
|
||||
@@ -16,95 +19,115 @@
|
||||
padding-right: 1px;
|
||||
}
|
||||
|
||||
/* line 22, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_form > div > div {
|
||||
border-bottom: 1px dotted #CCCCCC;
|
||||
padding-bottom: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* line 28, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left .hide-action {
|
||||
display: block;
|
||||
text-align: right;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
/* line 33, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left .hide-action:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* line 37, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left ul li {
|
||||
margin-left: 15px;
|
||||
padding-left: 2px;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
/* line 43, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left #enabled_filters, #layered_url_filter_block {
|
||||
font-size: 10px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Style moved form the template to the css */
|
||||
/* line 50, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left ul li .disabled {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* line 53, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.product_list .warning {
|
||||
margin-top: 13px;
|
||||
}
|
||||
|
||||
/* line 57, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_form .select {
|
||||
width: 165px;
|
||||
}
|
||||
|
||||
/* line 60, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_block_left .color-option.disable {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
-moz-opacity: 0.5;
|
||||
}
|
||||
|
||||
/* line 65, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_form .color-option.on {
|
||||
border: 1px solid red;
|
||||
}
|
||||
|
||||
/* line 68, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
#layered_form input[type=radio] {
|
||||
margin-left: 2px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* line 72, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_price_range {
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
/* line 75, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_price_range_unit {
|
||||
margin-right: 7px;
|
||||
}
|
||||
|
||||
/* line 78, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_slider_container {
|
||||
margin: 6px 0 6px 6px;
|
||||
width: 93%;
|
||||
}
|
||||
|
||||
/* line 81, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_slider {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
/* line 84, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_input_range_min {
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
/* line 87, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_input_range_max {
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
/* line 90, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_list_selected {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* line 93, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.layered_ajax_loader p {
|
||||
margin: 20px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* line 97, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.hide-action {
|
||||
text-align: center;
|
||||
text-align: right;
|
||||
@@ -112,6 +135,7 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* line 103, ../../../sass/modules/blocklayered/blocklayered.scss */
|
||||
.hide-action:hover {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@@ -1,26 +1,39 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* Block newsletter */
|
||||
/* line 5, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#columns #newsletter_block_left .form-group {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* line 8, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#columns #newsletter_block_left .form-group .form-control {
|
||||
max-width: 222px;
|
||||
display: inline-block;
|
||||
margin-right: 6px;
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 1199px) {
|
||||
/* line 8, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#columns #newsletter_block_left .form-group .form-control {
|
||||
margin-bottom: 10px;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
/* line 19, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#columns #newsletter_block_left .success_inline, #columns #newsletter_block_left .warning_inline {
|
||||
text-align: left;
|
||||
padding: 1px 0 0 0;
|
||||
margin-bottom: -19px;
|
||||
}
|
||||
/* line 25, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#columns #newsletter_block_left .success_inline {
|
||||
color: #418B19;
|
||||
}
|
||||
/* line 29, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#columns #newsletter_block_left .warning_inline {
|
||||
color: #f13340;
|
||||
}
|
||||
|
||||
/* Block newsletter footer */
|
||||
/* line 36, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left {
|
||||
overflow: hidden;
|
||||
width: 50%;
|
||||
@@ -28,6 +41,14 @@
|
||||
padding: 13px 15px 7px 15px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 36, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left {
|
||||
background: #3F3F3F;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
/* line 47, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left h4 {
|
||||
background: none;
|
||||
float: left;
|
||||
@@ -37,12 +58,15 @@
|
||||
line-height: 25px;
|
||||
border: none;
|
||||
}
|
||||
/* line 57, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .block_content {
|
||||
overflow: hidden;
|
||||
}
|
||||
/* line 59, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .form-group {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* line 62, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .form-group .form-control {
|
||||
height: 45px;
|
||||
max-width: 267px;
|
||||
@@ -52,11 +76,13 @@
|
||||
padding: 5px 43px 5px 12px;
|
||||
display: inline-block;
|
||||
}
|
||||
/* line 71, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .form-group .form-control:focus {
|
||||
-webkit-box-shadow: black 0px 0px 0px;
|
||||
-moz-box-shadow: black 0px 0px 0px;
|
||||
box-shadow: black 0px 0px 0px;
|
||||
}
|
||||
/* line 76, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .form-group .button-small {
|
||||
margin-left: -41px;
|
||||
border: none;
|
||||
@@ -64,18 +90,22 @@
|
||||
text-align: center;
|
||||
color: #908f8f;
|
||||
}
|
||||
/* line 83, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .form-group .button-small:before {
|
||||
content: "";
|
||||
font-family: 'FontAwesome';
|
||||
font-size: 28px;
|
||||
line-height: 28px;
|
||||
}
|
||||
/* line 90, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .form-group .button-small:hover {
|
||||
color: #fff !important;
|
||||
}
|
||||
/* line 94, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .form-group .button-small span {
|
||||
display: none;
|
||||
}
|
||||
/* line 98, ../../../sass/modules/blocknewsletter/blocknewsletter.scss */
|
||||
#footer #newsletter_block_left .warning_inline {
|
||||
display: inline-block;
|
||||
color: #f13340;
|
||||
|
||||
@@ -1,10 +1,40 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* block top search */
|
||||
/* line 3, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top {
|
||||
position: absolute;
|
||||
right: 420px;
|
||||
top: 50px;
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
/* line 3, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top {
|
||||
right: 295px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 3, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top {
|
||||
right: 207px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 3, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top {
|
||||
right: 0;
|
||||
top: 85px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 3, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top {
|
||||
top: 56px;
|
||||
right: 50%;
|
||||
width: 270px;
|
||||
margin-right: -135px;
|
||||
}
|
||||
}
|
||||
/* line 24, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top .btn.button-search {
|
||||
background: #333;
|
||||
float: left;
|
||||
@@ -14,18 +44,22 @@
|
||||
text-align: center;
|
||||
padding: 10px 0 11px 0;
|
||||
}
|
||||
/* line 33, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top .btn.button-search span {
|
||||
display: none;
|
||||
}
|
||||
/* line 35, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top .btn.button-search:before {
|
||||
content: "";
|
||||
display: block;
|
||||
font-family: "FontAwesome";
|
||||
font-size: 17px;
|
||||
}
|
||||
/* line 42, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top .btn.button-search:hover {
|
||||
color: #6f6f6f;
|
||||
}
|
||||
/* line 45, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top #search_query_top {
|
||||
padding: 0 13px;
|
||||
height: 45px;
|
||||
@@ -34,13 +68,33 @@
|
||||
float: left;
|
||||
margin-right: 1px;
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 45, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top #search_query_top {
|
||||
width: 180px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 45, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top #search_query_top {
|
||||
width: 212px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 45, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
#search_block_top #search_query_top {
|
||||
width: 212px;
|
||||
}
|
||||
}
|
||||
|
||||
/* line 63, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
.ac_results {
|
||||
background: #fff;
|
||||
border: 1px solid #d6d4d4;
|
||||
width: 271px;
|
||||
margin-top: -1px;
|
||||
}
|
||||
/* line 69, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
.ac_results li {
|
||||
padding: 0 10px;
|
||||
font-weight: normal;
|
||||
@@ -48,22 +102,27 @@
|
||||
font-size: 13px;
|
||||
line-height: 22px;
|
||||
}
|
||||
/* line 76, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
.ac_results li.ac_odd {
|
||||
background: #fff;
|
||||
}
|
||||
/* line 80, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
.ac_results li:hover, .ac_results li.ac_over {
|
||||
background: #fbfbfb;
|
||||
}
|
||||
|
||||
/* line 87, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
form#searchbox label {
|
||||
color: #333;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
/* line 92, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
form#searchbox input#search_query_block {
|
||||
border: 1px solid #d6d4d4;
|
||||
height: 18px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
/* line 98, ../../../sass/modules/blocksearch/blocksearch.scss */
|
||||
form#searchbox input#search_button {
|
||||
padding: 1px 4px;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* line 4, ../../../sass/modules/blocktags/blocktags.scss */
|
||||
.tags_block .block_content {
|
||||
overflow: hidden;
|
||||
}
|
||||
/* line 7, ../../../sass/modules/blocktags/blocktags.scss */
|
||||
.tags_block .block_content a {
|
||||
display: inline-block;
|
||||
font-size: 13px;
|
||||
@@ -12,6 +14,7 @@
|
||||
float: left;
|
||||
margin: 0 3px 3px 0;
|
||||
}
|
||||
/* line 17, ../../../sass/modules/blocktags/blocktags.scss */
|
||||
.tags_block .block_content a:hover {
|
||||
color: #333;
|
||||
background: #f6f6f6;
|
||||
|
||||
@@ -1,15 +1,18 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/*** ESSENTIAL STYLES ***/
|
||||
/* line 3, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-contener {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* line 8, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu, .sf-menu * {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* line 13, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu {
|
||||
margin: 50px 0 0;
|
||||
padding: 0;
|
||||
@@ -17,7 +20,20 @@
|
||||
border-bottom: 3px solid #e9e9e9;
|
||||
background: #f6f6f6;
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 13, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu {
|
||||
margin-top: 80px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 13, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu {
|
||||
margin-top: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
/* line 26, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu ul {
|
||||
position: absolute;
|
||||
top: -999em;
|
||||
@@ -26,24 +42,29 @@
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
/* line 32, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu ul li {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* line 35, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu li:hover {
|
||||
visibility: inherit;
|
||||
/* fixes IE7 'sticky bug' */
|
||||
}
|
||||
|
||||
/* line 38, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* line 41, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu > li {
|
||||
float: left;
|
||||
border-right: 1px solid #d6d4d4;
|
||||
margin-bottom: -3px;
|
||||
}
|
||||
/* line 46, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu > li > a {
|
||||
font: 600 18px/22px "Open Sans", sans-serif;
|
||||
text-transform: uppercase;
|
||||
@@ -52,12 +73,14 @@
|
||||
padding: 17px 20px;
|
||||
border-bottom: 3px solid #e9e9e9;
|
||||
}
|
||||
.sf-menu > li.sfHover > a, .sf-menu > li > a:hover, .sf-menu > li.sfHoverForce a {
|
||||
/* line 55, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu > li.sfHover > a, .sf-menu > li > a:hover, .sf-menu > li.sfHoverForce > a {
|
||||
background: #333;
|
||||
border-bottom-color: #666666;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* line 61, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu li li a {
|
||||
display: block;
|
||||
position: relative;
|
||||
@@ -67,16 +90,19 @@
|
||||
font-weight: bold;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
/* line 70, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu li li a:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
font-family: "FontAwesome";
|
||||
padding-right: 10px;
|
||||
}
|
||||
/* line 77, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu li li a:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* line 81, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
.sf-menu li ul {
|
||||
display: none;
|
||||
left: 0;
|
||||
@@ -90,11 +116,13 @@
|
||||
box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 13px;
|
||||
}
|
||||
|
||||
/* line 91, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
ul.sf-menu li:hover li ul,
|
||||
ul.sf-menu li.sfHover li ul {
|
||||
top: -999em;
|
||||
}
|
||||
|
||||
/* line 95, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
ul.sf-menu li li:hover ul,
|
||||
ul.sf-menu li li.sfHover ul {
|
||||
left: 200px;
|
||||
@@ -102,11 +130,13 @@ ul.sf-menu li li.sfHover ul {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
/* line 100, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
ul.sf-menu li li:hover li ul,
|
||||
ul.sf-menu li li.sfHover li ul {
|
||||
top: -999em;
|
||||
}
|
||||
|
||||
/* line 104, ../../../../sass/modules/blocktopmenu/css/superfish-modified.scss */
|
||||
ul.sf-menu li li li:hover ul,
|
||||
ul.sf-menu li li li.sfHover ul {
|
||||
left: 200px;
|
||||
|
||||
@@ -1,24 +1,57 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* block top user information */
|
||||
/* line 5, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user {
|
||||
clear: both;
|
||||
float: right;
|
||||
margin-top: 50px;
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 5, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user {
|
||||
margin-top: 25px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 5, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user {
|
||||
float: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 95px;
|
||||
width: 270px;
|
||||
}
|
||||
}
|
||||
/* line 23, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user #shopping_cart a {
|
||||
padding: 7px 10px 14px 16px;
|
||||
background: #333333;
|
||||
min-width: 270px;
|
||||
/* 200 */
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
color: #777777;
|
||||
text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
|
||||
overflow: hidden;
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 23, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user #shopping_cart a {
|
||||
min-width: 190px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 35, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user #shopping_cart a span.ajax_cart_product_txt, #header_right #header_user #shopping_cart a span.ajax_cart_product_txt_s {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
/* line 41, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user #shopping_cart a b {
|
||||
color: #fff;
|
||||
font: 600 18px/22px "Open Sans", sans-serif;
|
||||
padding-right: 5px;
|
||||
}
|
||||
/* line 47, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user #shopping_cart a:before {
|
||||
content: "";
|
||||
font-family: "FontAwesome";
|
||||
@@ -28,6 +61,7 @@
|
||||
color: #fff;
|
||||
padding-right: 15px;
|
||||
}
|
||||
/* line 57, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user #shopping_cart a:after {
|
||||
content: "";
|
||||
font-family: "FontAwesome";
|
||||
@@ -37,6 +71,7 @@
|
||||
color: #686666;
|
||||
padding: 6px 0 0 0;
|
||||
}
|
||||
/* line 68, ../../../sass/modules/blockuserinfo/blockuserinfo.scss */
|
||||
#header_right #header_user #shopping_cart .ajax_cart_total {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
/* Block Viewed Products */
|
||||
/* line 4, ../../../sass/modules/blockviewed/blockviewed.scss */
|
||||
#viewed-products_block_left li.last_item {
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* module blockwishlist */
|
||||
/* lnk on detail product page */
|
||||
/* line 5, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#primary_block #wishlist_button {
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 8, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#primary_block #wishlist_button:before {
|
||||
content: "";
|
||||
font-family: FontAwesome;
|
||||
@@ -23,48 +25,61 @@
|
||||
}
|
||||
|
||||
/* block */
|
||||
/* line 30, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
/* line 33, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl {
|
||||
font-weight: normal;
|
||||
}
|
||||
/* line 36, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl.products.no-products {
|
||||
font-weight: bold;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 41, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl.products.no-products dt {
|
||||
padding-top: 0px;
|
||||
border-top: none;
|
||||
}
|
||||
/* line 47, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl.products {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 50, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl.products dt {
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 55, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl.products dd {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
/* line 59, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl.products dt.first_item {
|
||||
padding-top: 0px;
|
||||
border-top: none;
|
||||
}
|
||||
/* line 65, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl dt {
|
||||
position: relative;
|
||||
padding-right: 0px;
|
||||
}
|
||||
/* line 70, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block #wishlist_block_list dl dd {
|
||||
margin-left: 24px;
|
||||
}
|
||||
/* line 76, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block .lnk .form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
/* line 79, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block .lnk .form-group select {
|
||||
max-width: 192px;
|
||||
}
|
||||
/* line 85, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block .ajax_cart_block_remove_link {
|
||||
font-size: 14px;
|
||||
line-height: 14px;
|
||||
@@ -73,56 +88,68 @@
|
||||
height: 14px;
|
||||
float: right;
|
||||
}
|
||||
/* line 93, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block .ajax_cart_block_remove_link:hover {
|
||||
color: #515151;
|
||||
}
|
||||
/* line 98, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block .cart_block_product_name {
|
||||
width: 85%;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 104, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block .quantity-formated {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
width: 15px;
|
||||
}
|
||||
|
||||
/* line 110, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#wishlist_block_list .price {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* page in my account ************************************************************************* */
|
||||
/* line 116, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#mywishlist td.wishlist_delete a {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
/* wishlistLinkTop */
|
||||
/* line 122, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#module-blockwishlist-mywishlist #block-order-detail #hideSendWishlist {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/* line 126, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
/* line 130, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list a {
|
||||
display: inline-block;
|
||||
color: #333;
|
||||
margin: 10px 10px 10px 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 136, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list a:hover {
|
||||
color: #515151;
|
||||
}
|
||||
|
||||
/* line 142, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* line 144, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop #hideSendWishlist {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* line 148, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop #showBoughtProducts,
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop #hideBoughtProductsInfos {
|
||||
display: none;
|
||||
@@ -130,49 +157,60 @@
|
||||
|
||||
/* wlp_bought ****************************************** */
|
||||
/* wlp_bought_list */
|
||||
/* line 153, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li {
|
||||
margin-bottom: 30px;
|
||||
/*> 992px*/
|
||||
/*768px x 991px*/
|
||||
}
|
||||
/* line 159, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li .product_image {
|
||||
padding: 9px;
|
||||
border: 1px solid #d6d4d4;
|
||||
margin-bottom: 20px;
|
||||
max-width: 270px;
|
||||
}
|
||||
/* line 166, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li .product-name {
|
||||
margin-bottom: 10px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
/* line 170, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li .product-name small {
|
||||
display: block;
|
||||
font-size: 11px;
|
||||
}
|
||||
/* line 174, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li .product-name small a {
|
||||
font-size: 11px;
|
||||
}
|
||||
/* line 180, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li .product_infos {
|
||||
position: relative;
|
||||
}
|
||||
/* line 183, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li .btn_action .btn {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
/* line 186, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li.first-in-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 190, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li.first-item-of-tablet-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
|
||||
/* line 195, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
.wishlistLinkTop .submit {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
/* line 199, ../../../sass/modules/blockwishlist/blockwishlist.scss */
|
||||
ul.wlp_bought_list li .lnkdel {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
|
||||
@@ -1,73 +1,92 @@
|
||||
/* line 3, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .form-group {
|
||||
line-height: normal;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/* line 7, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .form-group label {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
/* line 9, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .form-group .form-control {
|
||||
width: 263px;
|
||||
}
|
||||
/* line 13, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .form-group.last {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
/* line 15, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .form-group.last input {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
/* line 19, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .table {
|
||||
background: #fff;
|
||||
}
|
||||
/* line 26, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .table thead tr th {
|
||||
background: #fff;
|
||||
padding: 4px 10px 3px 10px;
|
||||
}
|
||||
/* line 34, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .table tbody td {
|
||||
margin: 0;
|
||||
}
|
||||
/* line 37, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .table tbody td.carrier_action {
|
||||
width: 54px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
text-align: center;
|
||||
}
|
||||
/* line 43, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping .table tbody td.carrier_action input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* line 53, ../../../sass/modules/carriercompare/style.scss */
|
||||
#availableCarriers .table {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* line 57, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping ul#carriercompare_errors_list {
|
||||
color: red;
|
||||
}
|
||||
|
||||
/* line 60, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping_form {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
/* line 61, ../../../sass/modules/carriercompare/style.scss */
|
||||
#compare_shipping ul#carriercompare_errors_list li {
|
||||
margin-left: 30px;
|
||||
text-decoration: none;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* line 68, ../../../sass/modules/carriercompare/style.scss */
|
||||
#SE_AjaxDisplay {
|
||||
text-align: center;
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* line 74, ../../../sass/modules/carriercompare/style.scss */
|
||||
#SE_AjaxDisplay img {
|
||||
width: 15px;
|
||||
}
|
||||
|
||||
/* line 79, ../../../sass/modules/carriercompare/style.scss */
|
||||
.SE_SubmitRefreshCard button {
|
||||
float: left;
|
||||
}
|
||||
/* line 82, ../../../sass/modules/carriercompare/style.scss */
|
||||
.SE_SubmitRefreshCard button#carriercompare_submit {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
/* line 87, ../../../sass/modules/carriercompare/style.scss */
|
||||
#carriercompare_errors {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* line 1, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
#favoriteproducts_block_account .favoriteproduct {
|
||||
position: relative;
|
||||
margin-bottom: 14px;
|
||||
@@ -6,6 +7,7 @@
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
}
|
||||
|
||||
/* line 9, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
.favoriteproduct a.product_img_link {
|
||||
border: 1px solid #CCCCCC;
|
||||
display: block;
|
||||
@@ -15,35 +17,41 @@
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* line 17, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
.favoriteproduct p.product_desc {
|
||||
line-height: 16px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* line 23, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
.favoriteproduct .remove {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
/* line 28, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
.favoriteproduct .remove .icon {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* lnk fiche produit */
|
||||
/* line 33, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
#usefull_link_block li#favoriteproducts_block_extra_add {
|
||||
padding-left: 20px;
|
||||
background: url(img/add_favorite.gif) no-repeat 0 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* line 39, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
#usefull_link_block li#favoriteproducts_block_extra_remove {
|
||||
padding-left: 20px;
|
||||
background: url(img/del_favorite.gif) no-repeat 0 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* line 45, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
ul#usefull_link_block li#favoriteproducts_block_extra_added {
|
||||
padding-left: 20px;
|
||||
background: url(img/add_favorite.gif) no-repeat 0 0;
|
||||
@@ -51,6 +59,7 @@ ul#usefull_link_block li#favoriteproducts_block_extra_added {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* line 51, ../../../sass/modules/favoriteproducts/favoriteproducts.scss */
|
||||
ul#usefull_link_block li#favoriteproducts_block_extra_removed {
|
||||
padding-left: 20px;
|
||||
background: url(img/add_favorite.gif) no-repeat 0 0;
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
/******************************************************************************
|
||||
Home Page Slider
|
||||
*******************************************************************************/
|
||||
/* line 18, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
@@ -21,6 +22,7 @@
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
/* line 27, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider #homeslider {
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
@@ -31,6 +33,7 @@
|
||||
********************************************************************************/
|
||||
/** RESET AND LAYOUT
|
||||
===================================*/
|
||||
/* line 37, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider {
|
||||
/** THEME
|
||||
===================================*/
|
||||
@@ -41,27 +44,33 @@
|
||||
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
|
||||
/* IMAGE CAPTIONS */
|
||||
}
|
||||
/* line 38, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
*zoom: 1;
|
||||
}
|
||||
/* line 43, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper a {
|
||||
display: block;
|
||||
}
|
||||
/* line 45, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
}
|
||||
/* line 55, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-viewport {
|
||||
width: 100%;
|
||||
}
|
||||
/* line 61, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-pager,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto {
|
||||
position: absolute;
|
||||
bottom: -30px;
|
||||
width: 100%;
|
||||
}
|
||||
/* line 69, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-loading {
|
||||
min-height: 50px;
|
||||
background: url(images/bx_loader.gif) center center no-repeat white;
|
||||
@@ -72,6 +81,7 @@
|
||||
left: 0;
|
||||
z-index: 2000;
|
||||
}
|
||||
/* line 82, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-pager {
|
||||
text-align: center;
|
||||
font-size: .85em;
|
||||
@@ -80,12 +90,14 @@
|
||||
color: #666;
|
||||
padding-top: 20px;
|
||||
}
|
||||
/* line 92, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-pager .bx-pager-item,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
|
||||
display: inline-block;
|
||||
*zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
/* line 98, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-pager.bx-default-pager a {
|
||||
background: #666;
|
||||
text-indent: -9999px;
|
||||
@@ -98,22 +110,28 @@
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
/* line 112, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
#homepage-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
|
||||
background: #000;
|
||||
}
|
||||
/* line 118, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-prev {
|
||||
right: 60px;
|
||||
}
|
||||
/* line 121, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-prev:after {
|
||||
content: "";
|
||||
}
|
||||
/* line 126, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-next {
|
||||
right: 10px;
|
||||
}
|
||||
/* line 129, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-next:after {
|
||||
content: "";
|
||||
}
|
||||
/* line 134, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
@@ -124,6 +142,7 @@
|
||||
z-index: 9999;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
/* line 144, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a:before {
|
||||
height: 48px;
|
||||
width: 48px;
|
||||
@@ -137,6 +156,7 @@
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
/* line 158, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a:after {
|
||||
display: block;
|
||||
width: 48px;
|
||||
@@ -152,16 +172,20 @@
|
||||
z-index: 2;
|
||||
padding: 16px 0 0 0;
|
||||
}
|
||||
/* line 176, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a:hover:before {
|
||||
background: #333;
|
||||
opacity: 0.83;
|
||||
}
|
||||
/* line 183, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a.disabled {
|
||||
display: none;
|
||||
}
|
||||
/* line 189, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto {
|
||||
text-align: center;
|
||||
}
|
||||
/* line 193, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-start {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
@@ -171,10 +195,12 @@
|
||||
background: url(images/controls.png) -86px -11px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
/* line 204, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-start.active {
|
||||
background-position: -86px 0;
|
||||
}
|
||||
/* line 208, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-stop {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
@@ -184,18 +210,22 @@
|
||||
background: url(images/controls.png) -86px -44px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
/* line 219, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-stop.active {
|
||||
background-position: -86px -33px;
|
||||
}
|
||||
/* line 225, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
|
||||
text-align: left;
|
||||
width: 80%;
|
||||
}
|
||||
/* line 230, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
|
||||
right: 0;
|
||||
width: 35px;
|
||||
}
|
||||
/* line 237, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-caption {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
@@ -204,6 +234,7 @@
|
||||
background: rgba(80, 80, 80, 0.75);
|
||||
width: 100%;
|
||||
}
|
||||
/* line 246, ../../../sass/modules/homeslider/bx_styles.scss */
|
||||
#homepage-slider .bx-wrapper .bx-caption span {
|
||||
color: #fff;
|
||||
font-family: Arial;
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* line 3, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_extra {
|
||||
padding: 8px 10px 10px;
|
||||
font-weight: bold;
|
||||
@@ -8,20 +9,24 @@
|
||||
margin: 39px 0 22px;
|
||||
}
|
||||
|
||||
/* line 11, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices {
|
||||
padding-top: 2px;
|
||||
}
|
||||
/* line 14, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices li {
|
||||
display: inline-block;
|
||||
line-height: 30px;
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 14, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices li {
|
||||
display: block;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
/* line 23, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a {
|
||||
text-decoration: none;
|
||||
color: #777;
|
||||
@@ -33,11 +38,13 @@
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 1199px) {
|
||||
/* line 23, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a {
|
||||
float: none;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
/* line 38, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a:before {
|
||||
background: #929292;
|
||||
border-radius: 50px;
|
||||
@@ -56,19 +63,24 @@
|
||||
/*max 1199px*/
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
/* line 38, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* line 62, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a.reviews:before {
|
||||
content: "";
|
||||
}
|
||||
/* line 63, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a.open-comment-form:before {
|
||||
content: "";
|
||||
}
|
||||
/* line 64, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a:hover {
|
||||
color: #333;
|
||||
}
|
||||
/* line 65, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a.reviews {
|
||||
border-right: 1px solid #d6d4d4;
|
||||
padding-right: 30px;
|
||||
@@ -76,6 +88,7 @@
|
||||
/* min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
/* line 65, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.comments_advices a.reviews {
|
||||
margin-right: 0;
|
||||
padding: 0;
|
||||
@@ -83,43 +96,53 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* line 81, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_extra .comments_note {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
/* line 83, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_extra .comments_note span,
|
||||
#product_comments_block_extra .star_content {
|
||||
float: left;
|
||||
color: #333;
|
||||
}
|
||||
/* line 84, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_extra .star_content {
|
||||
margin-top: 1px;
|
||||
}
|
||||
/* line 85, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_extra div.star {
|
||||
background: url(img/star.png) no-repeat 0 0;
|
||||
}
|
||||
/* line 86, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_extra div.star_on {
|
||||
background: url(img/star.png) no-repeat 0 -13px;
|
||||
}
|
||||
/* line 87, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_extra .comments_advices {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* pop-in add grade/advice ********************************************************************* */
|
||||
/* line 92, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#fancybox-wrap {
|
||||
width: 585px;
|
||||
}
|
||||
|
||||
/* line 93, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#fancybox-content {
|
||||
width: 585px;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
/* line 97, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.new_comment_form_content .intro_form {
|
||||
padding-bottom: 10px;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* line 103, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form {
|
||||
width: 465px;
|
||||
overflow: hidden;
|
||||
@@ -128,13 +151,16 @@
|
||||
/*max 767px*/
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 103, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form {
|
||||
width: 275px;
|
||||
}
|
||||
}
|
||||
/* line 114, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form h2 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/* line 115, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .title {
|
||||
padding: 10px;
|
||||
font-size: 13px;
|
||||
@@ -142,30 +168,38 @@
|
||||
text-transform: uppercase;
|
||||
background: #333333;
|
||||
}
|
||||
/* line 123, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form ul.grade_content {
|
||||
list-style-type: none;
|
||||
}
|
||||
/* line 124, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .grade_content li {
|
||||
width: 50%;
|
||||
}
|
||||
/* line 125, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .product {
|
||||
padding: 15px;
|
||||
}
|
||||
/* line 126, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .product img {
|
||||
border: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 129, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .product .product_desc {
|
||||
line-height: 18px;
|
||||
color: #666666;
|
||||
}
|
||||
/* line 133, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .product .product_desc .product_name {
|
||||
padding: 10px 0 5px;
|
||||
font-size: 13px;
|
||||
color: black;
|
||||
}
|
||||
/* line 139, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .grade_content {
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
/* line 141, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .grade_content span,
|
||||
#new_comment_form .grade_content span {
|
||||
display: inline-block;
|
||||
@@ -174,19 +208,23 @@
|
||||
/* 160 */
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 147, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .grade_content .cancel {
|
||||
margin-right: 5px;
|
||||
}
|
||||
/* line 148, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .new_comment_form_content {
|
||||
padding: 15px;
|
||||
background: #f8f8f8;
|
||||
}
|
||||
/* line 152, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form label {
|
||||
display: block;
|
||||
margin: 12px 0 4px 0;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
/* line 159, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form input,
|
||||
#new_comment_form textarea {
|
||||
padding: 0 5px;
|
||||
@@ -195,122 +233,152 @@
|
||||
border: 1px solid #ccc;
|
||||
background: #fff;
|
||||
}
|
||||
/* line 166, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form textarea {
|
||||
height: 80px;
|
||||
}
|
||||
/* line 170, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form .submit {
|
||||
margin-top: 20px;
|
||||
padding: 0;
|
||||
font-size: 13px;
|
||||
text-align: right;
|
||||
}
|
||||
/* line 177, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form #criterions_list {
|
||||
border-bottom: 1px solid #CCC;
|
||||
padding-bottom: 15px;
|
||||
list-style-type: none;
|
||||
}
|
||||
/* line 182, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form #criterions_list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/* line 185, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form #criterions_list label {
|
||||
display: inline;
|
||||
float: left;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
/* line 191, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form #criterions_list .star_content {
|
||||
float: left;
|
||||
}
|
||||
/* line 196, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#new_comment_form #new_comment_form_footer {
|
||||
margin-top: 20px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* TAB COMMENTS ******************************************************************************** */
|
||||
/* line 202, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab {
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
/* line 204, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment {
|
||||
margin: 0 0 14px;
|
||||
padding-top: 14px;
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 210, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment:first-child {
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
/* line 211, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment div.comment_author {
|
||||
padding: 0 20px;
|
||||
line-height: 18px;
|
||||
}
|
||||
/* line 215, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment div.comment_author span {
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 217, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment div.comment_author span,
|
||||
#product_comments_block_tab div.comment .star_content {
|
||||
float: left;
|
||||
}
|
||||
/* line 220, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment .star_content {
|
||||
margin: 0 0 0 5px;
|
||||
}
|
||||
/* line 222, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.star,
|
||||
#product_comments_block_tab div.star_on {
|
||||
background: url(img/star.png) no-repeat 0 0;
|
||||
}
|
||||
/* line 225, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.star_on {
|
||||
background-position: 0 -13px;
|
||||
}
|
||||
/* line 226, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab .comment_author_infos {
|
||||
clear: both;
|
||||
padding-top: 9px;
|
||||
}
|
||||
/* line 228, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab .comment_author_infos strong {
|
||||
display: block;
|
||||
color: #333;
|
||||
}
|
||||
/* line 229, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab .comment_author_infos em {
|
||||
color: #adadad;
|
||||
}
|
||||
/* line 232, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment div.comment_details {
|
||||
overflow: hidden;
|
||||
border-left: 1px solid #d6d4d4;
|
||||
/*max 767px */
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
/* line 232, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment div.comment_details {
|
||||
border-left: none;
|
||||
}
|
||||
}
|
||||
/* line 244, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment_details ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
}
|
||||
/* line 248, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment_details li {
|
||||
padding: 2px 0 2px;
|
||||
}
|
||||
/* line 250, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment_details li:before {
|
||||
font-family: FontAwesome;
|
||||
content: "";
|
||||
color: #333;
|
||||
margin-right: 8px;
|
||||
}
|
||||
/* line 259, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab div.comment_details .title_block {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
/* line 260, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab a {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 265, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab span.report_btn {
|
||||
cursor: pointer;
|
||||
}
|
||||
/* line 266, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
#product_comments_block_tab span.report_btn:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* line 270, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.fl {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* line 271, ../../../sass/modules/productcomments/productcomments.scss */
|
||||
.fr {
|
||||
float: right;
|
||||
}
|
||||
|
||||
@@ -1,73 +1,92 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* line 2, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form {
|
||||
line-height: 20px;
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
/* line 6, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .form-group {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
/* line 9, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .form-group input.stripe-card-number {
|
||||
max-width: 263px;
|
||||
}
|
||||
/* line 12, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .block-left {
|
||||
float: left;
|
||||
width: 188px;
|
||||
}
|
||||
/* line 16, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .block-left .form-control {
|
||||
width: 72px;
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
}
|
||||
/* line 22, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .block-left a {
|
||||
margin-top: 5px;
|
||||
}
|
||||
/* line 25, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form img.cc-icon {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
}
|
||||
/* line 29, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .stripe-card-cvc-info {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
font-style: italic;
|
||||
text-decoration: underline;
|
||||
}
|
||||
/* line 35, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .stripe-card-cvc-info:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* line 37, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form #uniform-month, #stripe-payment-form .stripe-card-expiry-year.form-control, #stripe-payment-form #uniform-year, #stripe-payment-form .stripe-card-expiry-month.form-control {
|
||||
float: left;
|
||||
}
|
||||
/* line 38, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .stripe-card-expiry-year.form-control {
|
||||
width: 68px;
|
||||
}
|
||||
/* line 39, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form #uniform-month, #stripe-payment-form .stripe-card-expiry-month.form-control {
|
||||
width: 115px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
/* line 43, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .stripe-line {
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 46, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .stripe-line .form-group {
|
||||
clear: left;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
/* line 53, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .ckeckbox {
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
/* line 55, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .ckeckbox .checker {
|
||||
float: left;
|
||||
}
|
||||
/* line 55, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .ckeckbox .checker span {
|
||||
top: 2px;
|
||||
}
|
||||
/* line 56, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form .ckeckbox label {
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
/* line 58, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
a.stripe-card-cvc-info div.cvc-info {
|
||||
background-color: #BDE5F8;
|
||||
border: #00529B solid 1px;
|
||||
@@ -85,32 +104,39 @@ a.stripe-card-cvc-info div.cvc-info {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
/* line 73, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
a.stripe-card-cvc-info:hover div.cvc-info {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* line 74, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
div.cvc-info:hover {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* line 75, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
img.disable {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
/* line 76, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
img.enable {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* line 77, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form-cc .stripe-submit-button-cc {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
/* line 78, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form-cc a {
|
||||
display: inline;
|
||||
font-size: 11px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* line 79, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
div.stripe-payment-errors {
|
||||
margin: 0 0 10px 0;
|
||||
padding: 10px;
|
||||
@@ -120,6 +146,7 @@ div.stripe-payment-errors {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* line 88, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
div.stripe-card-deleted {
|
||||
margin: 0 0 10px 0;
|
||||
padding: 10px;
|
||||
@@ -130,22 +157,27 @@ div.stripe-card-deleted {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/* line 98, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-translations, #stripe-ajax-loader {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* line 99, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe_save_token {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* line 100, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
a#stripe_error {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* line 101, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-payment-form input, #stripe-payment-form select {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* line 102, ../../../sass/modules/stripejs/stripe-prestashop.scss */
|
||||
#stripe-replace-card, #stripe-delete-card {
|
||||
border: none;
|
||||
padding: 0;
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/* line 4, ../sass/my-account.scss */
|
||||
#my-account .addresses-lists {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
/* line 10, ../sass/my-account.scss */
|
||||
#my-account ul.myaccount-link-list li {
|
||||
overflow: hidden;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
/* line 15, ../sass/my-account.scss */
|
||||
#my-account ul.myaccount-link-list li a {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
@@ -31,6 +34,7 @@
|
||||
-o-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
/* line 36, ../sass/my-account.scss */
|
||||
#my-account ul.myaccount-link-list li a i {
|
||||
font-size: 25px;
|
||||
color: #fd7e01;
|
||||
@@ -49,6 +53,7 @@
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
/* line 51, ../sass/my-account.scss */
|
||||
#my-account ul.myaccount-link-list li a span {
|
||||
display: block;
|
||||
padding: 13px 15px 15px 17px;
|
||||
@@ -63,6 +68,7 @@
|
||||
border-bottom-right-radius: 5px;
|
||||
margin-left: 52px;
|
||||
}
|
||||
/* line 62, ../sass/my-account.scss */
|
||||
#my-account ul.myaccount-link-list li a:hover {
|
||||
filter: none;
|
||||
background: #e7e7e7;
|
||||
|
||||
@@ -2,19 +2,24 @@
|
||||
/********************************************************
|
||||
One-Page Checkout Styles
|
||||
********************************************************/
|
||||
/* line 6, ../sass/order-opc.scss */
|
||||
#order-opc {
|
||||
line-height: 20px;
|
||||
}
|
||||
/* line 9, ../sass/order-opc.scss */
|
||||
#order-opc .box {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
/* line 11, ../sass/order-opc.scss */
|
||||
#order-opc .cart_navigation {
|
||||
margin-bottom: 53px;
|
||||
}
|
||||
/* line 15, ../sass/order-opc.scss */
|
||||
#order-opc .page-heading.step-num {
|
||||
position: relative;
|
||||
padding-left: 45px;
|
||||
}
|
||||
/* line 19, ../sass/order-opc.scss */
|
||||
#order-opc .page-heading.step-num span {
|
||||
font-weight: bold;
|
||||
font-size: 42px;
|
||||
@@ -25,56 +30,71 @@
|
||||
left: 10px;
|
||||
top: -14px;
|
||||
}
|
||||
/* line 31, ../sass/order-opc.scss */
|
||||
#order-opc .form-group {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
/* line 34, ../sass/order-opc.scss */
|
||||
#order-opc .form-group .form-control {
|
||||
max-width: 271px;
|
||||
}
|
||||
/* line 37, ../sass/order-opc.scss */
|
||||
#order-opc .lost_password {
|
||||
display: inline-block;
|
||||
text-decoration: underline;
|
||||
margin: 5px 0 14px;
|
||||
}
|
||||
/* line 42, ../sass/order-opc.scss */
|
||||
#order-opc .lost_password:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* line 47, ../sass/order-opc.scss */
|
||||
#order-opc .title_block {
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
padding: 3px 0 6px;
|
||||
}
|
||||
/* line 53, ../sass/order-opc.scss */
|
||||
#order-opc .opc-button {
|
||||
padding: 11px 0 0 0;
|
||||
}
|
||||
/* line 55, ../sass/order-opc.scss */
|
||||
#order-opc ul.bullet {
|
||||
line-height: 22px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
/* line 59, ../sass/order-opc.scss */
|
||||
#order-opc .date-select {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
/* line 61, ../sass/order-opc.scss */
|
||||
#order-opc .opc-add-save {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
margin-top: 20px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
/* line 67, ../sass/order-opc.scss */
|
||||
#order-opc #message {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
/* line 69, ../sass/order-opc.scss */
|
||||
#order-opc #opc_payment_methods {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
/* line 71, ../sass/order-opc.scss */
|
||||
#order-opc #opc_account {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
/* line 73, ../sass/order-opc.scss */
|
||||
#order-opc .address_delivery.select {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
/* line 75, ../sass/order-opc.scss */
|
||||
#order-opc #address_invoice_form.form-group {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
/* line 77, ../sass/order-opc.scss */
|
||||
#new_account_form .id_state, #new_account_form .dni, #new_account_form .postcode {
|
||||
display: none;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,6 +2,7 @@
|
||||
/*******************************************************
|
||||
Product list Styles
|
||||
********************************************************/
|
||||
/* line 10, ../sass/product_list.scss */
|
||||
ul.product_list .availability span {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
@@ -9,27 +10,41 @@ ul.product_list .availability span {
|
||||
padding: 3px 8px 4px 8px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
/* line 17, ../sass/product_list.scss */
|
||||
ul.product_list .availability span.available-now {
|
||||
background: #46a74e;
|
||||
border: 1px solid #36943e;
|
||||
}
|
||||
/* line 22, ../sass/product_list.scss */
|
||||
ul.product_list .availability span.out-of-stock {
|
||||
background: #ff7430;
|
||||
border: 1px solid #ea5e1a;
|
||||
}
|
||||
/* line 29, ../sass/product_list.scss */
|
||||
ul.product_list .color-list-container {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
/* line 34, ../sass/product_list.scss */
|
||||
ul.product_list .color-list-container ul li {
|
||||
display: inline-block;
|
||||
border: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 38, ../sass/product_list.scss */
|
||||
ul.product_list .color-list-container ul li a {
|
||||
display: block;
|
||||
width: 23px;
|
||||
height: 23px;
|
||||
margin: 1px;
|
||||
}
|
||||
/* line 47, ../sass/product_list.scss */
|
||||
ul.product_list .product-image-container {
|
||||
text-align: center;
|
||||
}
|
||||
/* line 50, ../sass/product_list.scss */
|
||||
ul.product_list .product-image-container img {
|
||||
margin: 0 auto;
|
||||
}
|
||||
/* line 54, ../sass/product_list.scss */
|
||||
ul.product_list .product-image-container .quick-view {
|
||||
font: 700 13px/16px Arial, Helvetica, sans-serif;
|
||||
color: #777676;
|
||||
@@ -47,11 +62,13 @@ ul.product_list .product-image-container .quick-view {
|
||||
box-shadow: rgba(0, 0, 0, 0.16) 0 2px 8px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 54, ../sass/product_list.scss */
|
||||
ul.product_list .product-image-container .quick-view {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 54, ../sass/product_list.scss */
|
||||
ul.product_list .product-image-container .quick-view {
|
||||
display: none;
|
||||
}
|
||||
@@ -60,20 +77,25 @@ ul.product_list .product-image-container .quick-view {
|
||||
/*******************************************************
|
||||
Product list(Grid) Styles
|
||||
********************************************************/
|
||||
/* line 83, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li {
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 83, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
/* line 92, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container {
|
||||
background: #fff;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
}
|
||||
/* line 97, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .product-image-container {
|
||||
border: 1px solid #d6d4d4;
|
||||
padding: 9px;
|
||||
@@ -81,12 +103,14 @@ ul.product_list.grid > li .product-container .product-image-container {
|
||||
position: relative;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 97, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .product-image-container {
|
||||
max-width: 290px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
/* line 109, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .product-image-container .content_price {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@@ -96,100 +120,125 @@ ul.product_list.grid > li .product-container .product-image-container .content_p
|
||||
padding: 9px 0;
|
||||
display: none;
|
||||
}
|
||||
/* line 118, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .product-image-container .content_price span {
|
||||
color: #fff;
|
||||
}
|
||||
/* line 124, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container h5 {
|
||||
padding: 0 15px 7px 15px;
|
||||
min-height: 53px;
|
||||
}
|
||||
/* line 129, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .product-desc {
|
||||
display: none;
|
||||
}
|
||||
/* line 133, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .content_price {
|
||||
padding-bottom: 9px;
|
||||
line-height: 21px;
|
||||
}
|
||||
/* line 135, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .old-price, ul.product_list.grid > li .product-container .price, ul.product_list.grid > li .product-container .price-percent-reduction {
|
||||
display: inline-block;
|
||||
}
|
||||
/* line 137, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .product-flags {
|
||||
display: none;
|
||||
}
|
||||
/* line 139, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .old-price {
|
||||
margin-right: 5px;
|
||||
}
|
||||
/* line 141, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .button-container {
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 141, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .button-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* line 147, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .button-container .ajax_add_to_cart_button, ul.product_list.grid > li .product-container .button-container span.button {
|
||||
margin-right: 6px;
|
||||
}
|
||||
/* line 150, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons {
|
||||
background: url(../img/functional-bt-shadow.png) repeat-x;
|
||||
padding: 11px 0 5px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 150, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* line 156, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div {
|
||||
width: 50%;
|
||||
float: left;
|
||||
padding: 3px 0 4px 0;
|
||||
}
|
||||
/* line 161, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div a, ul.product_list.grid > li .product-container .functional-buttons div label {
|
||||
font-weight: bold;
|
||||
color: #777676;
|
||||
cursor: pointer;
|
||||
}
|
||||
/* line 165, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div a:hover, ul.product_list.grid > li .product-container .functional-buttons div label:hover {
|
||||
color: #000;
|
||||
}
|
||||
/* line 168, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist {
|
||||
border-right: 1px solid #d6d4d4;
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
/* line 168, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist {
|
||||
border-right: 0;
|
||||
}
|
||||
/* line 173, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist i {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 168, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist {
|
||||
border-right: 0;
|
||||
}
|
||||
/* line 179, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist i {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* line 185, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
font-family: 'FontAwesome';
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
/* line 185, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 185, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* line 200, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare.compare.checked:before {
|
||||
content: "";
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 209, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container:hover {
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
@@ -197,25 +246,31 @@ ul.product_list.grid > li .product-container .functional-buttons div.compare.com
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
/* line 214, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container:hover .content_price {
|
||||
display: none;
|
||||
}
|
||||
/* line 217, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container:hover .product-image-container .content_price {
|
||||
display: block;
|
||||
}
|
||||
/* line 220, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container:hover .product-image-container .quick-view {
|
||||
display: block;
|
||||
}
|
||||
/* line 223, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li .product-container:hover .button-container, ul.product_list.grid > li .product-container:hover .functional-buttons {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
/* line 229, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li.first-in-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 991px) {
|
||||
/* line 233, ../sass/product_list.scss */
|
||||
ul.product_list.grid > li.first-item-of-tablet-line {
|
||||
clear: left;
|
||||
}
|
||||
@@ -225,47 +280,58 @@ ul.product_list.grid > li .product-container .functional-buttons div.compare.com
|
||||
Product list(List) Styles
|
||||
********************************************************/
|
||||
@media (max-width: 479px) {
|
||||
/* line 245, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .left-block {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
/* line 250, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .product-container {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
padding: 30px 0 30px;
|
||||
}
|
||||
/* line 255, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .product-image-container {
|
||||
position: relative;
|
||||
border: 1px solid #d6d4d4;
|
||||
padding: 9px;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 255, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .product-image-container {
|
||||
max-width: 290px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
/* line 263, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .product-image-container .content_price {
|
||||
display: none !important;
|
||||
}
|
||||
/* line 267, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .product-flags {
|
||||
color: #333333;
|
||||
margin: -5px 0 10px 0;
|
||||
}
|
||||
/* line 271, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .product-flags .discount {
|
||||
color: #f13340;
|
||||
}
|
||||
/* line 275, ../sass/product_list.scss */
|
||||
ul.product_list.list > li h5 {
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
/* line 277, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .product-desc {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 279, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .center-block {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
/* line 287, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content {
|
||||
margin: 0;
|
||||
border-left: 1px solid #d6d4d4;
|
||||
@@ -274,60 +340,79 @@ ul.product_list.list > li .product-desc {
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
/* line 287, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content {
|
||||
padding-top: 20px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 287, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content {
|
||||
padding-top: 5px;
|
||||
}
|
||||
}
|
||||
/* line 302, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
/* line 302, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price {
|
||||
padding-top: 13px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 302, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price {
|
||||
padding-top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
/* line 313, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price span {
|
||||
display: inline-block;
|
||||
margin-top: -4px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
/* line 318, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price span.old-price {
|
||||
margin-right: 8px;
|
||||
}
|
||||
/* line 323, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container {
|
||||
overflow: hidden;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 323, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
/* line 329, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container .btn {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
/* line 329, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container .btn {
|
||||
float: left;
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
/* line 337, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons {
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
/* line 337, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons {
|
||||
clear: both;
|
||||
}
|
||||
/* line 344, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons > div {
|
||||
float: left;
|
||||
padding-top: 0 !important;
|
||||
@@ -335,19 +420,23 @@ ul.product_list.list > li .right-block .right-block-content .button-container .b
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 337, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons {
|
||||
float: none;
|
||||
display: inline-block;
|
||||
}
|
||||
/* line 356, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons a i, ul.product_list.list > li .right-block .right-block-content .functional-buttons a:before, ul.product_list.list > li .right-block .right-block-content .functional-buttons label i, ul.product_list.list > li .right-block .right-block-content .functional-buttons label:before {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
/* line 359, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons a, ul.product_list.list > li .right-block .right-block-content .functional-buttons label {
|
||||
font-weight: bold;
|
||||
color: #777676;
|
||||
cursor: pointer;
|
||||
}
|
||||
/* line 364, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons a i, ul.product_list.list > li .right-block .right-block-content .functional-buttons label i {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
@@ -364,15 +453,19 @@ ul.product_list.list > li .right-block .right-block-content .functional-buttons
|
||||
border-radius: 100px;
|
||||
margin-right: 3px;
|
||||
}
|
||||
/* line 376, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons a:hover, ul.product_list.list > li .right-block .right-block-content .functional-buttons label:hover {
|
||||
color: #333333;
|
||||
}
|
||||
/* line 379, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons a:hover i, ul.product_list.list > li .right-block .right-block-content .functional-buttons label:hover i {
|
||||
background: #333333;
|
||||
}
|
||||
/* line 385, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons .compare {
|
||||
padding-top: 10px;
|
||||
}
|
||||
/* line 390, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons .compare label:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
@@ -391,18 +484,22 @@ ul.product_list.list > li .right-block .right-block-content .functional-buttons
|
||||
padding: 4px 0 0 0;
|
||||
color: #fff;
|
||||
}
|
||||
/* line 405, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons .compare label:hover {
|
||||
color: #333333;
|
||||
}
|
||||
/* line 408, ../sass/product_list.scss */
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons .compare label:hover:before {
|
||||
background: #333333;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 426, ../sass/product_list.scss */
|
||||
ul.product_list.list > li:hover .product-image-container .quick-view {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
/* line 243, ../sass/product_list.scss */
|
||||
ul.product_list.list > li {
|
||||
text-align: center;
|
||||
}
|
||||
@@ -411,15 +508,38 @@ ul.product_list.list > li .right-block .right-block-content .functional-buttons
|
||||
/*******************************************************
|
||||
Product list(Index page) Styles
|
||||
********************************************************/
|
||||
/* line 443, ../sass/product_list.scss */
|
||||
#index ul.product_list.tab-pane > li {
|
||||
padding-bottom: 35px;
|
||||
margin-bottom: 50px;
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
/* line 443, ../sass/product_list.scss */
|
||||
#index ul.product_list.tab-pane > li {
|
||||
/* min 1200px */
|
||||
padding-bottom: 35px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
}
|
||||
/* line 451, ../sass/product_list.scss */
|
||||
#index ul.product_list.tab-pane > li .availability {
|
||||
display: none;
|
||||
}
|
||||
#index ul.product_list.tab-pane > li.last-line {
|
||||
border: none;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
@media (min-width: 1200px) {
|
||||
/* line 454, ../sass/product_list.scss */
|
||||
#index ul.product_list.tab-pane > li.last-line {
|
||||
border: none;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
/* line 462, ../sass/product_list.scss */
|
||||
#index ul.product_list.tab-pane > li.first-item-of-tablet-line {
|
||||
clear: none;
|
||||
}
|
||||
/* line 463, ../sass/product_list.scss */
|
||||
#index ul.product_list.tab-pane > li.first-item-of-mobile-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
/* line 1, ../sass/rtl.scss */
|
||||
* {
|
||||
direction: rtl !important;
|
||||
}
|
||||
|
||||
/* line 2, ../sass/rtl.scss */
|
||||
#page {
|
||||
text-align: right !important;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
/*TMP*/
|
||||
/* line 3, ../sass/scenes.scss */
|
||||
#scenes .cluetip span {
|
||||
background: transparent url(../img/icon/cible.gif) no-repeat scroll center center;
|
||||
color: black;
|
||||
@@ -12,6 +13,7 @@
|
||||
}
|
||||
|
||||
/*TMP*/
|
||||
/* line 15, ../sass/scenes.scss */
|
||||
.thumbs_banner {
|
||||
margin: 10px auto;
|
||||
padding: 2px 0;
|
||||
@@ -21,6 +23,7 @@
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
/* line 24, ../sass/scenes.scss */
|
||||
.thumbs_banner .space-keeper {
|
||||
width: 21px;
|
||||
float: left;
|
||||
@@ -28,6 +31,7 @@
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* line 31, ../sass/scenes.scss */
|
||||
.thumbs_banner .space-keeper a.prev {
|
||||
display: none;
|
||||
width: 21px;
|
||||
@@ -37,24 +41,29 @@
|
||||
background: url(../img/icon/serial_scroll_left.gif) no-repeat 0 0 #eeeeee;
|
||||
}
|
||||
|
||||
/* line 39, ../sass/scenes.scss */
|
||||
#scenes_list {
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
width: 478px;
|
||||
}
|
||||
|
||||
/* line 44, ../sass/scenes.scss */
|
||||
#scenes_list ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
/* line 48, ../sass/scenes.scss */
|
||||
#scenes_list li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* line 52, ../sass/scenes.scss */
|
||||
#scenes_list a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* line 56, ../sass/scenes.scss */
|
||||
.thumbs_banner a.next {
|
||||
float: left;
|
||||
display: block;
|
||||
@@ -66,16 +75,19 @@
|
||||
}
|
||||
|
||||
/* Cluetip design ****************************************************************************** */
|
||||
/* line 67, ../sass/scenes.scss */
|
||||
#scenes .screen_scene {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* line 71, ../sass/scenes.scss */
|
||||
#scenes a.cluetip {
|
||||
display: block;
|
||||
position: absolute;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* line 77, ../sass/scenes.scss */
|
||||
.cluetip-product_scene {
|
||||
padding: 10px;
|
||||
border: 7px solid #999;
|
||||
@@ -87,17 +99,20 @@
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
/* line 88, ../sass/scenes.scss */
|
||||
.cluetip-product_scene #cluetip-close {
|
||||
text-align: right;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* line 93, ../sass/scenes.scss */
|
||||
.cluetip-product_scene img {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
border: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
/* line 98, ../sass/scenes.scss */
|
||||
.cluetip-product_scene .title_block {
|
||||
display: inline-block;
|
||||
margin-bottom: 5px;
|
||||
@@ -105,16 +120,19 @@
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* line 105, ../sass/scenes.scss */
|
||||
.cluetip-product_scene .clear {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* line 106, ../sass/scenes.scss */
|
||||
.cluetip-product_scene .clear a {
|
||||
/*float:left;*/
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
/* line 111, ../sass/scenes.scss */
|
||||
.cluetip-product_scene p.description {
|
||||
float: left;
|
||||
padding: 0;
|
||||
@@ -122,6 +140,7 @@
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
/* line 118, ../sass/scenes.scss */
|
||||
.cluetip-product_scene div.prices {
|
||||
float: right;
|
||||
position: relative;
|
||||
@@ -129,6 +148,7 @@
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* line 124, ../sass/scenes.scss */
|
||||
.cluetip-product_scene .new {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
@@ -142,6 +162,7 @@
|
||||
background: none repeat scroll 0 0 #9b0000;
|
||||
}
|
||||
|
||||
/* line 136, ../sass/scenes.scss */
|
||||
.cluetip-product_scene .price {
|
||||
padding-top: 18px;
|
||||
font-weight: bold;
|
||||
@@ -149,6 +170,7 @@
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
/* line 142, ../sass/scenes.scss */
|
||||
.cluetip-product_scene .on_sale, .cluetip-product_scene .discount {
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
|
||||
@@ -2,27 +2,33 @@
|
||||
/******************************************************************
|
||||
Sitemap Page Styles
|
||||
*******************************************************************/
|
||||
/* line 9, ../sass/sitemap.scss */
|
||||
#sitemap .sitemap_block .page-subheading {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
/* line 13, ../sass/sitemap.scss */
|
||||
#sitemap .sitemap_block li {
|
||||
line-height: 16px;
|
||||
padding-bottom: 11px;
|
||||
}
|
||||
/* line 19, ../sass/sitemap.scss */
|
||||
#sitemap .sitemap_block li a:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
font-family: 'FontAwesome';
|
||||
padding-right: 10px;
|
||||
}
|
||||
/* line 26, ../sass/sitemap.scss */
|
||||
#sitemap .sitemap_block li a:hover {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* line 34, ../sass/sitemap.scss */
|
||||
#listpage_content div.tree_top {
|
||||
padding-left: 27px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
/* line 40, ../sass/sitemap.scss */
|
||||
#listpage_content div.tree_top a:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
@@ -30,25 +36,31 @@
|
||||
font-size: 20px;
|
||||
color: #333;
|
||||
}
|
||||
/* line 49, ../sass/sitemap.scss */
|
||||
#listpage_content div.tree_top a:hover:before {
|
||||
color: #515151;
|
||||
}
|
||||
|
||||
/* line 56, ../sass/sitemap.scss */
|
||||
ul.tree {
|
||||
padding-left: 24px;
|
||||
}
|
||||
/* line 59, ../sass/sitemap.scss */
|
||||
ul.tree li {
|
||||
margin: 0 0 0 21px;
|
||||
padding: 5px 0 0 33px;
|
||||
border-left: 1px solid #d6d4d4;
|
||||
background: url(../img/sitemap-horizontal.png) no-repeat left 15px transparent;
|
||||
}
|
||||
/* line 65, ../sass/sitemap.scss */
|
||||
ul.tree li a:hover {
|
||||
font-weight: bold;
|
||||
}
|
||||
/* line 70, ../sass/sitemap.scss */
|
||||
ul.tree > li {
|
||||
margin: 0 0 0 11px;
|
||||
}
|
||||
/* line 74, ../sass/sitemap.scss */
|
||||
ul.tree li.last {
|
||||
border: medium none;
|
||||
background: url(../img/sitemap-last.png) no-repeat 0px -4px transparent;
|
||||
|
||||
@@ -2,96 +2,120 @@
|
||||
/***********************************************************
|
||||
Stores Page Styles
|
||||
************************************************************/
|
||||
/* line 8, ../sass/stores.scss */
|
||||
#stores #map {
|
||||
width: 100%;
|
||||
height: 447px;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
/* line 14, ../sass/stores.scss */
|
||||
#stores input#addressInput {
|
||||
display: inline-block;
|
||||
width: 269px;
|
||||
}
|
||||
/* line 19, ../sass/stores.scss */
|
||||
#stores .address-input {
|
||||
float: left;
|
||||
margin-right: 19px;
|
||||
/* max 767px */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 19, ../sass/stores.scss */
|
||||
#stores .address-input {
|
||||
width: 100%;
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
}
|
||||
/* line 28, ../sass/stores.scss */
|
||||
#stores .address-input label {
|
||||
margin-right: 5px;
|
||||
}
|
||||
/* line 31, ../sass/stores.scss */
|
||||
#stores .radius-input {
|
||||
float: left;
|
||||
line-height: 23px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
/* line 36, ../sass/stores.scss */
|
||||
#stores .radius-input label, #stores .radius-input .selector {
|
||||
float: left;
|
||||
}
|
||||
/* line 40, ../sass/stores.scss */
|
||||
#stores .radius-input label {
|
||||
margin-right: 10px;
|
||||
}
|
||||
/* line 44, ../sass/stores.scss */
|
||||
#stores .radius-input #radiusSelect {
|
||||
width: 78px;
|
||||
}
|
||||
/* line 49, ../sass/stores.scss */
|
||||
#stores .store-content {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
/* line 55, ../sass/stores.scss */
|
||||
#stores .store-content-select .selector {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
||||
/* line 59, ../sass/stores.scss */
|
||||
#stores .store-content-select.active {
|
||||
padding-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
/* line 64, ../sass/stores.scss */
|
||||
#stores .store-content-select.active .selector {
|
||||
visibility: visible;
|
||||
display: block;
|
||||
}
|
||||
/* line 71, ../sass/stores.scss */
|
||||
#stores .store-title {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
/* line 73, ../sass/stores.scss */
|
||||
#stores label {
|
||||
font-weight: normal;
|
||||
color: #777777;
|
||||
}
|
||||
/* line 78, ../sass/stores.scss */
|
||||
#stores #stores_loader {
|
||||
display: none;
|
||||
margin-left: 5px;
|
||||
}
|
||||
/* line 83, ../sass/stores.scss */
|
||||
#stores #locationSelect {
|
||||
max-width: 356px;
|
||||
visibility: hidden;
|
||||
}
|
||||
/* line 88, ../sass/stores.scss */
|
||||
#stores #stores-table {
|
||||
display: none;
|
||||
}
|
||||
/* line 93, ../sass/stores.scss */
|
||||
#stores #stores-table tbody td {
|
||||
padding: 20px;
|
||||
}
|
||||
/* line 96, ../sass/stores.scss */
|
||||
#stores #stores-table tbody td.num {
|
||||
background: #fbfbfb;
|
||||
width: 46px;
|
||||
}
|
||||
/* line 101, ../sass/stores.scss */
|
||||
#stores #stores-table tbody td.name {
|
||||
/* max 767px */
|
||||
}
|
||||
/* line 103, ../sass/stores.scss */
|
||||
#stores #stores-table tbody td.name span {
|
||||
padding-left: 15px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
/* line 108, ../sass/stores.scss */
|
||||
#stores #stores-table tbody td.name img {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* line 115, ../sass/stores.scss */
|
||||
.store-image img {
|
||||
width: 100%;
|
||||
min-width: 100px;
|
||||
|
||||
@@ -109,7 +109,7 @@
|
||||
<i>{l s='For example: QIIXJXNUI or QIIXJXNUI#1'}</i>
|
||||
</div>
|
||||
<div class="text form-group">
|
||||
<label>{l s='Email'}</label>
|
||||
<label>{l s='Email:'}</label>
|
||||
<input class="form-control" type="text" name="email" value="{if isset($smarty.get.email)}{$smarty.get.email|escape:'htmlall':'UTF-8'}{else}{if isset($smarty.post.email)}{$smarty.post.email|escape:'htmlall':'UTF-8'}{/if}{/if}" />
|
||||
</div>
|
||||
<p>
|
||||
|
||||
@@ -159,7 +159,7 @@
|
||||
<div class="current">
|
||||
<input type="hidden" name="id_currency" id="id_currency" value=""/>
|
||||
<input type="hidden" name="SubmitCurrency" value="" />
|
||||
{l s='Currency' mod='blockcurrencies'} :
|
||||
<span class="cur-label">{l s='Currency' mod='blockcurrencies'} :</span>
|
||||
{foreach from=$currencies key=k item=f_currency}
|
||||
{if $cookie->id_currency == $f_currency.id_currency}<strong>{$f_currency.iso_code}</strong>{/if}
|
||||
{/foreach}
|
||||
@@ -184,7 +184,7 @@
|
||||
</div>
|
||||
<div class="container header-row-2">
|
||||
<a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">
|
||||
<img class="logo" src="{$logo_url}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if}/>
|
||||
<img class="logo img-responsive" src="{$logo_url}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if}/>
|
||||
</a>
|
||||
<div id="header_right">
|
||||
{$HOOK_TOP}
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
<th class="first_item">{l s='Order reference'}</th>
|
||||
<th class="item">{l s='Date'}</th>
|
||||
<th data-hide="phone" class="item">{l s='Total price'}</th>
|
||||
<th data-hide="phone,tablet" class="item">{l s='Payment: '}</th>
|
||||
<th data-hide="phone,tablet" class="item">{l s='Payment'}</th>
|
||||
<th class="item">{l s='Status'}</th>
|
||||
<th data-hide="phone,tablet" class="item">{l s='Invoice'}</th>
|
||||
<th data-hide="phone,tablet" class="last_item"> </th>
|
||||
@@ -55,14 +55,14 @@
|
||||
<td class="history_date bold">{dateFormat date=$order.date_add full=0}</td>
|
||||
<td class="history_price"><span class="price">{displayPrice price=$order.total_paid currency=$order.id_currency no_utf8=false convert=false}</span></td>
|
||||
<td class="history_method">{$order.payment|escape:'htmlall':'UTF-8'}</td>
|
||||
<td class="history_state">{if isset($order.order_state)}{$order.order_state|escape:'htmlall':'UTF-8'}{/if}</td>
|
||||
<td class="history_state">{if isset($order.order_state)}<span class="label{if $order.id_order_state == 1 || $order.id_order_state == 10 || $order.id_order_state == 11} label-info{elseif $order.id_order_state == 5 || $order.id_order_state == 2 || $order.id_order_state == 12} label-success{elseif $order.id_order_state == 6 || $order.id_order_state == 7 || $order.id_order_state == 8} label-danger{elseif $order.id_order_state == 3 || $order.id_order_state == 9 || $order.id_order_state == 4} label-warning{/if}">{$order.order_state|escape:'htmlall':'UTF-8'}</span>{/if}</td>
|
||||
<td class="history_invoice">
|
||||
{if (isset($order.invoice) && $order.invoice && isset($order.invoice_number) && $order.invoice_number) && isset($invoiceAllowed) && $invoiceAllowed == true}
|
||||
<a class="link-button" href="{$link->getPageLink('pdf-invoice', true, NULL, "id_order={$order.id_order}")|escape:'html'}" title="{l s='Invoice'}" class="_blank"><i class="icon-file-text large"></i>{l s='PDF'}</a>
|
||||
{else}-{/if}
|
||||
</td>
|
||||
<td class="history_detail">
|
||||
<a class="btn btn-default button button-small" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true)|escape:'html'}');"><span>{l s='details'}<i class="icon-chevron-right right"></i></span></a>
|
||||
<a class="btn btn-default button button-small" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true)|escape:'html'}');"><span>{l s='Details'}<i class="icon-chevron-right right"></i></span></a>
|
||||
{if isset($opc) && $opc}
|
||||
<a class="link-button" href="{$link->getPageLink('order-opc', true, NULL, "submitReorder&id_order={$order.id_order}")|escape:'html'}" title="{l s='Reorder'}">
|
||||
{else}
|
||||
|
||||
@@ -52,15 +52,15 @@
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="isName" type="text" id="firstname" name="firstname" value="{$smarty.post.firstname}" />
|
||||
<input class="form-control" type="text" id="firstname" name="firstname" value="{$smarty.post.firstname}" />
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="isName" type="text" name="lastname" id="lastname" value="{$smarty.post.lastname}" />
|
||||
<input class="form-control" type="text" name="lastname" id="lastname" value="{$smarty.post.lastname}" />
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="email">{l s='E-mail address'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" data-validate="isEmail" type="email" name="email" id="email" value="{$smarty.post.email}" />
|
||||
<input class="form-control" type="email" name="email" id="email" value="{$smarty.post.email}" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>{l s='Date of Birth'}</label>
|
||||
@@ -107,15 +107,15 @@
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="old_passwd">{l s='Current Password'} <sup>*</sup></label>
|
||||
<input class="is_required validate form-control" type="password" data-validate="isPasswd" name="old_passwd" id="old_passwd" />
|
||||
<input class="form-control" type="password" name="old_passwd" id="old_passwd" />
|
||||
</div>
|
||||
<div class="password form-group">
|
||||
<label for="passwd">{l s='New Password'}</label>
|
||||
<input class="is_required validate form-control" type="password" data-validate="isPasswd" name="passwd" id="passwd" />
|
||||
<input class="form-control" type="password" name="passwd" id="passwd" />
|
||||
</div>
|
||||
<div class="password form-group">
|
||||
<label for="confirmation">{l s='Confirmation'}</label>
|
||||
<input class="is_required validate form-control" type="password" data-validate="isPasswd" name="confirmation" id="confirmation" />
|
||||
<input class="form-control" type="password" name="confirmation" id="confirmation" />
|
||||
</div>
|
||||
{if $newsletter}
|
||||
<div class="checkbox">
|
||||
|
||||
@@ -441,6 +441,7 @@ $(function() {
|
||||
updateState();
|
||||
updateNeedIDNumber();
|
||||
updateZipCode();
|
||||
$("select.form-control,input[type='checkbox'],input[type='radio']").uniform();
|
||||
});
|
||||
$('#opc_guestCheckout').click(function() {
|
||||
$('.is_customer_param').hide();
|
||||
@@ -667,7 +668,7 @@ $(function() {
|
||||
$('#submitAccount').show();
|
||||
}
|
||||
});
|
||||
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
});
|
||||
|
||||
function bindCheckbox()
|
||||
@@ -683,6 +684,7 @@ function bindCheckbox()
|
||||
}
|
||||
else
|
||||
$('#opc_invoice_address').slideUp('slow');
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
}
|
||||
|
||||
function bindInputs()
|
||||
@@ -718,11 +720,14 @@ function bindInputs()
|
||||
$('#opc_delivery_methods-overlay').fadeOut('slow');
|
||||
}
|
||||
});
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
});
|
||||
|
||||
// Recyclable checkbox
|
||||
$('#recyclable').click(function() {
|
||||
updateCarrierSelectionAndGift();
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
|
||||
});
|
||||
|
||||
// Gift checkbox update
|
||||
@@ -732,10 +737,12 @@ function bindInputs()
|
||||
else
|
||||
$('#gift_div').hide();
|
||||
updateCarrierSelectionAndGift();
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
});
|
||||
|
||||
if ($('#gift').is(':checked'))
|
||||
$('#gift_div').show();
|
||||
|
||||
else
|
||||
$('#gift_div').hide();
|
||||
|
||||
@@ -854,6 +861,7 @@ function multishippingMode(it)
|
||||
}
|
||||
});
|
||||
}
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
@@ -867,4 +875,5 @@ $(document).ready(function() {
|
||||
}
|
||||
if (typeof(open_multishipping_fancybox) !== 'undefined' && open_multishipping_fancybox)
|
||||
$('#link_multishipping_form').click();
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
});
|
||||
@@ -1,33 +0,0 @@
|
||||
/*
|
||||
* 2007-2013 PrestaShop
|
||||
*
|
||||
* 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 PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
$(document).on('keyup', 'input.validate, textarea.validate', function() {
|
||||
if ($(this).hasClass('is_required') || $(this).val().length)
|
||||
{
|
||||
if (window['validate_'+$(this).attr('data-validate')]($(this).val()))
|
||||
$(this).parent().removeClass('form-error').addClass('form-ok');
|
||||
else
|
||||
$(this).parent().addClass('form-error').removeClass('form-ok');
|
||||
}
|
||||
});
|
||||
@@ -202,7 +202,7 @@ $_LANG['order-follow_8cf04a9734132302f96da8e113e80ce5'] = 'Home';
|
||||
$_LANG['order-opc-new-account_936ccdb97115e9f35a11d35e3d5b5cad'] = 'Click here';
|
||||
$_LANG['order-opc-new-account_b357b524e740bc85b9790a0712d84a30'] = 'Email address';
|
||||
$_LANG['order-opc-new-account_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Forgot your password?';
|
||||
$_LANG['order-opc-new-account_99dea78007133396a7b8ed70578ac6ae'] = 'Login';
|
||||
$_LANG['order-opc-new-account_99dea78007133396a7b8ed70578ac6ae'] = 'Sign in';
|
||||
$_LANG['order-opc-new-account_766d4aaf3e045538be23f9a9e17a1593'] = 'Instant checkout';
|
||||
$_LANG['order-opc-new-account_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
|
||||
$_LANG['order-opc-new-account_b78a3223503896721cca1303f776159b'] = 'Title';
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
*}
|
||||
|
||||
<!-- Block categories module -->
|
||||
<section class="blockcategories_footer footer-block col-xs-12 col-md-2">
|
||||
<section class="blockcategories_footer footer-block col-xs-12 col-sm-2">
|
||||
<h4>{l s='Categories' mod='blockcategories'}</h4>
|
||||
<div class="category_footer">
|
||||
<div class="list">
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
<!-- /Block CMS module -->
|
||||
{else}
|
||||
<!-- MODULE Block footer -->
|
||||
<section class="footer-block col-xs-12 col-md-2" id="block_various_links_footer">
|
||||
<section class="footer-block col-xs-12 col-sm-2" id="block_various_links_footer">
|
||||
<h4>{l s='Information' mod='blockcms'}</h4>
|
||||
<ul>
|
||||
{if !$PS_CATALOG_MODE}<li class="first_item"><a href="{$link->getPageLink('prices-drop')|escape:'html'}" title="{l s='Specials' mod='blockcms'}">{l s='Specials' mod='blockcms'}</a></li>{/if}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
*}
|
||||
|
||||
<!-- MODULE Block contact infos -->
|
||||
<section id="block_contact_infos" class="footer-block col-xs-12 col-md-4">
|
||||
<section id="block_contact_infos" class="footer-block col-xs-12 col-sm-4">
|
||||
<div>
|
||||
<h4>{l s='Store Information' mod='blockcontactinfos'}</h4>
|
||||
<ul>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
*}
|
||||
|
||||
<!-- Block myaccount module -->
|
||||
<section class="footer-block col-xs-12 col-md-4">
|
||||
<section class="footer-block col-xs-12 col-sm-4">
|
||||
<h4><a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='Manage my customer account' mod='blockmyaccountfooter'}" rel="nofollow">{l s='My account' mod='blockmyaccountfooter'}</a></h4>
|
||||
<div class="block_content">
|
||||
<ul class="bullet">
|
||||
|
||||
@@ -32,3 +32,4 @@
|
||||
</ul>
|
||||
<h4>{l s='Follow us:' mod='blocksocial'}</h4>
|
||||
</section>
|
||||
<div class="clearfix"></div>
|
||||
|
||||
@@ -37,7 +37,7 @@ $(function(){
|
||||
|
||||
{if ($logged == 1 || $nbComments != 0) && !$content_only}
|
||||
</div><!-- Close the OosHook -->
|
||||
<div id="product_comments_block_extra">
|
||||
<div id="product_comments_block_extra" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
||||
{if $nbComments != 0}
|
||||
<div class="comments_note clearfix">
|
||||
<span>{l s='Rating' mod='productcomments'} </span>
|
||||
@@ -49,13 +49,14 @@ $(function(){
|
||||
<div class="star star_on"></div>
|
||||
{/if}
|
||||
{/section}
|
||||
<span class="hidden" itemprop="ratingValue">{$averageTotal}</span>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<ul class="comments_advices">
|
||||
{if $nbComments != 0}
|
||||
<li><a href="#idTab5" class="reviews">{l s='Read reviews' mod='productcomments'} ({$nbComments})</a></li>
|
||||
<li><a href="#idTab5" class="reviews">{l s='Read reviews' mod='productcomments'} (<span itemprop="reviewCount">{$nbComments}</span>)</a></li>
|
||||
{/if}
|
||||
{if ($too_early == false AND ($logged OR $allow_guests))}
|
||||
<li><a class="open-comment-form" href="#new_comment_form">{l s='Write a review' mod='productcomments'}</a></li>
|
||||
|
||||
@@ -64,8 +64,8 @@
|
||||
<tbody>
|
||||
{foreach from=$order_history item=state name="orderStates"}
|
||||
<tr class="{if $smarty.foreach.orderStates.first}first_item{elseif $smarty.foreach.orderStates.last}last_item{/if} {if $smarty.foreach.orderStates.index % 2}alternate_item{else}item{/if}">
|
||||
<td>{dateFormat date=$state.date_add full=1}</td>
|
||||
<td>{$state.ostate_name|escape:'htmlall':'UTF-8'}</td>
|
||||
<td class="step-by-step-date">{dateFormat date=$state.date_add full=0}</td>
|
||||
<td><span class="label{if $state.id_order_state == 1 || $state.id_order_state == 10 || $state.id_order_state == 11} label-info{elseif $state.id_order_state == 5 || $state.id_order_state == 2 || $state.id_order_state == 12} label-success{elseif $state.id_order_state == 6 || $state.id_order_state == 7 || $state.id_order_state == 8} label-danger{elseif $state.id_order_state == 3 || $state.id_order_state == 9 || $state.id_order_state == 4} label-warning{/if}">{$state.ostate_name|escape:'htmlall':'UTF-8'}</span></td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
@@ -80,9 +80,23 @@
|
||||
|
||||
<div class="adresses_bloc">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<ul class="address alternate_item box" {if $order->isVirtual()}style="display:none;"{/if}>
|
||||
<li><h3 class="page-subheading">{l s='Delivery address'} ({$address_delivery->alias})</h3></li>
|
||||
{foreach from=$dlv_adr_fields name=dlv_loop item=field_item}
|
||||
{if $field_item eq "company" && isset($address_delivery->company)}<li class="address_company">{$address_delivery->company|escape:'htmlall':'UTF-8'}</li>
|
||||
{elseif $field_item eq "address2" && $address_delivery->address2}<li class="address_address2">{$address_delivery->address2|escape:'htmlall':'UTF-8'}</li>
|
||||
{elseif $field_item eq "phone_mobile" && $address_delivery->phone_mobile}<li class="address_phone_mobile">{$address_delivery->phone_mobile|escape:'htmlall':'UTF-8'}</li>
|
||||
{else}
|
||||
{assign var=address_words value=" "|explode:$field_item}
|
||||
<li>{foreach from=$address_words item=word_item name="word_loop"}{if !$smarty.foreach.word_loop.first} {/if}<span class="address_{$word_item|replace:',':''}">{$deliveryAddressFormatedValues[$word_item|replace:',':'']|escape:'htmlall':'UTF-8'}</span>{/foreach}</li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<ul class="address item {if $order->isVirtual()}full_width{/if} box">
|
||||
<li><h3 class="page-subheading">{l s='Billing'}</h3></li>
|
||||
<li><h3 class="page-subheading">{l s='Invoice address'} ({$address_invoice->alias})</h3></li>
|
||||
{foreach from=$inv_adr_fields name=inv_loop item=field_item}
|
||||
{if $field_item eq "company" && isset($address_invoice->company)}<li class="address_company">{$address_invoice->company|escape:'htmlall':'UTF-8'}</li>
|
||||
{elseif $field_item eq "address2" && $address_invoice->address2}<li class="address_address2">{$address_invoice->address2|escape:'htmlall':'UTF-8'}</li>
|
||||
@@ -95,20 +109,6 @@
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<ul class="address alternate_item box" {if $order->isVirtual()}style="display:none;"{/if}>
|
||||
<li><h3 class="page-subheading">{l s='Delivery'}</h3></li>
|
||||
{foreach from=$dlv_adr_fields name=dlv_loop item=field_item}
|
||||
{if $field_item eq "company" && isset($address_delivery->company)}<li class="address_company">{$address_delivery->company|escape:'htmlall':'UTF-8'}</li>
|
||||
{elseif $field_item eq "address2" && $address_delivery->address2}<li class="address_address2">{$address_delivery->address2|escape:'htmlall':'UTF-8'}</li>
|
||||
{elseif $field_item eq "phone_mobile" && $address_delivery->phone_mobile}<li class="address_phone_mobile">{$address_delivery->phone_mobile|escape:'htmlall':'UTF-8'}</li>
|
||||
{else}
|
||||
{assign var=address_words value=" "|explode:$field_item}
|
||||
<li>{foreach from=$address_words item=word_item name="word_loop"}{if !$smarty.foreach.word_loop.first} {/if}<span class="address_{$word_item|replace:',':''}">{$deliveryAddressFormatedValues[$word_item|replace:',':'']|escape:'htmlall':'UTF-8'}</span>{/foreach}</li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{$HOOK_ORDERDETAILDISPLAYED}
|
||||
@@ -132,7 +132,7 @@
|
||||
{if $priceDisplay && $use_tax}
|
||||
<tr class="item">
|
||||
<td colspan="{if $return_allowed}2{else}1{/if}">
|
||||
<strong>{l s='Total products (tax excl.)'}</strong>
|
||||
<strong>{l s='Items (tax excl.)'}</strong>
|
||||
</td>
|
||||
<td colspan="{if $order->hasProductReturned()}5{else}4{/if}">
|
||||
<span class="price">{displayWtPriceWithCurrency price=$order->getTotalProductsWithoutTaxes() currency=$currency}</span>
|
||||
@@ -141,7 +141,7 @@
|
||||
{/if}
|
||||
<tr class="item">
|
||||
<td colspan="{if $return_allowed}2{else}1{/if}">
|
||||
<strong>{l s='Total products'} {if $use_tax}{l s='(tax incl.)'}{/if}: </strong>
|
||||
<strong>{l s='Items'} {if $use_tax}{l s='(tax incl.)'}{/if} </strong>
|
||||
</td>
|
||||
<td colspan="{if $order->hasProductReturned()}5{else}4{/if}">
|
||||
<span class="price">{displayWtPriceWithCurrency price=$order->getTotalProductsWithTaxes() currency=$currency}</span>
|
||||
@@ -150,7 +150,7 @@
|
||||
{if $order->total_discounts > 0}
|
||||
<tr class="item">
|
||||
<td colspan="{if $return_allowed}2{else}1{/if}">
|
||||
<strong>{l s='Total vouchers:'}</strong>
|
||||
<strong>{l s='Total vouchers'}</strong>
|
||||
</td>
|
||||
<td colspan="{if $order->hasProductReturned()}5{else}4{/if}">
|
||||
<span class="price-discount">{displayWtPriceWithCurrency price=$order->total_discounts currency=$currency convert=1}</span>
|
||||
@@ -160,7 +160,7 @@
|
||||
{if $order->total_wrapping > 0}
|
||||
<tr class="item">
|
||||
<td colspan="{if $return_allowed}2{else}1{/if}">
|
||||
<strong>{l s='Total gift wrapping cost:'}</strong>
|
||||
<strong>{l s='Total gift wrapping cost'}</strong>
|
||||
</td>
|
||||
<td colspan="{if $order->hasProductReturned()}5{else}4{/if}">
|
||||
<span class="price-wrapping">{displayWtPriceWithCurrency price=$order->total_wrapping currency=$currency}</span>
|
||||
@@ -169,7 +169,7 @@
|
||||
{/if}
|
||||
<tr class="item">
|
||||
<td colspan="{if $return_allowed}2{else}1{/if}">
|
||||
<strong>{l s='Total shipping'} {if $use_tax}{l s='(tax incl.)'}{/if}: </strong>
|
||||
<strong>{l s='Shipping & handling'} {if $use_tax}{l s='(tax incl.)'}{/if} </strong>
|
||||
</td>
|
||||
<td colspan="{if $order->hasProductReturned()}5{else}4{/if}">
|
||||
<span class="price-shipping">{displayWtPriceWithCurrency price=$order->total_shipping currency=$currency}</span>
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
<tr class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{/if}">
|
||||
<td class="bold"><a class="color-myaccount" href="javascript:showOrder(0, {$return.id_order_return|intval}, '{$link->getPageLink('order-return', true)|escape:'html'}');">{l s='#'}{$return.id_order_return|string_format:"%06d"}</a></td>
|
||||
<td class="history_method"><a class="color-myaccount" href="javascript:showOrder(1, {$return.id_order|intval}, '{$link->getPageLink('order-detail', true)|escape:'html'}');">{l s='#'}{$return.id_order|string_format:"%06d"}</a></td>
|
||||
<td class="history_method"><span class="bold">{$return.state_name|escape:'htmlall':'UTF-8'}</span></td>
|
||||
<td class="history_method"><span class="label label-info">{$return.state_name|escape:'htmlall':'UTF-8'}</span></td>
|
||||
<td class="bold">{dateFormat date=$return.date_add full=0}</td>
|
||||
<td class="history_invoice">
|
||||
{if $return.state == 2}
|
||||
|
||||
@@ -116,8 +116,8 @@
|
||||
<input type="password" class="text form-control" name="passwd" id="passwd" />
|
||||
<span class="form_info">{l s='(five characters min.)'}</span>
|
||||
</div>
|
||||
<div class="required clearfix">
|
||||
<label>{l s='Title'}</label><br />
|
||||
<div class="required clearfix gender-line">
|
||||
<label>{l s='Title'}</label>
|
||||
{foreach from=$genders key=k item=gender}
|
||||
<div class="radio-inline">
|
||||
<label for="id_gender{$gender->id_gender}" class="top">
|
||||
|
||||
@@ -62,9 +62,9 @@
|
||||
<tr>
|
||||
<th class="cart_product first_item">{l s='Product'}</th>
|
||||
<th class="cart_description item">{l s='Description'}</th>
|
||||
<th class="cart_availability item">{l s='Ref.'}</th>
|
||||
<th class="cart_availability item">{l s='Avail.'}</th>
|
||||
<th class="cart_unit item">{l s='Unit price'}</th>
|
||||
<th class="cart_quantity item">{l s='Qty'}</th>
|
||||
<!--th class="cart_quantity item">{l s='Qty'}</th-->
|
||||
<th class="cart_total last_item">{l s='Total'}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -72,23 +72,23 @@
|
||||
{if $use_taxes}
|
||||
{if $priceDisplay}
|
||||
<tr class="cart_total_price">
|
||||
<td colspan="4" class="text-right">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td>
|
||||
<td colspan="3" class="text-right">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td>
|
||||
<td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
|
||||
</tr>
|
||||
{else}
|
||||
<tr class="cart_total_price">
|
||||
<td colspan="4" class="text-right">{if $display_tax_label}{l s='Total products (tax incl.)'}{else}{l s='Total products'}{/if}</td>
|
||||
<td colspan="3" class="text-right">{if $display_tax_label}{l s='Total products (tax incl.)'}{else}{l s='Total products'}{/if}</td>
|
||||
<td colspan="2" class="price" id="total_product">{displayPrice price=$total_products_wt}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{else}
|
||||
<tr class="cart_total_price">
|
||||
<td colspan="4" class="text-right">{l s='Total products'}</td>
|
||||
<td colspan="3" class="text-right">{l s='Total products'}</td>
|
||||
<td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
<tr class="cart_total_voucher" {if $total_wrapping == 0}style="display:none"{/if}>
|
||||
<td colspan="4" class="text-right">
|
||||
<td colspan="3" class="text-right">
|
||||
{if $use_taxes}
|
||||
{if $priceDisplay}
|
||||
{if $display_tax_label}{l s='Total gift wrapping (tax excl.):'}{else}{l s='Total gift wrapping cost:'}{/if}
|
||||
@@ -113,31 +113,31 @@
|
||||
</tr>
|
||||
{if $total_shipping_tax_exc <= 0 && !isset($virtualCart)}
|
||||
<tr class="cart_total_delivery">
|
||||
<td colspan="4" class="text-right">{l s='Shipping:'}</td>
|
||||
<td colspan="3" class="text-right">{l s='Shipping:'}</td>
|
||||
<td colspan="2" class="price" id="total_shipping">{l s='Free Shipping!'}</td>
|
||||
</tr>
|
||||
{else}
|
||||
{if $use_taxes && $total_shipping_tax_exc != $total_shipping}
|
||||
{if $priceDisplay}
|
||||
<tr class="cart_total_delivery" {if $shippingCost <= 0} style="display:none"{/if}>
|
||||
<td colspan="4" class="text-right">{if $display_tax_label}{l s='Total shipping (tax excl.)'}{else}{l s='Total shipping'}{/if}</td>
|
||||
<td colspan="3" class="text-right">{if $display_tax_label}{l s='Total shipping (tax excl.)'}{else}{l s='Total shipping'}{/if}</td>
|
||||
<td colspan="2" class="price" id="total_shipping">{displayPrice price=$shippingCostTaxExc}</td>
|
||||
</tr>
|
||||
{else}
|
||||
<tr class="cart_total_delivery"{if $shippingCost <= 0} style="display:none"{/if}>
|
||||
<td colspan="4" class="text-right">{if $display_tax_label}{l s='Total shipping (tax incl.)'}{else}{l s='Total shipping'}{/if}</td>
|
||||
<td colspan="3" class="text-right">{if $display_tax_label}{l s='Total shipping (tax incl.)'}{else}{l s='Total shipping'}{/if}</td>
|
||||
<td colspan="2" class="price" id="total_shipping" >{displayPrice price=$shippingCost}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{else}
|
||||
<tr class="cart_total_delivery"{if $shippingCost <= 0} style="display:none"{/if}>
|
||||
<td colspan="4" class="text-right">{l s='Total shipping'}</td>
|
||||
<td colspan="3" class="text-right">{l s='Total shipping'}</td>
|
||||
<td colspan="2" class="price" id="total_shipping" >{displayPrice price=$shippingCostTaxExc}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/if}
|
||||
<tr class="cart_total_voucher" {if $total_discounts == 0}style="display:none"{/if}>
|
||||
<td colspan="4" class="text-right">
|
||||
<td colspan="3" class="text-right">
|
||||
{if $use_taxes}
|
||||
{if $priceDisplay}
|
||||
{if $display_tax_label}{l s='Total vouchers (tax excl.)'}{else}{l s='Total vouchers'}{/if}
|
||||
@@ -163,12 +163,12 @@
|
||||
{if $use_taxes}
|
||||
{if $priceDisplay && $total_tax != 0}
|
||||
<tr class="cart_total_tax">
|
||||
<td colspan="4" class="text-right">{l s='Total tax:'}</td>
|
||||
<td colspan="3" class="text-right">{l s='Total tax:'}</td>
|
||||
<td colspan="2" class="price" id="total_tax" >{displayPrice price=$total_tax}</td>
|
||||
</tr>
|
||||
{/if}
|
||||
<tr class="cart_total_price">
|
||||
<td colspan="4" class="total_price_container text-right"><span>{l s='Total'}</span></td>
|
||||
<td colspan="3" class="total_price_container text-right"><span>{l s='Total'}</span></td>
|
||||
<td colspan="2" class="price" id="total_price_container">
|
||||
<span id="total_price">{displayPrice price=$total_price}</span>
|
||||
</td>
|
||||
@@ -206,10 +206,10 @@
|
||||
</div>
|
||||
</td>
|
||||
{/if}
|
||||
<td colspan="{if !$voucherAllowed}4{else}2{/if}" class="text-right total_price_container">
|
||||
<td colspan="{if !$voucherAllowed}3{else}2{/if}" class="text-right total_price_container">
|
||||
<span>{l s='Total'}</span>
|
||||
</td>
|
||||
<td colspan="2" class="price total_price_container" id="total_price_container">
|
||||
<td colspan="1" class="price total_price_container" id="total_price_container">
|
||||
<span id="total_price">{displayPrice price=$total_price_without_tax}</span>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -229,7 +229,7 @@
|
||||
{if isset($customizedDatas.$productId.$productAttributeId)}
|
||||
{foreach from=$customizedDatas.$productId.$productAttributeId[$product.id_address_delivery] key='id_customization' item='customization'}
|
||||
<tr id="product_{$product.id_product}_{$product.id_product_attribute}_{$id_customization}" class="alternate_item cart_item">
|
||||
<td colspan="4">
|
||||
<td colspan="3">
|
||||
{foreach from=$customization.datas key='type' item='datas'}
|
||||
{if $type == $CUSTOMIZE_FILE}
|
||||
<div class="customizationUploaded">
|
||||
|
||||
@@ -31,11 +31,14 @@
|
||||
|
||||
{if $page_name !='index' && $page_name !='product'}
|
||||
{assign var='nbItemsPerLine' value=3}
|
||||
{assign var='nbItemsPerLineTablet' value=2}
|
||||
{assign var='nbItemsPerLineMobile' value=3}
|
||||
{else}
|
||||
{assign var='nbItemsPerLine' value=4}
|
||||
{assign var='nbItemsPerLineTablet' value=3}
|
||||
{assign var='nbItemsPerLineMobile' value=2}
|
||||
{/if}
|
||||
{*define numbers of product per line in other page for tablet*}
|
||||
{assign var='nbItemsPerLineTablet' value=2}
|
||||
{assign var='nbLi' value=$products|@count}
|
||||
{math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines}
|
||||
{math equation="nbLi/nbItemsPerLineTablet" nbLi=$nbLi nbItemsPerLineTablet=$nbItemsPerLineTablet assign=nbLinesTablet}
|
||||
@@ -44,9 +47,11 @@
|
||||
{foreach from=$products item=product name=products}
|
||||
{math equation="(total%perLine)" total=$smarty.foreach.products.total perLine=$nbItemsPerLine assign=totModulo}
|
||||
{math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineTablet assign=totModuloTablet}
|
||||
{math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineMobile assign=totModuloMobile}
|
||||
{if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if}
|
||||
{if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if}
|
||||
<li class="ajax_block_product col-xs-3 {if $smarty.foreach.products.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLine == 1} first-in-line{/if} {if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModulo)}last-line{/if} {if $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 0}last-item-of-tablet-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 1}first-item-of-tablet-line{/if} {if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModuloTablet)}last-tablet-line{/if}">
|
||||
{if $totModuloMobile == 0}{assign var='totModuloMobile' value=$nbItemsPerLineMobile}{/if}
|
||||
<li class="ajax_block_product {if $page_name == 'index' || $page_name == 'product'}col-xs-12 col-sm-4 col-md-3{/if} {if $smarty.foreach.products.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLine == 1} first-in-line{/if} {if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModulo)}last-line{/if} {if $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 0}last-item-of-tablet-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 1}first-item-of-tablet-line{/if} {if $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 0}last-item-of-mobile-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 1}first-item-of-mobile-line{/if} {if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModuloMobile)}last-mobile-line{/if}">
|
||||
<div class="product-container">
|
||||
<div class="left-block">
|
||||
<div class="product-image-container">
|
||||
@@ -133,8 +138,8 @@
|
||||
<script type="text/javascript"><!--
|
||||
function display(view) {
|
||||
if (view == 'list') {
|
||||
$('ul.product_list').removeClass('grid row').addClass('list row');
|
||||
$('.product_list > li').removeClass('col-xs-12 col-xs-4 col-sm-6 col-md-4').addClass('col-xs-12');
|
||||
$('ul.product_list').removeClass('grid').addClass('list row');
|
||||
$('.product_list > li').removeClass('col-xs-12 col-sm-6 col-md-4').addClass('col-xs-12');
|
||||
$('.product_list > li').each(function(index, element) {
|
||||
html = '';
|
||||
html = '<div class="product-container"><div class="row">';
|
||||
@@ -170,8 +175,8 @@
|
||||
if (typeof quick_view != 'undefined') // qick view button reload
|
||||
quick_view();
|
||||
} else {
|
||||
$('ul.product_list').removeClass('list row').addClass('grid row');
|
||||
$('.product_list > li').removeClass('col-xs-12 col-xs-4').addClass('col-xs-12 col-sm-6 col-md-4');
|
||||
$('ul.product_list').removeClass('list').addClass('grid row');
|
||||
$('.product_list > li').removeClass('col-xs-12').addClass('col-xs-12 col-sm-6 col-md-4');
|
||||
$('.product_list > li').each(function(index, element) {
|
||||
html = '';
|
||||
html += '<div class="product-container">';
|
||||
|
||||
@@ -158,7 +158,8 @@ var isLoggedWishlist = {if $logged}true{else}false{/if};
|
||||
var contentOnly = {if $content_only}true{else}false{/if}
|
||||
//]]>
|
||||
</script>
|
||||
<div id="primary_block" class="row">
|
||||
<div id="primary_block" class="row" itemscope itemtype="http://schema.org/Product">
|
||||
|
||||
|
||||
{if !$content_only}<div class="container"><div class="top-hr"></div></div>{/if}
|
||||
|
||||
@@ -187,6 +188,7 @@ var contentOnly = {if $content_only}true{else}false{/if}
|
||||
|
||||
<div id="image-block">
|
||||
|
||||
|
||||
{if $product->on_sale}
|
||||
<span class="sale-box"><span class="sale">{l s='Sale!'}</span></span>
|
||||
{elseif $product->specificPrice AND $product->specificPrice.reduction AND $productPriceWithoutReduction > $productPrice}
|
||||
@@ -195,12 +197,12 @@ var contentOnly = {if $content_only}true{else}false{/if}
|
||||
|
||||
{if $have_image}
|
||||
<span id="view_full_size">
|
||||
<img src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default')|escape:'html'}"{if $jqZoomEnabled && $have_image} class="jqzoom"{/if} title="{$product->name|escape:'htmlall':'UTF-8'}" alt="{$product->name|escape:'htmlall':'UTF-8'}" id="bigpic" width="{$largeSize.width}" height="{$largeSize.height}"/>
|
||||
<img itemprop="image" src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large_default')|escape:'html'}"{if $jqZoomEnabled && $have_image} class="jqzoom"{/if} title="{$product->name|escape:'htmlall':'UTF-8'}" alt="{$product->name|escape:'htmlall':'UTF-8'}" id="bigpic" width="{$largeSize.width}" height="{$largeSize.height}"/>
|
||||
{if !$content_only}<span class="span_link">{l s='View larger'}</span>{/if}
|
||||
</span>
|
||||
{else}
|
||||
<span id="view_full_size">
|
||||
<img src="{$img_prod_dir}{$lang_iso}-default-large_default.jpg" id="bigpic" alt="" title="{$product->name|escape:'htmlall':'UTF-8'}" width="{$largeSize.width}" height="{$largeSize.height}" />
|
||||
<img itemprop="image" src="{$img_prod_dir}{$lang_iso}-default-large_default.jpg" id="bigpic" alt="" title="{$product->name|escape:'htmlall':'UTF-8'}" width="{$largeSize.width}" height="{$largeSize.height}" />
|
||||
{if !$content_only}<span class="span_link">{l s='View larger'}</span>{/if}
|
||||
</span>
|
||||
{/if}
|
||||
@@ -239,15 +241,15 @@ var contentOnly = {if $content_only}true{else}false{/if}
|
||||
<p class="online_only">{l s='Online only'}</p>
|
||||
{/if}
|
||||
|
||||
<h1>{$product->name|escape:'htmlall':'UTF-8'}</h1>
|
||||
<h1 itemprop="name">{$product->name|escape:'htmlall':'UTF-8'}</h1>
|
||||
<p id="product_reference" {if isset($groups) OR !$product->reference}style="display: none;"{/if}>
|
||||
<label>{l s='Model'} </label>
|
||||
<span class="editable">{$product->reference|escape:'htmlall':'UTF-8'}</span>
|
||||
<span class="editable" itemprop="sku">{$product->reference|escape:'htmlall':'UTF-8'}</span>
|
||||
</p>
|
||||
{if $product->description_short OR $packItems|@count > 0}
|
||||
<div id="short_description_block">
|
||||
{if $product->description_short}
|
||||
<div id="short_description_content" class="rte align_justify">{$product->description_short}</div>
|
||||
<div id="short_description_content" class="rte align_justify" itemprop="description">{$product->description_short}</div>
|
||||
{/if}
|
||||
{if $product->description}
|
||||
<p class="buttons_bottom_block"><a href="javascript:{ldelim}{rdelim}" class="button">{l s='More details'}</a></p>
|
||||
@@ -280,6 +282,7 @@ var contentOnly = {if $content_only}true{else}false{/if}
|
||||
|
||||
|
||||
<!-- availability -->
|
||||
<link itemprop="availability" href="http://schema.org/InStock">
|
||||
<p id="availability_statut"{if ($product->quantity <= 0 && !$product->available_later && $allow_oosp) OR ($product->quantity > 0 && !$product->available_now) OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>
|
||||
{*<span id="availability_label">{l s='Availability:'}</span>*}
|
||||
<span id="availability_value"{if $product->quantity <= 0} class="warning_inline"{/if}>{if $product->quantity <= 0}{if $allow_oosp}{$product->available_later}{else}{l s='This product is no longer in stock'}{/if}{else}{$product->available_now}{/if}</span>
|
||||
@@ -349,9 +352,9 @@ var contentOnly = {if $content_only}true{else}false{/if}
|
||||
{if $product->show_price AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}
|
||||
|
||||
<div class="price">
|
||||
<p class="our_price_display">
|
||||
<p class="our_price_display" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
|
||||
{if $priceDisplay >= 0 && $priceDisplay <= 2}
|
||||
<span id="our_price_display">{convertPrice price=$productPrice}</span>
|
||||
<span id="our_price_display" itemprop="price">{convertPrice price=$productPrice}</span>
|
||||
<!--{if $tax_enabled && ((isset($display_tax_label) && $display_tax_label == 1) OR !isset($display_tax_label))}
|
||||
{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}
|
||||
{/if}-->
|
||||
|
||||
@@ -48,6 +48,7 @@
|
||||
|
||||
.label-info {
|
||||
@include label-variant($label-info-bg);
|
||||
border:1px solid $label-info-border;
|
||||
}
|
||||
|
||||
.label-warning {
|
||||
@@ -57,4 +58,5 @@
|
||||
|
||||
.label-danger {
|
||||
@include label-variant($label-danger-bg);
|
||||
border:1px solid $label-danger-border;
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ $brand-primary: #428bca !default;
|
||||
$brand-success: #46a74e !default;
|
||||
$brand-warning: #f0ad4e !default;
|
||||
$brand-danger: #d9534f !default;
|
||||
$brand-info: #5bc0de !default;
|
||||
$brand-info: #5192f3 !default;
|
||||
|
||||
// Scaffolding
|
||||
// -------------------------
|
||||
@@ -414,12 +414,14 @@ $label-primary-bg: $brand-primary !default;
|
||||
$label-success-bg: $state-success-bg !default;
|
||||
$label-info-bg: $brand-info !default;
|
||||
$label-warning-bg: $state-warning-bg !default;
|
||||
$label-danger-bg: $brand-danger !default;
|
||||
$label-danger-bg: $state-danger-bg !default;
|
||||
|
||||
$label-color: #fff !default;
|
||||
$label-link-hover-color: #fff !default;
|
||||
$label-success-border: #36943e !default;
|
||||
$label-warning-border: $state-warning-border !default;
|
||||
$label-warning-border: $state-warning-border !default;
|
||||
$label-info-border: $state-info-border !default;
|
||||
$label-danger-border: $state-danger-border !default;
|
||||
|
||||
// Modals
|
||||
// -------------------------
|
||||
|
||||
@@ -773,54 +773,79 @@ table.table_block td {
|
||||
***************************************************************************************************/
|
||||
#home-page-tabs {
|
||||
border:none;
|
||||
margin:0 0 0 -18px;
|
||||
padding:10px 0;
|
||||
@media (min-width: $screen-sm) { // min 768px
|
||||
padding:10px 0;
|
||||
margin:0 0 0 -18px;
|
||||
}
|
||||
|
||||
> li {
|
||||
border-left:1px solid $base-border-color;
|
||||
margin:0 0px 0 9px;
|
||||
padding:0 0px 0 9px;
|
||||
a {
|
||||
font:600 21px/24px 'Open Sans', sans-serif;
|
||||
color:#555454;
|
||||
text-transform:uppercase;
|
||||
padding:1px 10px;
|
||||
border:none;
|
||||
outline:none;
|
||||
margin:0;
|
||||
}
|
||||
margin-bottom:0;
|
||||
@media (min-width: $screen-sm) { // min 768px
|
||||
border-left:1px solid $base-border-color;
|
||||
margin:0 0px 0 9px;
|
||||
padding:0 0px 0 9px;
|
||||
}
|
||||
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
width:100%;
|
||||
}
|
||||
a {
|
||||
font:600 21px/24px 'Open Sans', sans-serif;
|
||||
color:#555454;
|
||||
text-transform:uppercase;
|
||||
border:none;
|
||||
outline:none;
|
||||
margin:0;
|
||||
padding:10px;
|
||||
@media (min-width: $screen-sm) { // min 768px
|
||||
padding:1px 10px;
|
||||
}
|
||||
}
|
||||
|
||||
&:first-child {border:none;}
|
||||
}
|
||||
|
||||
> li.active a, >li a:hover {
|
||||
background:#333333;
|
||||
color:#fff;
|
||||
margin:-10px 0;
|
||||
padding:10px;
|
||||
@media (min-width: $screen-sm) { // min 768px
|
||||
margin:-10px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
#index {
|
||||
|
||||
.tab-content {
|
||||
margin-top:35px;
|
||||
}
|
||||
}
|
||||
.block {margin-bottom:30px}
|
||||
.block {
|
||||
|
||||
.title_block, h4 {
|
||||
font:600 18px/22px 'Open Sans', sans-serif;
|
||||
color:#555454;
|
||||
background:#f6f6f6;
|
||||
border-top:5px solid #333;
|
||||
text-transform:uppercase;
|
||||
padding:14px 0 17px 20px;
|
||||
padding:14px 5px 17px 20px;
|
||||
margin-bottom:20px;
|
||||
a {
|
||||
color:#555454;
|
||||
&:hover {
|
||||
color:#333;
|
||||
}
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) {
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#555454;
|
||||
|
||||
&:hover {
|
||||
color:#333;
|
||||
}
|
||||
}
|
||||
}
|
||||
&#contact_block {
|
||||
background:#333;
|
||||
|
||||
.title_block {
|
||||
border-color:#e4e3e3;
|
||||
background:#333;
|
||||
@@ -831,11 +856,14 @@ table.table_block td {
|
||||
}
|
||||
.list-block {
|
||||
margin-top:-8px;
|
||||
|
||||
li {
|
||||
padding:5px 0 6px 20px;
|
||||
border-top:1px solid $base-border-color;
|
||||
|
||||
a {
|
||||
i {display:none;}
|
||||
|
||||
&:before {
|
||||
content:"";
|
||||
display:inline;
|
||||
@@ -843,26 +871,39 @@ table.table_block td {
|
||||
color:#333;
|
||||
padding-right:8px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color:#333333;
|
||||
font-weight:bold;
|
||||
}
|
||||
}
|
||||
|
||||
&:first-child {border-top:none;}
|
||||
}
|
||||
|
||||
.form-group { padding-top:20px; border-top:1px solid $base-border-color;}
|
||||
|
||||
.btn {margin-top:12px;}
|
||||
}
|
||||
.products-block {
|
||||
|
||||
li {
|
||||
padding:0 0 20px 0;
|
||||
margin-bottom:20px;
|
||||
border-bottom:1px solid $base-border-color;
|
||||
|
||||
.products-block-image {
|
||||
float:left;
|
||||
border:1px solid $base-border-color;
|
||||
margin-right:19px;
|
||||
margin-right:19px;
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) { // min 768px max 991px
|
||||
float:none;
|
||||
display:inline-block;
|
||||
margin:0 auto 10px;
|
||||
text-align:center;
|
||||
}
|
||||
}
|
||||
|
||||
.product-content {
|
||||
overflow:hidden;
|
||||
h5 {
|
||||
@@ -870,8 +911,11 @@ table.table_block td {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product-name {font-size:15px; line-height:18px;}
|
||||
|
||||
.product-description {margin-bottom:14px;}
|
||||
|
||||
.price-percent-reduction {
|
||||
font:700 14px/17px Arial, Helvetica, sans-serif;
|
||||
padding:1px 6px;
|
||||
@@ -880,11 +924,14 @@ table.table_block td {
|
||||
}
|
||||
/*************** Block CATEGORIES ***************/
|
||||
#categories_block_left {
|
||||
|
||||
.block_content > ul {
|
||||
border-top:1px solid $base-border-color;
|
||||
}
|
||||
|
||||
li {
|
||||
position:relative;
|
||||
|
||||
a {
|
||||
font-weight:bold;
|
||||
color:#333333;
|
||||
@@ -894,6 +941,7 @@ table.table_block td {
|
||||
padding:0 30px 0 19px;
|
||||
border-bottom:1px solid $base-border-color;
|
||||
}
|
||||
|
||||
span.grower {
|
||||
display:block;
|
||||
background:#f6f6f6;
|
||||
@@ -904,37 +952,43 @@ table.table_block td {
|
||||
text-align:center;
|
||||
font-family:'FontAwesome';
|
||||
font-size:14px;
|
||||
&.OPEN, &.CLOSE {
|
||||
&:before {
|
||||
content:"";
|
||||
display:block;
|
||||
vertical-align:middle;
|
||||
width:30px;
|
||||
height:30px;
|
||||
color:#333;
|
||||
line-height:30px;
|
||||
}
|
||||
}
|
||||
&.CLOSE:before {
|
||||
content:"";
|
||||
color:#c0c0c0;
|
||||
|
||||
&.OPEN, &.CLOSE {
|
||||
|
||||
&:before {
|
||||
content:"";
|
||||
display:block;
|
||||
vertical-align:middle;
|
||||
width:30px;
|
||||
height:30px;
|
||||
color:#333;
|
||||
line-height:30px;
|
||||
}
|
||||
}
|
||||
|
||||
&.CLOSE:before {
|
||||
content:"";
|
||||
color:#c0c0c0;
|
||||
}
|
||||
}
|
||||
& span.grower:hover + a, a:hover, a.selected {
|
||||
background:#f6f6f6;
|
||||
}
|
||||
li {
|
||||
a {
|
||||
font-weight:normal;
|
||||
color:#777777;
|
||||
&:before {
|
||||
content:"";
|
||||
font-family:'FontAwesome';
|
||||
line-height:29px;
|
||||
padding-right:8px;
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
|
||||
a {
|
||||
font-weight:normal;
|
||||
color:#777777;
|
||||
|
||||
&:before {
|
||||
content:"";
|
||||
font-family:'FontAwesome';
|
||||
line-height:29px;
|
||||
padding-right:8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/*************************************************************************************************/
|
||||
@@ -952,12 +1006,13 @@ table.table_block td {
|
||||
float:right;
|
||||
color:#333;
|
||||
text-transform:none;
|
||||
@media (max-width:$screen-xs) {
|
||||
float:none;
|
||||
display:block;
|
||||
padding-top:5px;
|
||||
}
|
||||
@media (max-width:$screen-xs) {
|
||||
float:none;
|
||||
display:block;
|
||||
padding-top:5px;
|
||||
}
|
||||
}
|
||||
|
||||
span.lighter {color:#9c9c9c}
|
||||
|
||||
&.bottom-indent { margin-bottom:16px;}
|
||||
@@ -1093,29 +1148,24 @@ ul.footer_links {
|
||||
float:right;
|
||||
width:530px;
|
||||
text-align:center;
|
||||
|
||||
/* min 992px max 1199px */
|
||||
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
||||
width:380px;
|
||||
}
|
||||
/* max 991px */
|
||||
@media (max-width: $screen-sm-max) {
|
||||
float:left;
|
||||
width:auto;
|
||||
}
|
||||
@media (min-width: $screen-md) and (max-width: $screen-md-max) { // min 992px max 1199px
|
||||
width:380px;
|
||||
}
|
||||
@media (max-width: $screen-sm-max) { // max 991px
|
||||
float:left;
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.showall {
|
||||
float:right;
|
||||
margin:8px 53px 8px 14px;
|
||||
|
||||
/* min 992px max 1199px */
|
||||
@media (min-width: $screen-md) and (max-width: $screen-md-max) {
|
||||
margin-right:11px;
|
||||
}
|
||||
/* max 991px */
|
||||
@media (max-width: $screen-sm-max) {
|
||||
margin-right:0;
|
||||
}
|
||||
@media (min-width: $screen-md) and (max-width: $screen-md-max) { // min 992px max 1199px
|
||||
margin-right:11px;
|
||||
}
|
||||
@media (max-width: $screen-sm-max) { // max 991px
|
||||
margin-right:0;
|
||||
}
|
||||
|
||||
.btn {
|
||||
|
||||
@@ -1129,72 +1179,81 @@ ul.footer_links {
|
||||
}
|
||||
ul.pagination {
|
||||
margin:8px 0px 8px 0;
|
||||
li {
|
||||
display:inline-block;
|
||||
float:left;
|
||||
> a, > span {
|
||||
margin:0 1px 0 0px;
|
||||
padding:0;
|
||||
font-weight:bold;
|
||||
border:1px solid;
|
||||
border-color:#dfdede #d2d0d0 #b0afaf #d2d0d0;
|
||||
|
||||
li {
|
||||
display:inline-block;
|
||||
float:left;
|
||||
|
||||
> a, > span {
|
||||
margin:0 1px 0 0px;
|
||||
padding:0;
|
||||
font-weight:bold;
|
||||
border:1px solid;
|
||||
border-color:#dfdede #d2d0d0 #b0afaf #d2d0d0;
|
||||
display:block;
|
||||
|
||||
span {
|
||||
border:1px solid #fff;
|
||||
padding:2px 8px;
|
||||
display:block;
|
||||
span {
|
||||
border:1px solid #fff;
|
||||
padding:2px 8px;
|
||||
display:block;
|
||||
background:url(../img/pagination-li.gif) 0 0 repeat-x #fbfbfb;
|
||||
}
|
||||
}
|
||||
> a:hover {
|
||||
span {
|
||||
background:#f6f6f6;
|
||||
}
|
||||
}
|
||||
&.pagination_previous, &.pagination_next {
|
||||
color:#777676;
|
||||
font-weight:bold;
|
||||
> a, > span {
|
||||
border:none;
|
||||
background:none;
|
||||
display:block;
|
||||
padding:4px 0;
|
||||
span { border:none; padding:0; background:none;}
|
||||
}
|
||||
}
|
||||
&.pagination_previous { margin-right:10px;}
|
||||
&.pagination_next { margin-left:10px;}
|
||||
&.active {
|
||||
|
||||
> span {
|
||||
|
||||
color:#333333;
|
||||
border-color:#dfdede #d2d0d0 #b0afaf #d2d0d0;
|
||||
span {background:#f6f6f6;}
|
||||
}
|
||||
background:url(../img/pagination-li.gif) 0 0 repeat-x #fbfbfb;
|
||||
}
|
||||
}
|
||||
|
||||
> a:hover {
|
||||
|
||||
span {
|
||||
background:#f6f6f6;
|
||||
}
|
||||
}
|
||||
&.pagination_previous, &.pagination_next {
|
||||
color:#777676;
|
||||
font-weight:bold;
|
||||
|
||||
> a, > span {
|
||||
border:none;
|
||||
background:none;
|
||||
display:block;
|
||||
padding:4px 0;
|
||||
|
||||
span { border:none; padding:0; background:none;}
|
||||
}
|
||||
}
|
||||
|
||||
&.pagination_previous { margin-right:10px;}
|
||||
|
||||
&.pagination_next { margin-left:10px;}
|
||||
|
||||
&.active {
|
||||
|
||||
> span {
|
||||
|
||||
color:#333333;
|
||||
border-color:#dfdede #d2d0d0 #b0afaf #d2d0d0;
|
||||
|
||||
span {background:#f6f6f6;}
|
||||
}
|
||||
}
|
||||
}
|
||||
.compare-form {
|
||||
float:right;
|
||||
|
||||
/* max 479px */
|
||||
@media (max-width: $screen-xs - 1) {
|
||||
float:left;
|
||||
width:100%;
|
||||
text-align:left;
|
||||
padding-bottom:10px;
|
||||
clear:both;
|
||||
}
|
||||
}
|
||||
|
||||
.compare-form {
|
||||
float:right;
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
float:left;
|
||||
width:100%;
|
||||
text-align:left;
|
||||
padding-bottom:10px;
|
||||
clear:both;
|
||||
}
|
||||
}
|
||||
|
||||
.product-count {
|
||||
padding:11px 0 0 0;
|
||||
float:left;
|
||||
|
||||
/* max 991px */
|
||||
@media (max-width: $screen-sm-max) {
|
||||
clear:left;
|
||||
}
|
||||
@media (max-width: $screen-sm-max) { // max 991px
|
||||
clear:left;
|
||||
}
|
||||
}
|
||||
}
|
||||
.bottom-pagination-content {border-top:1px solid $base-border-color;}
|
||||
@@ -1202,11 +1261,9 @@ ul.footer_links {
|
||||
ul.step {
|
||||
margin-bottom:30px;
|
||||
overflow:hidden;
|
||||
|
||||
/*min 480px*/
|
||||
@media (min-width: $screen-xs) {
|
||||
@include border-radius(4px);
|
||||
}
|
||||
@media (min-width: $screen-xs) { //min 480px
|
||||
@include border-radius(4px);
|
||||
}
|
||||
|
||||
li {
|
||||
float:left;
|
||||
@@ -1217,12 +1274,10 @@ ul.step {
|
||||
border-bottom-color:#9a9a9a;
|
||||
border-right-color:#b7b7b7;
|
||||
border-left-width:0px;
|
||||
|
||||
/* max 480px */
|
||||
@media (max-width: $screen-xs - 1) {
|
||||
width:100%;
|
||||
border-left-width:1px;
|
||||
}
|
||||
@media (max-width: $screen-xs - 1) { // max 480px
|
||||
width:100%;
|
||||
border-left-width:1px;
|
||||
}
|
||||
|
||||
a, span, &.step_current span, &.step_current_end span {
|
||||
display:block;
|
||||
@@ -1233,22 +1288,21 @@ ul.step {
|
||||
font-weight:bold;
|
||||
text-shadow:1px 1px rgba(255,255,255,1);
|
||||
position:relative;
|
||||
|
||||
/* min 991px */
|
||||
@media (min-width: $screen-md) {
|
||||
&:after {
|
||||
content:".";
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:-31px;
|
||||
z-index:0;
|
||||
text-indent:-5000px;
|
||||
display:block;
|
||||
width:31px;
|
||||
height:52px;
|
||||
margin-top:-2px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: $screen-md) { // min 991px
|
||||
&:after {
|
||||
content:".";
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:-31px;
|
||||
z-index:0;
|
||||
text-indent:-5000px;
|
||||
display:block;
|
||||
width:31px;
|
||||
height:52px;
|
||||
margin-top:-2px;
|
||||
}
|
||||
}
|
||||
|
||||
&:focus {text-decoration:none; outline:none;}
|
||||
}
|
||||
@@ -1256,22 +1310,18 @@ ul.step {
|
||||
&.first {
|
||||
border-left-width:1px;
|
||||
border-left-color:#b7b7b7;
|
||||
|
||||
/*min 480px*/
|
||||
@media (min-width: $screen-xs) {
|
||||
@include border-top-left-radius(4px);
|
||||
@include border-bottom-left-radius(4px);
|
||||
}
|
||||
@media (min-width: $screen-xs) { //min 480px
|
||||
@include border-top-left-radius(4px);
|
||||
@include border-bottom-left-radius(4px);
|
||||
}
|
||||
|
||||
span, a {
|
||||
z-index:5;
|
||||
padding-left:13px !important;
|
||||
|
||||
/*min 480px*/
|
||||
@media (min-width: $screen-xs) {
|
||||
@include border-top-left-radius(4px);
|
||||
@include border-bottom-left-radius(4px);
|
||||
}
|
||||
@media (min-width: $screen-xs) { //min 480px
|
||||
@include border-top-left-radius(4px);
|
||||
@include border-bottom-left-radius(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.second {
|
||||
@@ -1287,17 +1337,15 @@ ul.step {
|
||||
span {
|
||||
z-index:1;
|
||||
}
|
||||
|
||||
/*min 480px*/
|
||||
@media (min-width: $screen-xs) {
|
||||
@include border-top-right-radius(4px);
|
||||
@include border-bottom-right-radius(4px);
|
||||
|
||||
span {
|
||||
@include border-top-right-radius(4px);
|
||||
@include border-bottom-right-radius(4px);
|
||||
}
|
||||
}
|
||||
@media (min-width: $screen-xs) { //min 480px
|
||||
@include border-top-right-radius(4px);
|
||||
@include border-bottom-right-radius(4px);
|
||||
|
||||
span {
|
||||
@include border-top-right-radius(4px);
|
||||
@include border-bottom-right-radius(4px);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.step_current {
|
||||
font-weight:bold;
|
||||
@@ -1317,15 +1365,13 @@ ul.step {
|
||||
border:1px solid;
|
||||
border-color:#73ca77 #74c776 #74c175 #74c776;
|
||||
position:relative;
|
||||
|
||||
/* min 991px */
|
||||
@media (min-width: $screen-md) {
|
||||
padding-left:38px;
|
||||
|
||||
&:after {
|
||||
background:url(../img/order-step-a.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
@media (min-width: $screen-md) { //min 991px
|
||||
padding-left:38px;
|
||||
|
||||
&:after {
|
||||
background:url(../img/order-step-a.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.step_current_end {
|
||||
@@ -1347,15 +1393,13 @@ ul.step {
|
||||
border:1px solid;
|
||||
border-color:#fff;
|
||||
position:relative;
|
||||
|
||||
/* min 991px */
|
||||
@media (min-width: $screen-md) {
|
||||
padding-left:38px;
|
||||
|
||||
&:after {
|
||||
background:url(../img/order-step-current.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
@media (min-width: $screen-md) { // min 991px
|
||||
padding-left:38px;
|
||||
|
||||
&:after {
|
||||
background:url(../img/order-step-current.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.step_done {
|
||||
@@ -1374,45 +1418,40 @@ ul.step {
|
||||
background: -ms-linear-gradient(top, rgba(114,113,113,1) 0%,rgba(102,102,102,1) 100%);
|
||||
background: linear-gradient(to bottom, rgba(114,113,113,1) 0%,rgba(102,102,102,1) 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#727171', endColorstr='#666666',GradientType=0 );
|
||||
|
||||
/* min 991px */
|
||||
@media (min-width: $screen-md) {
|
||||
padding-left:38px;
|
||||
|
||||
&:after {
|
||||
background:url(../img/order-step-done.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: $screen-md) { // min 991px */
|
||||
padding-left:38px;
|
||||
|
||||
&:after {
|
||||
background:url(../img/order-step-done.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.step_done.step_done_last {
|
||||
/* min 991px */
|
||||
@media (min-width: $screen-md) {
|
||||
a:after {
|
||||
background:url(../img/order-step-done-last.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
@media (min-width: $screen-md) { // min 991px
|
||||
a:after {
|
||||
background:url(../img/order-step-done-last.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&#step_end {
|
||||
span {
|
||||
/* min 991px */
|
||||
@media (min-width: $screen-md) {
|
||||
&:after {
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
@media (min-width: $screen-md) { // min 991px
|
||||
&:after {
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
em {
|
||||
font-style:normal;
|
||||
|
||||
/* min 480px max 767px */
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) {
|
||||
display:none;
|
||||
}
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1502,6 +1541,9 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
.shop-phone {
|
||||
display:block;
|
||||
padding:5px 0 10px;
|
||||
@media (max-width: $screen-xs-max) { // max 767px
|
||||
display:none;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size:21px;
|
||||
@@ -1512,16 +1554,23 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
|
||||
strong {color:#fff;}
|
||||
}
|
||||
|
||||
#header_user_info {
|
||||
float:right;
|
||||
border-left:1px solid #515151;
|
||||
border-right:1px solid #515151;
|
||||
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
width:25%;
|
||||
text-align:center;
|
||||
}
|
||||
a {
|
||||
color:#fff;
|
||||
font-weight:bold;
|
||||
display:block;
|
||||
padding:8px 9px 11px 8px;
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
font-size:11px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1530,7 +1579,22 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
position: absolute;
|
||||
left:0;
|
||||
top: 27px;
|
||||
z-index: 1;
|
||||
z-index: 1;
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) { // min 768px max 991px
|
||||
width:250px;
|
||||
top:35px;
|
||||
}
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
width:174px;
|
||||
left:15px;
|
||||
top:48px;
|
||||
}
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
width:200px;
|
||||
left:50%;
|
||||
margin-left:-100px;
|
||||
top:20px;
|
||||
}
|
||||
}
|
||||
#header_right {
|
||||
position:relative;
|
||||
@@ -1540,7 +1604,10 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
float:right;
|
||||
border-left:1px solid #515151;
|
||||
position:relative;
|
||||
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
width:25%;
|
||||
}
|
||||
|
||||
span.firstWord {display:none;}
|
||||
|
||||
div.current {
|
||||
@@ -1548,7 +1615,11 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
padding:8px 10px 10px 10px;
|
||||
color:#fff;
|
||||
text-shadow:1px 1px rgba(0,0,0,0.2);
|
||||
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
text-align:center;
|
||||
padding:9px 5px 10px;
|
||||
font-size:11px;
|
||||
}
|
||||
strong {
|
||||
color:#777777;
|
||||
}
|
||||
@@ -1561,7 +1632,18 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
color:#686666;
|
||||
vertical-align:-2px;
|
||||
padding-left:12px;
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
padding-left:2px;
|
||||
font-size:13px;
|
||||
line-height:13px;
|
||||
vertical-align:0;
|
||||
}
|
||||
}
|
||||
.cur-label {
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
@@ -1595,13 +1677,21 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
#contact-link {
|
||||
float:right;
|
||||
border-left:1px solid #515151;
|
||||
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
width:25%;
|
||||
text-align:center;
|
||||
}
|
||||
a {
|
||||
display:block;
|
||||
color:#FFF;
|
||||
font-weight:bold;
|
||||
padding:8px 10px 11px 10px;
|
||||
text-shadow:1px 1px rgba(0,0,0,0.2);
|
||||
text-shadow:1px 1px rgba(0,0,0,0.2);
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
font-size:11px;
|
||||
padding-left:5px;
|
||||
padding-right:5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
#contact-link a, .header-row #header_user_info a, #currencies-block-top div.current, #languages-block-top div.current {
|
||||
@@ -1690,7 +1780,9 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
************************************************************************************************ */
|
||||
.footer-container {
|
||||
padding:0 0 100px 0;
|
||||
background:url(../img/footer-bg.gif) repeat-x;
|
||||
@media (min-width: $screen-sm) { // min 768px
|
||||
background:url(../img/footer-bg.gif) repeat-x;
|
||||
}
|
||||
|
||||
#footer {
|
||||
color:#777;
|
||||
@@ -1727,8 +1819,14 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
}
|
||||
#block_contact_infos {
|
||||
border-left:1px solid #515151;
|
||||
@media (max-width: $screen-xs-max) { // max 767px
|
||||
border:none;
|
||||
}
|
||||
> div {
|
||||
padding:0 0 0 5px;
|
||||
@media (max-width: $screen-xs-max) { // max 767px
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
||||
@@ -1751,10 +1849,18 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
#social_block {
|
||||
float:left;
|
||||
width:50%;
|
||||
padding:23px 30px 0 0;
|
||||
|
||||
padding:23px 30px 16px 0;
|
||||
background:#3F3F3F;
|
||||
@media (max-width: $screen-xs-max) { // max 767px
|
||||
width:100%;
|
||||
float:left;
|
||||
padding-top:5px;
|
||||
}
|
||||
ul {
|
||||
float:right;
|
||||
@media (max-width: $screen-xs-max) { // max 767px
|
||||
float:none;
|
||||
}
|
||||
|
||||
li {
|
||||
float:left;
|
||||
@@ -1803,7 +1909,11 @@ div.star_hover a, div.star a:hover { background-position: 0 -32px }
|
||||
font-size:21px;
|
||||
line-height:25px;
|
||||
text-transform:none;
|
||||
padding:0 10px 0 0;
|
||||
padding:0 10px 0 0;
|
||||
@media (max-width: $screen-xs-max) { // max 767px
|
||||
display:none;
|
||||
text-align:center;
|
||||
}
|
||||
}
|
||||
}
|
||||
.bottom-footer {
|
||||
@@ -2301,6 +2411,21 @@ p.cheque-indent {
|
||||
}
|
||||
}
|
||||
}
|
||||
.gender-line {
|
||||
margin-bottom:4px;
|
||||
padding-top:4px;
|
||||
> label {
|
||||
margin-right:10px;
|
||||
margin-bottom:0;
|
||||
}
|
||||
.radio-inline {
|
||||
|
||||
label {
|
||||
font-weight:normal;
|
||||
color:#777;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#identity, #authentication, #order-opc {
|
||||
#center_column {
|
||||
|
||||
@@ -36,7 +36,9 @@
|
||||
margin-left:14px;
|
||||
}
|
||||
}
|
||||
|
||||
td.step-by-step-date {
|
||||
width:105px;
|
||||
}
|
||||
tfoot {
|
||||
|
||||
strong {
|
||||
|
||||
@@ -128,6 +128,14 @@
|
||||
width: 270px;
|
||||
background:#484848;
|
||||
color:#fff;
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
top:69px;
|
||||
}
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
top:44px;
|
||||
left:50%;
|
||||
margin-left:270px/2*-1;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#fff;
|
||||
|
||||
@@ -104,6 +104,10 @@
|
||||
|
||||
.layered_filter_ul {
|
||||
padding:0 20px 5px;
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) { // min 768px max 991px
|
||||
padding-left:0;
|
||||
padding-right:0;
|
||||
}
|
||||
|
||||
li {
|
||||
padding-bottom:7px;
|
||||
|
||||
@@ -9,6 +9,10 @@
|
||||
max-width:222px;
|
||||
display:inline-block;
|
||||
margin-right:6px;
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-md-max) { // min 768px max 1199px
|
||||
margin-bottom:10px;
|
||||
margin-right:0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,6 +39,10 @@
|
||||
float:left;
|
||||
padding:13px 15px 7px 15px;
|
||||
margin-bottom:0;
|
||||
@media (max-width: $screen-xs-max) { // max 767px
|
||||
background:#3F3F3F;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
h4 {
|
||||
background:none;
|
||||
@@ -43,7 +51,7 @@
|
||||
text-transform:none;
|
||||
font-size:21px;
|
||||
line-height:25px;
|
||||
border:none;
|
||||
border:none;
|
||||
}
|
||||
|
||||
.block_content {overflow:hidden;}
|
||||
|
||||
@@ -3,7 +3,23 @@
|
||||
#search_block_top {
|
||||
position:absolute;
|
||||
right: 420px;
|
||||
top: 50px;
|
||||
top: 50px;
|
||||
@media (min-width: $screen-md) and (max-width: $screen-md-max) { // min 992px max 1199px
|
||||
right:295px;
|
||||
}
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) { // min 768px max 991px
|
||||
right:207px;
|
||||
}
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
right:0;
|
||||
top:85px;
|
||||
}
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
top:56px;
|
||||
right:50%;
|
||||
width:270px;
|
||||
margin-right:270px/2*-1;
|
||||
}
|
||||
|
||||
.btn.button-search {
|
||||
background:#333;
|
||||
@@ -33,6 +49,15 @@
|
||||
background:#fbfbfb;
|
||||
float: left;
|
||||
margin-right:1px;
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) { // min 768px max 991px
|
||||
width:180px;
|
||||
}
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
width:212px;
|
||||
}
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
width:212px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.ac_results {
|
||||
|
||||
@@ -16,6 +16,12 @@
|
||||
width: 100%;
|
||||
border-bottom: 3px solid #e9e9e9;
|
||||
background: #f6f6f6;
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
margin-top:80px;
|
||||
}
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
margin-top:70px;
|
||||
}
|
||||
}
|
||||
.sf-menu ul {
|
||||
position: absolute;
|
||||
@@ -46,7 +52,7 @@
|
||||
border-bottom: 3px solid #e9e9e9;
|
||||
}
|
||||
|
||||
&.sfHover > a, > a:hover, &.sfHoverForce a {
|
||||
&.sfHover > a, > a:hover, &.sfHoverForce > a {
|
||||
background: #333;
|
||||
border-bottom-color: #666666;
|
||||
color: #fff;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
@import '../../_theme_variables';
|
||||
/* block top user information */
|
||||
#header_right {
|
||||
|
||||
@@ -6,17 +7,36 @@
|
||||
clear:both;
|
||||
float: right;
|
||||
margin-top:50px;
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
margin-top:25px;
|
||||
}
|
||||
@media (max-width: $screen-xs - 1) { // max 479px
|
||||
float: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 95px;
|
||||
width: 270px;
|
||||
}
|
||||
|
||||
#shopping_cart {
|
||||
|
||||
a {
|
||||
padding:7px 10px 14px 16px;
|
||||
background:#333333;
|
||||
min-width: 270px;/* 200 */
|
||||
min-width: 270px;
|
||||
display:block;
|
||||
font-weight:bold;
|
||||
color:#777777;
|
||||
text-shadow:1px 1px rgba(0,0,0,0.2);
|
||||
overflow:hidden;
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) { // min 768px max 991px
|
||||
min-width:190px;
|
||||
}
|
||||
span.ajax_cart_product_txt, span.ajax_cart_product_txt_s {
|
||||
@media (min-width: $screen-sm) and (max-width: $screen-sm-max) { // min 768px max 991px
|
||||
display:none !important;
|
||||
}
|
||||
}
|
||||
|
||||
b {
|
||||
color:#fff;
|
||||
|
||||
@@ -45,6 +45,11 @@ ul.product_list {
|
||||
}
|
||||
}
|
||||
.product-image-container {
|
||||
text-align:center;
|
||||
|
||||
img {
|
||||
margin:0 auto;
|
||||
}
|
||||
|
||||
.quick-view {
|
||||
font:700 13px/16px Arial, Helvetica, sans-serif;
|
||||
@@ -81,6 +86,7 @@ ul.product_list.grid {
|
||||
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
width:50%;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.product-container {
|
||||
@@ -329,6 +335,9 @@ ul.product_list.list {
|
||||
}
|
||||
}
|
||||
.functional-buttons {
|
||||
@media (min-width: $screen-md) { // min 991px
|
||||
overflow:hidden;
|
||||
}
|
||||
@media (max-width: $screen-sm-max) { // max 991px
|
||||
clear:both;
|
||||
|
||||
@@ -432,15 +441,26 @@ ul.product_list.list {
|
||||
#index {
|
||||
ul.product_list.tab-pane {
|
||||
> li {
|
||||
padding-bottom:35px;
|
||||
margin-bottom:50px;
|
||||
padding-bottom:10px;
|
||||
margin-bottom:10px;
|
||||
@media (min-width: $screen-lg) { /* min 1200px */
|
||||
padding-bottom:35px;
|
||||
margin-bottom:50px;
|
||||
}
|
||||
|
||||
.availability {display:none;}
|
||||
|
||||
&.last-line {
|
||||
border:none;
|
||||
padding-bottom:0;
|
||||
margin-bottom:0;
|
||||
@media (min-width: $screen-lg) { // min 1200px
|
||||
&.last-line {
|
||||
border:none;
|
||||
padding-bottom:0;
|
||||
margin-bottom:0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: $screen-xs) and (max-width: $screen-xs-max) { // min 480px max 767px
|
||||
&.first-item-of-tablet-line {clear:none;}
|
||||
&.first-item-of-mobile-line {clear:left;}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -52,6 +52,7 @@
|
||||
{/if}
|
||||
</span>
|
||||
</td>
|
||||
{if !isset($cannotModify)}
|
||||
<td class="cart_quantity {if isset($customizedDatas.$productId.$productAttributeId) AND $quantityDisplayed == 0} text-center{/if}">
|
||||
{if isset($cannotModify) AND $cannotModify == 1}
|
||||
<span>
|
||||
@@ -83,6 +84,7 @@
|
||||
{/if}
|
||||
{/if}
|
||||
</td>
|
||||
{/if}
|
||||
<td class="cart_total">
|
||||
<span class="price" id="total_product_price_{$product.id_product}_{$product.id_product_attribute}{if $quantityDisplayed > 0}_nocustom{/if}_{$product.id_address_delivery|intval}{if !empty($product.gift)}_gift{/if}">
|
||||
{if !empty($product.gift)}
|
||||
|
||||
Reference in New Issue
Block a user