Commit 13d98d82 authored by Jérome Perrin's avatar Jérome Perrin

xhtml_style: fix invisible cursor in textarea with chrome

With chrome ( 85.0.4183.108 but I think it appears a few weeks/months ago )
when using erp5_xhtml_style when the cursor in the first column on the left
it's not visible, because the bold background hides it.

Default user agent spreadsheet is a 2px padding, but we have a rule applying a
padding 0 for all textarea. Revert this rule for textarea used as fields in
content.
parent 08b48c6f
Pipeline #11651 failed with stage
in 0 seconds
......@@ -443,6 +443,10 @@ fieldset.bottom > .field > label {
padding-bottom: 3px;
}
.content .field textarea {
padding: revert;
}
.content .field label {
width: 30%;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment