commit
9c7d89c355
12826
public/css/app.css
vendored
12826
public/css/app.css
vendored
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 102 KiB |
@ -5,6 +5,7 @@
|
||||
:class="[
|
||||
{'readonly': readonly},
|
||||
{'disabled': disabled},
|
||||
{'no-arrow': noArrow},
|
||||
formClasses
|
||||
]"
|
||||
:error="formError">
|
||||
@ -346,6 +347,12 @@ export default {
|
||||
description: "Selectbox disabled status"
|
||||
},
|
||||
|
||||
noArrow: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
description: "Selectbox show arrow"
|
||||
},
|
||||
|
||||
clearable: {
|
||||
type: Boolean,
|
||||
default: true,
|
||||
|
4
resources/assets/sass/app.css
vendored
4
resources/assets/sass/app.css
vendored
@ -357,6 +357,10 @@
|
||||
content: "\e6e1";
|
||||
}
|
||||
|
||||
.no-arrow .el-select__caret {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.el-input .el-icon-circle-close {
|
||||
transform: unset !important;
|
||||
transition: unset !important;
|
||||
|
@ -121,6 +121,10 @@
|
||||
clearable
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['no-arrow']))
|
||||
:no-arrow="{{ $attributes['no-arrow'] }}"
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['v-disabled']))
|
||||
:disabled="{{ $attributes['v-disabled'] }}"
|
||||
@endif
|
||||
|
@ -121,6 +121,10 @@
|
||||
clearable
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['no-arrow']))
|
||||
:no-arrow="{{ $attributes['no-arrow'] }}"
|
||||
@endif
|
||||
|
||||
@if (isset($attributes['v-disabled']))
|
||||
:disabled="{{ $attributes['v-disabled'] }}"
|
||||
@endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
<div data-loading-content v-if="content_loading" class="fixed w-4/5 h-screen hidden lg:flex items-center justify-center bg-body top-0 bottom-0 ltr:right-0 rtl:left-0 -mx-1 z-50">
|
||||
<div data-loading-content v-if="content_loading" class="fixed w-4/5 h-screen lg:flex items-center justify-center bg-body top-0 bottom-0 ltr:right-0 rtl:left-0 -mx-1 z-50">
|
||||
<img src="{{ asset('public/img/akaunting-loading.gif') }}" class="w-28 h-28 -mt-16" alt="Akaunting" />
|
||||
</div>
|
||||
<!--data attr added because for none vue.js pages-->
|
||||
|
Loading…
x
Reference in New Issue
Block a user