I have a md-select
inside md-grid-list
which is part of md-card
content that looks like this:
<md-grid-tile>
<md-select id="typ" [(ngModel)]="doc.docType" placeholder="Typ Dokumentu">
<md-option *ngFor="let state of states" [value]="state">{{ state}}</md-option>
</md-select>
<button class="clear" [hidden]="!doc.docType" (click)="clear('docType')">X</button>
</md-grid-tile>
As you can read, 'X' buttor renders when there is value selected and clears it on click event. Just sets md-select
model property to undefined
Now, I would like to position 'X' button over the mat-select-arrow
to hide/cover it.
Can you help me to css style the 'clear' button to move a bit left and hide that arrow?
When setting margin-right
it only moves the whole md-select
left but does not cover the arrow.
I believe this can be helpful to many.
Thanks!