blob: e157dc692010379e26d20711618c902d5fe7f5d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* apply.lloydsbank.co.uk - radio buttons are misplaced
* Bug #1575000 - https://bugzilla.mozilla.org/show_bug.cgi?id=1575000
* WebCompat issue #34969 - https://webcompat.com/issues/34969
*
* Radio buttons are displaced to the left due to positioning issue of ::before
* pseudo element, adding position relative to it's parent fixes the issue.
*/
.radio-content-field .radio.inline label span.text {
position: relative;
}
|