我正在使用ngx-tooltip(https://www.npmjs.com/package/ngx-tooltip)和angular.material.io标签,并且遇到一个问题,当md-tab容器内部的工具提示似乎在左侧被切断。我如何使工具提示浮在一切之上?有什么方法可以调整工具提示的z-index还是有其他方法吗?
代码:
<md-tab-group>
<md-tab label="Tab 1">
<!-- tooltip with dynamic html content -->
<div>
<tooltip-content #myTooltip>
<b>Very</b> <span style="color: #C21F39">Dynamic</span> <span style="color: #00b3ee">Reusable</span>
<b><i><span style="color: #ffc520">Tooltip With</span></i></b> <small>Html support</small>.
</tooltip-content>
<button [tooltip]="myTooltip">hover this button to see a tooltip</button>
</div>
</md-tab>
</md-tab-group>
答案 0 :(得分:5)
我在this plunker中复制了你的问题。为了使工具提示在md-tab容器外可见,我必须执行以下操作(请参阅this corrected plunker):
ViewEncapsulation.None
:import {ViewEncapsulation} from '@angular/core';
@Component({
...
styleUrls: ["./tabs-overview-example.css"],
encapsulation: ViewEncapsulation.None
})
overflow
属性:md-tab-group,
md-tab-body,
.mat-tab-body-wrapper,
.mat-tab-body-content
{
overflow: visible !important;
}
答案 1 :(得分:2)
假设#myTooltip
是您工具提示的引用,在您的组件中
import {Input, ElementRef, AfterViewInit, Component } from '@angular/core';
@Component(...)
export class MyComponent implements AfterViewInit {
@Input() myTooltip: ElementRef;
ngAfterViewInit() {
this.myTooltip.nativeElement.style.zIndex = '9999 !important';
}
}