Skip to content
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

Useless background-color definition #8

Closed
slelorrain opened this issue Aug 18, 2011 · 1 comment
Closed

Useless background-color definition #8

slelorrain opened this issue Aug 18, 2011 · 1 comment

Comments

@slelorrain
Copy link

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;
}
@necolas
Copy link
Owner

necolas commented Aug 18, 2011

Good spot, thanks! Fixed now

Nerian added a commit to Nerian/css3buttons_rails_helpers that referenced this issue Oct 23, 2011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants