如何关闭向某些元素添加移动类

时间:2018-05-30 07:48:56

标签: css angular css3 angular-material

我使用matTooltip

<a *ngFor="let card of cards"
   [routerLink]="['./', card.id]"
   routerLinkActive #rla="routerLinkActive">
  <mat-icon class="dot"
            matTooltip="{{card.name}}"
            matTooltipPosition="below"
            [ngClass]="{'active': rla.isActive}">
    dot
  </mat-icon>
</a>

一切看起来都很好: enter image description here

但是当我使用的屏幕宽度减去900px时,我得到了很大的工具提示: enter image description here

我看到了其他课程,我的意思是.mat-tooltip-handset

<div class="mat-tooltip ng-trigger ng-trigger-state mat-tooltip-handset" ng-reflect-klass="mat-tooltip" style="transform-origin: center top 0px; transform: scale(1);">
    Users
</div>

我可以创建自定义.mat-tooltip-handset并更改默认样式,但我想要禁用添加此类。 如何关闭添加.mat-tooltip-handset

0 个答案:

没有答案