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="[
|
:class="[
|
||||||
{'readonly': readonly},
|
{'readonly': readonly},
|
||||||
{'disabled': disabled},
|
{'disabled': disabled},
|
||||||
|
{'no-arrow': noArrow},
|
||||||
formClasses
|
formClasses
|
||||||
]"
|
]"
|
||||||
:error="formError">
|
:error="formError">
|
||||||
@ -346,6 +347,12 @@ export default {
|
|||||||
description: "Selectbox disabled status"
|
description: "Selectbox disabled status"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
noArrow: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
description: "Selectbox show arrow"
|
||||||
|
},
|
||||||
|
|
||||||
clearable: {
|
clearable: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
|
4
resources/assets/sass/app.css
vendored
4
resources/assets/sass/app.css
vendored
@ -357,6 +357,10 @@
|
|||||||
content: "\e6e1";
|
content: "\e6e1";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.no-arrow .el-select__caret {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.el-input .el-icon-circle-close {
|
.el-input .el-icon-circle-close {
|
||||||
transform: unset !important;
|
transform: unset !important;
|
||||||
transition: unset !important;
|
transition: unset !important;
|
||||||
|
@ -121,6 +121,10 @@
|
|||||||
clearable
|
clearable
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@if (isset($attributes['no-arrow']))
|
||||||
|
:no-arrow="{{ $attributes['no-arrow'] }}"
|
||||||
|
@endif
|
||||||
|
|
||||||
@if (isset($attributes['v-disabled']))
|
@if (isset($attributes['v-disabled']))
|
||||||
:disabled="{{ $attributes['v-disabled'] }}"
|
:disabled="{{ $attributes['v-disabled'] }}"
|
||||||
@endif
|
@endif
|
||||||
|
@ -121,6 +121,10 @@
|
|||||||
clearable
|
clearable
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@if (isset($attributes['no-arrow']))
|
||||||
|
:no-arrow="{{ $attributes['no-arrow'] }}"
|
||||||
|
@endif
|
||||||
|
|
||||||
@if (isset($attributes['v-disabled']))
|
@if (isset($attributes['v-disabled']))
|
||||||
:disabled="{{ $attributes['v-disabled'] }}"
|
:disabled="{{ $attributes['v-disabled'] }}"
|
||||||
@endif
|
@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" />
|
<img src="{{ asset('public/img/akaunting-loading.gif') }}" class="w-28 h-28 -mt-16" alt="Akaunting" />
|
||||||
</div>
|
</div>
|
||||||
<!--data attr added because for none vue.js pages-->
|
<!--data attr added because for none vue.js pages-->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user