This commit is contained in:
Jun Pataleta 2024-06-05 12:13:05 +08:00
commit 2a216f639f
No known key found for this signature in database
GPG Key ID: F83510526D99E2C7
3 changed files with 14 additions and 12 deletions

View File

@ -23,9 +23,6 @@
}
.mform .d-flex {
textarea.form-control {
width: 100%;
}
.fitem {
margin: 0.1rem 0.25rem 0.1rem 0 !important; /* stylelint-disable-line declaration-no-important */
}
@ -37,9 +34,14 @@
}
// Override the default bootstrap form-control width.
.d-flex > .form-control {
width: auto;
max-width: 100%;
.d-flex {
& > .form-control {
width: auto;
max-width: 100%;
}
& > textarea.form-control {
width: 100%;
}
}
// Override the default bootstrap custom-select width.

View File

@ -32926,9 +32926,6 @@ body.path-question-type .mform fieldset.hidden {
margin-bottom: 4px;
}
.mform .d-flex textarea.form-control {
width: 100%;
}
.mform .d-flex .fitem {
margin: 0.1rem 0.25rem 0.1rem 0 !important; /* stylelint-disable-line declaration-no-important */
}
@ -32942,6 +32939,9 @@ body.path-question-type .mform fieldset.hidden {
width: auto;
max-width: 100%;
}
.d-flex > textarea.form-control {
width: 100%;
}
.custom-select {
width: auto;

View File

@ -32926,9 +32926,6 @@ body.path-question-type .mform fieldset.hidden {
margin-bottom: 4px;
}
.mform .d-flex textarea.form-control {
width: 100%;
}
.mform .d-flex .fitem {
margin: 0.1rem 0.25rem 0.1rem 0 !important; /* stylelint-disable-line declaration-no-important */
}
@ -32942,6 +32939,9 @@ body.path-question-type .mform fieldset.hidden {
width: auto;
max-width: 100%;
}
.d-flex > textarea.form-control {
width: 100%;
}
.custom-select {
width: auto;