57 lines
905 B
SCSS
57 lines
905 B
SCSS
.ValidationField{
|
|
>*{
|
|
width: 100%;
|
|
}
|
|
.text,.ant-form-item{
|
|
margin-bottom:7px !important;
|
|
|
|
}
|
|
|
|
>span{
|
|
margin-bottom: 0px !important;
|
|
&:focus-within{
|
|
border-color: var(--primary) ;
|
|
box-shadow: 0 0 0 1px var(--primary);
|
|
cursor: pointer;
|
|
}
|
|
&:has(.is-invalid){
|
|
border-color: red !important;
|
|
|
|
}
|
|
input{
|
|
color: var(--text);
|
|
background: var(--bg);
|
|
}
|
|
|
|
input:-webkit-autofill,
|
|
input:-webkit-autofill:hover,
|
|
input:-webkit-autofill:focus,
|
|
input:-webkit-autofill:active{
|
|
-webkit-box-shadow: 0 0 0 30px white inset !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ant-upload-select{
|
|
width: 100%;
|
|
}
|
|
.Checkboxs{
|
|
padding: 4%;
|
|
}
|
|
.SearchField{
|
|
button{
|
|
background: var(--primary);
|
|
}
|
|
}
|
|
.text{
|
|
color: var(--text);
|
|
}
|
|
|
|
input:disabled{
|
|
color: var(--text) !important;
|
|
}
|
|
|
|
|
|
.error{
|
|
color: red;
|
|
} |