我在网页中包含了Bootstrap-4微调器(如此处所述),但似乎只能使用文本颜色实用程序中的颜色(主要,警告,成功...),这是非常有限的。 我希望能够将网页的主题(因此也将微调框的颜色)更改为不是文本颜色实用程序之一的颜色。 有可能这样做吗?
答案 0 :(得分:0)
您可以做的一件事是
<div class="spinner-border" role="status" style="color: darkgreen">
<span class="sr-only">Loading...</span>
</div>
答案 1 :(得分:0)
您可以将bootstrap spinner的颜色更改为任何您喜欢的颜色。您只需要设置微调器的color
属性即可。
.text-red {
color: red;
}
.text-blue {
color: blue;
}
.text-orange {
color: orange;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="spinner-border text-red" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-border text-blue" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="spinner-border text-orange" role="status">
<span class="sr-only">Loading...</span>
</div>