[Library | Trunk]: Move input css to library

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/assets@60266 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2021-01-18 11:56:23 +00:00
parent 04da30b6de
commit 21e50cabed
2 changed files with 65 additions and 0 deletions

64
library-css/input.scss Normal file
View File

@ -0,0 +1,64 @@
.uk-form-label {
font-size: 16px;
font-family: "Roboto", sans-serif;
color: currentColor;
}
.uk-form-hint {
font-family: "Roboto", sans-serif;
color: currentColor;
}
.uk-input.input-box {
background-color: #FAFAFA !important;
border: 1px solid transparent;
padding: 16px;
border-radius: 4px;
color: currentColor;
height: auto;
}
.uk-input.input-box:focus {
color: currentColor !important;
}
.uk-input.input-box:not(.uk-form-danger) {
border: 1px solid #D1D1D1 !important;
}
.uk-input.input-box::placeholder {
color: #7A7A7A !important;
}
.input-box .mat-select {
font-family: "Open Sans", sans-serif;
font-size: 16px;
}
.input-box .mat-select-value {
color: currentColor;
}
.input-box .mat-form-field-infix {
border: none !important;
line-height: 30px;
padding: 0 !important;
}
.input-box .mat-form-field-appearance-legacy .mat-form-field-wrapper {
padding: 0 !important;
}
.input-box .mat-form-field-appearance-legacy .mat-form-field-underline {
display: none;
}
.input-box .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
display: none;
}
.uk-input.input-box:disabled,
.input-box .mat-select-disabled .mat-select-value,
.input-box .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
color: currentColor !important;
}

View File

@ -13,3 +13,4 @@
@import "button.scss";
@import "notification.scss";
@import "modal.scss";
@import "input.scss";