Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Fixed CSS positioning of hidden input fields: "Focus returns to top o…
Browse files Browse the repository at this point in the history
…f page when selecting rate feedback". Bug 625411.
  • Loading branch information
Fred Wenzel committed Jan 21, 2011
1 parent b972759 commit 234ed5d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions media/css/release.css
Expand Up @@ -472,12 +472,15 @@ footer:hover {
}
#rate table tbody td input {
position: absolute;
left: -1000em;
top: -1000em;
width: 0;
height: 0;
left: -1000em;
width: 0;
height: 0;
opacity: 0;
}
[dir="rtl"] #rate table tbody td input {
left: auto;
right: -1000em;
}

#rate table input[value="1"] + label { background-position: 0px 0; }
#rate table input[value="2"] + label { background-position: -50px 0; }
Expand Down

0 comments on commit 234ed5d

Please sign in to comment.