Skip to content

Commit

Permalink
Fix handling of long strings in modal windows and table
Browse files Browse the repository at this point in the history
  • Loading branch information
marwyg committed Jun 5, 2024
1 parent 1522ce9 commit da38040
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,20 @@ div.main-view.stub, div.full-col > div.stub {
.select-container > p {
margin-bottom: 10px;
}

h2 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

table {
table-layout: fixed;
}

.editable {
word-wrap: anywhere;
}
}

.modal-animation {
Expand Down Expand Up @@ -533,7 +547,13 @@ table.main-tbl {
display: none !important;
}

td{
th,
td {
max-width: 800px;
word-wrap: anywhere;
}

td {
.fa-check {
float: right;
color: $green;
Expand Down

0 comments on commit da38040

Please sign in to comment.