如何修复bootstrap 4 popover上的箭头颜色?
这是我的CSS:
.popover {
background-color: #212121;
color: $transparent_white;
}
这是我的HTML:
<div class="popover bs-tether-element show bs-tether-element-attached-top bs-tether-element-attached-center bs-tether-target-attached-bottom bs-tether-target-attached-center" style="top: 0px; left: 0px; position: absolute; transform: translateX(243px) translateY(294px) translateZ(0px);">
<div data-reactroot="" class="popover-inner">
<div class="component-rate-popover popover-content">
</div>
</div>
</div>
答案 0 :(得分:2)
试试这种方式。
.popover.popover-bottom::after,
.popover.bs-tether-element-attached-top::after{ border-bottom-color:#212121; }
答案 1 :(得分:0)
如果您想使用Sass(.SCSS),则可以使用:
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after {
border-bottom-color: #212121;
}