@angular/cdk
Version:
Angular Material Component Development Kit
27 lines (22 loc) • 687 B
CSS
textarea.cdk-textarea-autosize {
resize: none;
}
textarea.cdk-textarea-autosize-measuring {
padding: 2px 0 ;
box-sizing: content-box ;
height: auto ;
overflow: hidden ;
}
textarea.cdk-textarea-autosize-measuring-firefox {
padding: 2px 0 ;
box-sizing: content-box ;
height: 0 ;
}
@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.cdk-text-field-autofill-monitored:-webkit-autofill {
animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
animation: cdk-text-field-autofill-end 0s 1ms;
}