blob: 258841fdda3eeb896dd251fdb6382462ad946704 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* gaana.com - unable to accept T&C and Privacy Policy
* Bug #1610016 - https://bugzilla.mozilla.org/show_bug.cgi?id=1610016
* WebCompat issue #29886 - https://webcompat.com/issues/29886
*
* Unable to click on checkboxes due to input element floating to the right.
* More info https://bugzilla.mozilla.org/show_bug.cgi?id=997189. Adding explicit
* positioning to the input fixes the issue
*/
.agree_btns input {
top: 0;
left: 0;
}
|