15 lines
640 B
CSS
15 lines
640 B
CSS
/* 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;
|
|
}
|