Merge pull request #2699 from brkcvn/master

validation control for multi select
This commit is contained in:
Burak Civan 2022-10-27 16:48:40 +03:00 committed by GitHub
commit ebce184a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

4
public/css/app.css vendored
View File

@ -1290,6 +1290,10 @@ input[type=file]::file-selector-button:hover{
border: 1px solid #cc0000 !important;
}
.has-error .el-select__tags input {
border: transparent !important;
}
.input-money{
margin-top: 0.25rem;
width: 100%;

View File

@ -12,6 +12,10 @@
border: 1px solid #cc0000 !important;
}
.has-error .el-select__tags input {
border: transparent !important;
}
.input-money {
@apply w-full text-sm px-3 py-2.5 mt-1 rounded-lg border border-light-gray text-black placeholder-light-gray bg-white disabled:bg-gray-200 focus:outline-none focus:ring-transparent focus:border-purple;
}