Merge pull request #2461 from brkcvn/master

Frontend feedbacks
This commit is contained in:
Burak Civan 2022-06-15 14:43:53 +03:00 committed by GitHub
commit 9c7d89c355
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 739 additions and 12108 deletions

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

View File

@ -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,

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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-->