Skip to content

Commit

Permalink
Merge pull request #626 from marwyg/fix/issue-549-long-text-in-metadata
Browse files Browse the repository at this point in the history
Fix handling of long strings in modal windows and table
  • Loading branch information
Arnei authored Jun 5, 2024
2 parents b17195c + da38040 commit de92ce3
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 de92ce3

Please sign in to comment.