-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic Blue Circular Label has Blue Background #47
Comments
Semantic-UI-LESS/definitions/elements/label.less Lines 784 to 788 in 1cff5db
I think that |
This happens to all colours of basic labels (not just blue) |
Someone already created a Pull Request. Hope it merged soon. |
This comment was marked as spam.
This comment was marked as spam.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I notice label has this rule:
.ui.basic.blue.label {
background-color: @basicBackground !important;
color: @blue !important;
border-color: @blue !important;
}
@basicBackground is a variable designed to specify the whole background property - not simply a color (none @white). Therefore, this is an invalid value and it falls back to the blue background.
I believe background-color should simply be set to @white for this rule. I made an override locally, but am thinking to submit a PR for this.
Without new Rule:
With new Rule:
The text was updated successfully, but these errors were encountered: