updates
This commit is contained in:
parent
1271b8a60b
commit
47b06aa3cf
|
|
@ -24,13 +24,6 @@
|
|||
font-style: normal;
|
||||
}
|
||||
|
||||
.wk-icon {
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
color: #0041ff;
|
||||
}
|
||||
|
||||
[class^="rango-"], [class*=" rango-"] {
|
||||
/* use !important to prevent issues with browser extensions that change fonts */
|
||||
font-family: 'Webkul Rango' !important;
|
||||
|
|
|
|||
|
|
@ -1463,6 +1463,9 @@
|
|||
|
||||
.account-content .sidebar {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.account-content .sidebar .customer-sidebar {
|
||||
border-right: 1px solid #E5E5E5;
|
||||
}
|
||||
|
||||
|
|
@ -12755,6 +12758,7 @@ body {
|
|||
}
|
||||
|
||||
#top #account + .account-modal {
|
||||
top: 40px;
|
||||
right: 10px;
|
||||
z-index: 100;
|
||||
height: -webkit-max-content;
|
||||
|
|
|
|||
|
|
@ -1069,7 +1069,8 @@ module.exports = Cancel;
|
|||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
__webpack_require__(12);
|
||||
module.exports = __webpack_require__(69);
|
||||
__webpack_require__(69);
|
||||
module.exports = __webpack_require__(70);
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
|
@ -36779,5 +36780,11 @@ if (false) {
|
|||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
/* 70 */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ })
|
||||
/******/ ]);
|
||||
|
|
@ -202,6 +202,7 @@ body {
|
|||
+ .account-modal {
|
||||
@extend .modal-dialog;
|
||||
|
||||
top: 40px;
|
||||
right: 10px;
|
||||
z-index: 100;
|
||||
height: max-content;
|
||||
|
|
|
|||
|
|
@ -666,7 +666,10 @@
|
|||
.account-content {
|
||||
.sidebar {
|
||||
height: 100%;
|
||||
border-right: 1px solid $border-general;
|
||||
|
||||
.customer-sidebar {
|
||||
border-right: 1px solid $border-general;
|
||||
}
|
||||
|
||||
.customer-sidebar {
|
||||
.account-details {
|
||||
|
|
|
|||
|
|
@ -14,13 +14,15 @@
|
|||
|
||||
<div class="col-6">
|
||||
<div class="row customer-rating">
|
||||
<h2 class="full-width">{{ __('shop::app.reviews.write-review') }}</h2>
|
||||
<h2 class="full-width">
|
||||
{{ __('shop::app.reviews.write-review') }}
|
||||
</h2>
|
||||
|
||||
<form
|
||||
method="POST"
|
||||
class="review-form"
|
||||
action="{{ route('shop.reviews.store', $product->product_id ) }}"
|
||||
@submit.prevent="onSubmit">
|
||||
@submit.prevent="onSubmit"
|
||||
action="{{ route('shop.reviews.store', $product->product_id ) }}">
|
||||
|
||||
@csrf
|
||||
|
||||
|
|
@ -29,7 +31,7 @@
|
|||
{{ __('admin::app.customers.reviews.rating') }}
|
||||
</label>
|
||||
<star-ratings ratings="5" size="24" editable="true"></star-ratings>
|
||||
<span class="control-error" v-if="errors.has('rating')">
|
||||
<span :class="`control-error ${errors.has('rating') ? '' : 'hide'}`" v-if="errors.has('rating')">
|
||||
@{{ errors.first('rating') }}
|
||||
</span>
|
||||
</div>
|
||||
|
|
@ -45,7 +47,9 @@
|
|||
v-validate="'required'"
|
||||
value="{{ old('title') }}" />
|
||||
|
||||
<span class="control-error" v-if="errors.has('title')">@{{ errors.first('title') }}</span>
|
||||
<span :class="`control-error ${errors.has('title') ? '' : 'hide'}`">
|
||||
@{{ errors.first('title') }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@if (core()->getConfigData('catalog.products.review.guest_review') && ! auth()->guard('customer')->user())
|
||||
|
|
@ -54,7 +58,9 @@
|
|||
{{ __('shop::app.reviews.name') }}
|
||||
</label>
|
||||
<input type="text" class="control" name="name" v-validate="'required'" value="{{ old('name') }}">
|
||||
<span class="control-error" v-if="errors.has('name')">@{{ errors.first('name') }}</span>
|
||||
<span :class="`control-error ${errors.has('name') ? '' : 'hide'}`">
|
||||
@{{ errors.first('name') }}
|
||||
</span>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
|
@ -69,7 +75,7 @@
|
|||
v-validate="'required'"
|
||||
value="{{ old('comment') }}">
|
||||
</textarea>
|
||||
<span class="control-error" v-if="errors.has('comment')">
|
||||
<span :class="`control-error ${errors.has('comment') ? '' : 'hide'}`">
|
||||
@{{ errors.first('comment') }}
|
||||
</span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -2,10 +2,13 @@ const { mix } = require("laravel-mix");
|
|||
require("laravel-mix-merge-manifest");
|
||||
|
||||
var publicPath = "../../../resources/themes/velocity/assets";
|
||||
|
||||
if (mix.inProduction()) {
|
||||
publicPath = 'publishable/assets';
|
||||
}
|
||||
|
||||
publicPath = 'publishable/assets';
|
||||
|
||||
mix.setPublicPath(publicPath).mergeManifest();
|
||||
mix.disableNotifications();
|
||||
|
||||
|
|
@ -15,8 +18,6 @@ mix
|
|||
"js/velocity.js"
|
||||
)
|
||||
|
||||
.copy(path.resolve('src/Resources/assets/images'), publicPath + '/images')
|
||||
.copy(path.resolve('src/Resources/assets/fonts'), publicPath + '/fonts')
|
||||
.sass(
|
||||
__dirname + '/src/Resources/assets/sass/admin.scss',
|
||||
__dirname + '/' + publicPath + '/css/velocity-admin.css'
|
||||
|
|
|
|||
Loading…
Reference in New Issue