-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Closed
Description
Bug, feature request, or proposal:
beta 7 - Issue with mat-select-underline. Not showing sometimes, inside of table and other random times.
<dt>CTU</dt>
<dd>
<div class="row" style="margin-top: 20px;">
<div class="col-sm-6">
<md-select [(ngModel)]="id_ctu" placeholder="CTU" (change)="onChangeCTUSelect($event)">
<md-option *ngFor="let ctu of ctus" [value]="ctu._id">{{ctu.unit}}</md-option>
</md-select>
</div>
</div>
</dd>
<dt style="margin-top: 10px;">MP</dt>
<dd>
<div class="row" style="margin-top: 20px;">
<div class="col-sm-6">
<md-select [(ngModel)]="id_mp" placeholder="MP" (change)="onChangeMPSelect($event)">
<md-option *ngFor="let mp of mps" [value]="mp._id">{{mp.unit}}</md-option>
</md-select>
</div>
</div>
</dd>
<dt>Accounting Code</dt>
<dd>
<div class="row" style="margin-top: 20px;">
<div class="col-sm-6">
<md-select [(ngModel)]="id_accountingcode" placeholder="Accounting Code" (change)="onChangeAccountingCodeSelect($event)">
<md-option *ngFor="let accountingcode of accountingcodes" [value]="accountingcode._id">{{accountingcode.description}}</md-option>
</md-select>
</div>
</div>
<div class="row" style="margin-top: 20px;">
<div class="col-sm-6">
<md-select [(ngModel)]="subaccounting_code" placeholder="Subaccounting Code" (change)="onChangeSubaccountingCodeSelect($event)">
<md-option *ngFor="let subaccountingcode of getSubAccountingCodes()" [value]="subaccountingcode.description">{{ subaccountingcode.description }}</md-option>
</md-select>
</div>
</div>
</dd>
Same code for both, two has underlines, two does not.
Now I have messed with the styling in chrome and have increased the class mat-select-underline to height 2px instead of 1px and this is the result I get.
I am also getting similar results inside a table.
Above are in chrome. Below are in safari.
Metadata
Metadata
Assignees
Labels
No labels