gpt4 book ai didi

angular - 如何将自定义类添加到 ng-bootstrap 工具提示

转载 作者:行者123 更新时间:2023-12-03 20:27:13 26 4
gpt4 key购买 nike

我正在尝试将自定义类添加到 ng-bootstrap 工具提示,但它不会应用它。

HTML

<i class="fa fa-info-circle" aria-hidden="true" [ngbTooltip]="infoTooltipTemplate" [tooltipClass]="info-tooltip" placement="top"></i>

CSS
.info-tooltip .tooltip-inner {
max-width: 340px;
text-align: left;
background-color: #fff;
color: #000;
border-radius: 30px;
box-shadow: 0 0 3px #00000040;
}

工具提示的样式仍然与默认样式相同。我正在使用 @ng-bootstrap 版本 4.2.2 开发 Angular 7

最佳答案

这是来自 ng-bootstrap 网站的自定义类的示例。链接到 stackblitz:link
HTML

<button type="button" class="btn btn-outline-secondary" ngbTooltip="Nice class!"
tooltipClass="my-custom-class">
Tooltip with custom class
</button>
CSS
.my-custom-class .tooltip-inner {
background-color: darkgreen;
font-size: 125%;
}
.my-custom-class .arrow::before {
border-top-color: darkgreen;
}
我希望这有帮助。
更新
正如 Devin 在评论中提到的,您必须在全局样式表中添加自定义样式。谢谢德文。

关于angular - 如何将自定义类添加到 ng-bootstrap 工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58709198/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com