然后在 CSS 中: .ui-button-success.ui--6ren">
gpt4 book ai didi

html - 悬停时 Primeng 禁用按钮会改变颜色

转载 作者:行者123 更新时间:2023-11-28 15:05:30 27 4
gpt4 key购买 nike

我已经更改了悬停时的 p 按钮样式。

我的问题是当按钮状态设置为禁用并且我悬停它时颜色也会改变。

<button pButton type="submit" label="Launch @RT" class="ui-button-success color" [disabled]="groupList.length+ejList.length>0 ? false: true"></button>

然后在 CSS 中:

.ui-button-success.ui-state-disabled, .ui-widget:hover:disabled, .ui-button-success.color{
background-color: white !important;
color: #00965E;
}
.ui-button.ui-button-success:hover
{
background-color: #00965E !important;
color: white;
}

当按钮处于禁用状态并将其悬停时,如何取消更改按钮样式。但是当它启用时改变颜色

最佳答案

尝试在此处使用 :not() 选择器和 :hover

.ui-button-success {
background-color: white;
color: #00965E;
}

.ui-button-success:not([disabled]):hover {
background-color: #00965E;
color: white;
}
<button type="button" class="ui-button-success color" disabled>foobar</button>
<button type="button" class="ui-button-success color">foobar</button>

关于html - 悬停时 Primeng 禁用按钮会改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49446287/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com