我如何使用绿色
我怎么能禁用" .ladda-button [禁用]:悬停"按钮颜色,因为此类在页面加载后添加到jQuery中
.ladda-button [disabled],.ladda-button [disabled]:hover,.ladda-button [data-loading],.ladda-button [data-loading]:hover { background-color:none; }
.ladda-button[disabled],
.ladda-button[disabled]:hover,
.ladda-button[data-loading],
.ladda-button[data-loading]:hover {
cursor: default;
background-color: #111;
}
.btn-success.disabled, .btn-success:disabled {
background-color: #00644a;
border-color: #00644a;
}
.ladda-button[disabled],
.ladda-button[disabled]:hover,
.ladda-button[data-loading],
.ladda-button[data-loading]:hover {
background-color: none;
}
答案 0 :(得分:0)
将以下行添加到您的css
.ladda-button[disabled] .ladda-button[disabled]:hover {
background-color: rgba(0, 0, 255, 0) !important
}
在这里,给出你想要的背景颜色。我透明了。