Merge pull request #6414 from devansh-webkul/calender-issue-on-customer-account

Calender Icon On Customer Account Fixed #6332
This commit is contained in:
Jitendra Singh 2022-05-16 13:47:41 +05:30 committed by GitHub
commit 41e5842612
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
{
"/js/shop.js": "/js/shop.js?id=34684ef2b5b3c24817b4",
"/css/shop.css": "/css/shop.css?id=018e0f910649f28ef1f0"
"/css/shop.css": "/css/shop.css?id=a7c7bfc61859923d2d79"
}

View File

@ -4133,6 +4133,20 @@ ol.breadcrumb {
}
}
.account-content {
.account-layout {
.control-group {
&.date,
&.datetime {
&::after {
position: relative;
right: 0;
}
}
}
}
}
/**
* Header css start here.
*/

View File

@ -57,10 +57,12 @@
{!! view_render_event('bagisto.shop.customers.account.profile.edit.gender.after') !!}
<div class="control-group" :class="[errors.has('date_of_birth') ? 'has-error' : '']">
<div class="control-group date" :class="[errors.has('date_of_birth') ? 'has-error' : '']">
<label for="date_of_birth">{{ __('shop::app.customer.account.profile.dob') }}</label>
<input type="date" class="control" name="date_of_birth" value="{{ old('date_of_birth') ?? $customer->date_of_birth }}" v-validate="" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.dob') }}&quot;">
<date>
<input type="date" class="control" name="date_of_birth" value="{{ old('date_of_birth') ?? $customer->date_of_birth }}" v-validate="" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.dob') }}&quot;">
</date>
<span class="control-error" v-if="errors.has('date_of_birth')">@{{ errors.first('date_of_birth') }}</span>
</div>