-
Notifications
You must be signed in to change notification settings - Fork 42
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
Warnings and Code smells #73
Comments
Solution: Apply the following changes to resolve the warnings in the dialog, carousel, treetable, and any other components where the warning appears. Before: .p-dialog-header-icon {
@include action-icon();
margin-right: $inlineSpacing;
&:last-child {
margin-right: 0;
}
} After: .p-dialog-header-icon {
@include action-icon();
& {
margin-right: $inlineSpacing;
}
&:last-child {
margin-right: 0;
}
} This change should be applied to the dialog component in the file |
@HarshThink please submit a PR! |
Warnings and Code smells primefaces#73
Warnings and Code smells primefaces#73
Warnings and Code smells primefaces#73
Hello there!
I get several deprecation warnings from sass with your theme-base:
I also get a lot of "Unexpected duplicate selector" warnings from my sonarqube because of the theme-base. I can ignore the folder from being scanned but there are some very strange code fragments in your library you should check. For example: /theme-base/components/input/_checkbox.scss line 40-60 and 62-82 contain the exact same code.
Greetings
Ocean
The text was updated successfully, but these errors were encountered: