feat(master/manager/device): Enhance device management with new detail view, API updates, and improved request handling
This commit is contained in:
@@ -76,3 +76,29 @@
|
||||
.table-row-select tbody tr:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
// Target icon inside the color wrapper - higher specificity
|
||||
:local(.tooltip-iconfont-wrapper) .iconfont,
|
||||
.tooltip-iconfont-wrapper .iconfont,
|
||||
.tooltip-iconfont-wrapper svg {
|
||||
color: currentcolor !important;
|
||||
}
|
||||
|
||||
// Even more specific - target within Button
|
||||
.ant-btn .tooltip-iconfont-wrapper .iconfont {
|
||||
color: currentcolor !important;
|
||||
}
|
||||
|
||||
// Most aggressive - global selector
|
||||
:global {
|
||||
.ant-btn .tooltip-iconfont-wrapper .iconfont,
|
||||
.ant-btn .tooltip-iconfont-wrapper svg {
|
||||
color: currentcolor !important;
|
||||
}
|
||||
|
||||
// Use CSS variable approach
|
||||
.ant-btn[style*='--icon-button-color'] .iconfont,
|
||||
.ant-btn[style*='--icon-button-color'] svg {
|
||||
color: var(--icon-button-color) !important;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user