We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
It's not a real issue but you have defined background-color for ".button-group.minor-group .button:active" twice.
Line 373 :
.button-group.minor-group .button:hover, .button-group.minor-group .button:focus, .button-group.minor-group .button:active { background-color: #599bdc; } .button-group.minor-group .button:active, .button-group.minor-group .button.active { background-color: #3072b3; }
Should be :
.button-group.minor-group .button:hover, .button-group.minor-group .button:focus { background-color: #599bdc; } .button-group.minor-group .button:active, .button-group.minor-group .button.active { background-color: #3072b3; }
The text was updated successfully, but these errors were encountered:
dcb3472
Good spot, thanks! Fixed now
Sorry, something went wrong.
fix necolas/css3-github-buttons#8
e1c5808
Successfully merging a pull request may close this issue.
Hello,
It's not a real issue but you have defined background-color for ".button-group.minor-group .button:active" twice.
Line 373 :
Should be :
The text was updated successfully, but these errors were encountered: