我已经包含了 Bootstrap CSS,现在想class
在我自己的 CSS 文件中添加一个自定义。
它只是.btn-success
带有修改颜色和class
名称的精确副本:
.btn-mine {
color: #ffffff;
background-color: #ff8d53;
border-color: #ef8343;
}
.btn-mine:hover,
.btn-mine:focus,
.btn-mine:active,
.btn-mine.active,
.open .dropdown-toggle.btn-mine {
color: #ffffff;
background-color: #ea793e;
border-color: #dc5930;
}
.btn-mine:active,
.btn-mine.active,
.open .dropdown-toggle.btn-mine {
background-image: none;
}
.btn-mine.disabled,
.btn-mine[disabled],
fieldset[disabled] .btn-mine,
.btn-mine.disabled:hover,
.btn-mine[disabled]:hover,
fieldset[disabled] .btn-mine:hover,
.btn-mine.disabled:focus,
.btn-mine[disabled]:focus,
fieldset[disabled] .btn-mine:focus,
.btn-mine.disabled:active,
.btn-mine[disabled]:active,
fieldset[disabled] .btn-mine:active,
.btn-mine.disabled.active,
.btn-mine[disabled].active,
fieldset[disabled] .btn-mine.active {
background-color: #ff8d53;
border-color: #ff6314;
}
.btn-mine .caret {
border-top-color: #fff;
}
.dropup .btn-mine .caret {
border-bottom-color: #fff;
}
不幸的是,这不起作用,如下所示:http: //jsfiddle.net/qG2n6/。
我知道有许多 3rd-party Bootstrap 按钮制造商可以创建任何颜色的按钮。
但我更想知道为什么我上面的方法不起作用。
.btn-success
我复制了原始 Bootstrap CSS中包含的所有样式,只修改了颜色和class
名称,我希望它可以工作。
我在这里想念什么?