/* 隐藏monitor widget中所有negative颜色的元素 */
.widget-type-monitor .color-negative {
    display: none !important;
}

/* 隐藏monitor widget中所有使用negative颜色填充的SVG图标 */
.widget-type-monitor [fill="var(--color-negative)"] {
    display: none !important;
}

/* 如果还有其他SVG元素使用negative颜色作为stroke */
.widget-type-monitor [stroke="var(--color-negative)"] {
    display: none !important;
}