You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes the input container hints causing an overflow on the parent by a couple of pixels. Note that this can be fixed alternatively by setting `line-height: 1` on the wrapper, however it causes multi-line hints to be a little too compact. I went with 1.2 since it seems to be the closest to the browser defaults for `normal`.
Fixesangular#4051.
Bug, feature request, or proposal:
Bug: MdTab shows the vertical scroll bar when it contains an md-hint inside input-container.
What is the expected behavior?
MdTab not showing the vertical scroll bar when using md-hint inside
What is the current behavior?
It's showing vertical scrollbar when I use md-hint in input-container
What are the steps to reproduce?
Try to put and remove the md-hint of this plunker: https://plnkr.co/edit/3jAsCcMtnDr3Sh39LMap?p=preview
What is the use-case or motivation for changing an existing behavior?
Use md-hint
Which versions of Angular, Material, OS, browsers are affected?
@angular/animations: 4.0.1
@angular/cli: 1.0.0
@angular/common: 4.0.1
@angular/compiler: 4.0.1
@angular/compiler-cli: 4.0.1
@angular/core: 4.0.1
@angular/flex-layout: 2.0.0-beta.7
@angular/forms: 4.0.1
@angular/http: 4.0.1
@angular/material: 2.0.0-beta.3
@angular/platform-browser: 4.0.1
@angular/platform-browser-dynamic: 4.0.1
@angular/platform-server: 4.0.1
@angular/router: 4.0.1
Is there anything else we should know?
As a workaround I'm using in styles.css
.mat-tab-body {
overflow-y: hidden !important;
}
but not sure about side efects of doing it.
The text was updated successfully, but these errors were encountered: