fix: prevent 100% width radio buttons (#36262)
as part of [Remove fomantic form
module](eddf875992 (diff-c34b74004deb63fb4f8a8549ef9d822b9839db0b69ae2c0cdacc05ce3d5d5682))
radio buttons get caught in crossfire and recieve `width: 100%` this is
particularly noticeable on the `user/settings/applications` page which
has many radio buttons.
This continues using an opt out `input:not([type="checkbox"],
[type="radio"])` to prevent this.
Signed-off-by: alphazeba <33792307+alphazeba@users.noreply.github.com>
This commit is contained in:
parent
85dd16b3fc
commit
d0cb198c89
@ -33,7 +33,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ui.form textarea,
|
.ui.form textarea,
|
||||||
.ui.form input {
|
.ui.form input:not([type="checkbox"], [type="radio"]) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user