editable-text better text match to textarea
- Remove margins and add a border to the pseudo-element. It improves how the text of the pseudo-component matches the text from textarea and should prevent the scrollbar from appearing due to mismatch. - Swap explicit width setting for editable-text in itemBox for min-width: 0. It still allows the editable-text to be shrunk when the itemBox is narrow but does not cause mismatches between pseudo elements and the textarea.
This commit is contained in:
parent
f4d3ef94e7
commit
5ae6f88b15
2 changed files with 3 additions and 5 deletions
|
@ -50,9 +50,7 @@ editable-text {
|
|||
&:not([nowrap])::after {
|
||||
content: attr(value) ' ';
|
||||
visibility: hidden;
|
||||
margin-inline-start: 1px;
|
||||
margin-top: 1px;
|
||||
margin-bottom: 1px;
|
||||
border: 1px solid transparent;
|
||||
padding: var(--editable-text-padding-block) var(--editable-text-padding-inline);
|
||||
font: inherit;
|
||||
line-height: inherit;
|
||||
|
|
|
@ -34,8 +34,8 @@ item-box {
|
|||
flex: 1; // stretch value field as much as possible
|
||||
max-width: 100%; // stay within .meta-data when the itemBox is narrow
|
||||
.input {
|
||||
// keep input within editable-text when the itemBox is narrow
|
||||
width: calc(100% - 2*var(--editable-text-padding-inline) - 1px)
|
||||
// allow input to be shrunk by other elements when the itemBox is narrow
|
||||
min-width: 0;
|
||||
}
|
||||
// keep multiline fields as tall as they have to be unless they're focused
|
||||
&[multiline] textarea:not(:focus) {
|
||||
|
|
Loading…
Reference in a new issue