[Library | Trunk]: Inputs: Fix padding on textarea
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/assets@60446 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
c9c4990fdf
commit
8026a091d2
|
@ -33,6 +33,13 @@
|
|||
color: #7A7A7A !important;
|
||||
}
|
||||
|
||||
.input-box .mat-chip-list-wrapper,
|
||||
.input-borderless .mat-chip-list-wrapper {
|
||||
max-height: 150px;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* Input Box */
|
||||
.input-box {
|
||||
background-color: #FAFAFA !important;
|
||||
|
@ -46,6 +53,10 @@
|
|||
transition-duration: 0.5s;
|
||||
}
|
||||
|
||||
.input-box .uk-textarea {
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
.input-box .uk-input:focus,
|
||||
.input-box .uk-textarea:focus,
|
||||
.input-box:focus{
|
||||
|
@ -117,6 +128,7 @@
|
|||
max-height: 0;
|
||||
transition: max-height 0.6s linear;
|
||||
overflow: hidden;
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
.input-box .tools.focused {
|
||||
|
|
Loading…
Reference in New Issue