如何在不填充的情况下更改 bootstrap 弹出框箭头边框颜色?
How to change the bootstrap popover arrow border color without filling it?
我想更改弹出框的边框颜色arrow.When我应用了边框颜色,箭头本身正在填充颜色。
对于弹出框主体,我只想给箭头的边框颜色。
<p>Click on button to see Popover</p>
<a href="#" id="example" class="btn btn-primary" rel="popover"
data-content="This is the body of Popover"
data-original-title="Creativity Tuts">pop
</a>
$(function () {
$('#example').popover();
});
你换.popover.right .arrow
。因此,更改 .arrow:after
将更改箭头的 "fill" 颜色,如您所见,我设置为灰色。
.popover.right .arrow {
border-right-color: aqua;
}
.popover.right .arrow:after {
border-right-color: white;
}
.popover.right .arrow {
border-right-color: red;
}
我想更改弹出框的边框颜色arrow.When我应用了边框颜色,箭头本身正在填充颜色。
对于弹出框主体,我只想给箭头的边框颜色。
<p>Click on button to see Popover</p>
<a href="#" id="example" class="btn btn-primary" rel="popover"
data-content="This is the body of Popover"
data-original-title="Creativity Tuts">pop
</a>
$(function () {
$('#example').popover();
});
你换.popover.right .arrow
。因此,更改 .arrow:after
将更改箭头的 "fill" 颜色,如您所见,我设置为灰色。
.popover.right .arrow {
border-right-color: aqua;
}
.popover.right .arrow:after {
border-right-color: white;
}
.popover.right .arrow {
border-right-color: red;
}