Preserve QExcell text wrapping

This commit is contained in:
Курнат Андрей
2026-06-01 07:34:23 +03:00
parent a4314be285
commit 4822ba84a0
6 changed files with 105 additions and 24 deletions
+15 -2
View File
@@ -722,12 +722,18 @@ button {
background: #f8fbff;
}
.sheet-grid td.is-linked input {
.sheet-grid td.is-linked input,
.sheet-grid td.is-linked textarea {
color: #0f5fae;
text-decoration: underline;
}
.sheet-grid input {
.sheet-grid td.is-wrapped {
height: 58px;
}
.sheet-grid input,
.sheet-grid textarea {
width: 100%;
height: 100%;
border: 0;
@@ -736,6 +742,13 @@ button {
background: transparent;
}
.sheet-grid textarea {
min-height: 58px;
padding-top: 6px;
padding-bottom: 6px;
resize: none;
}
.chart-board {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));