From 3f408732862ed3d7ee65ae6337e1d40de4cf454e Mon Sep 17 00:00:00 2001 From: tiz170 Date: Sat, 12 Nov 2022 16:18:40 -0800 Subject: [PATCH] fix input bar styling for controls review page --- .../form-runner-bootstrap5-override.less | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/form-runner/jvm/src/main/assets/apps/fr/style/form-runner-bootstrap5-override.less b/form-runner/jvm/src/main/assets/apps/fr/style/form-runner-bootstrap5-override.less index dcdedca2ff..ac387fbd37 100644 --- a/form-runner/jvm/src/main/assets/apps/fr/style/form-runner-bootstrap5-override.less +++ b/form-runner/jvm/src/main/assets/apps/fr/style/form-runner-bootstrap5-override.less @@ -409,4 +409,27 @@ border-top: 1px solid #ddd; } + // controls review page + .xforms-field, #text-controls-section≡grid-2-grid≡htmlarea-control≡xf-695, + #text-controls-section≡grid-1-grid≡textarea-control≡≡c, #text-controls-section≡grid-1-grid≡textarea-counter-control≡field≡≡c { + border: 1px solid #ccc; + border-radius: 4px; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + background-color: #f2f2f2; + cursor: not-allowed; + + display: inline-block; + box-sizing: border-box; + width: 100%; + padding: 4px 6px; + margin-bottom: 0; + line-height: 20px; + font-size: 13px; + color: black; + background-image: none; + white-space: normal; + word-wrap: break-word; + min-height: 28px; + height: auto; + } } \ No newline at end of file