Fix dropdown menu style inside panel header

This commit is contained in:
Tusooa Zhu 2022-04-06 20:04:36 -04:00
parent 0e56ac1c2b
commit 041c72b07c
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 25 additions and 0 deletions

View File

@ -149,5 +149,30 @@
}
}
.button-default.dropdown-item {
&,
i[class*=icon-] {
color: $fallback--text;
color: var(--btnText, $fallback--text);
}
&:active {
background-color: $fallback--fg;
background-color: var(--btnPressed, $fallback--fg);
color: $fallback--text;
color: var(--btnPressedText, $fallback--text);
}
&:disabled {
color: $fallback--text;
color: var(--btnDisabledText, $fallback--text);
}
&.toggled {
color: $fallback--text;
color: var(--btnToggledText, $fallback--text);
}
}
}
</style>