Skip to content

Commit

Permalink
fix overflows in version table/difference details
Browse files Browse the repository at this point in the history
  • Loading branch information
qqmyers committed Dec 19, 2024
1 parent d69b052 commit b7bd6a7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main/webapp/resources/css/structure.css
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,16 @@ div.dvnDifferanceTable > div.ui-datatable-tablewrapper > table > tbody > tr, div
div.dvnDifferanceTable > div.ui-datatable-tablewrapper > table > tbody > tr, div.dvnDifferanceTable > div.ui-datatable-tablewrapper > table > tbody > tr > td:last-child {border-right-width:0;}
div.dvnDifferanceTable div.ui-datatable-tablewrapper table td.versionValue {width:30%;}
div.dvnDifferanceTable div.ui-datatable-tablewrapper table td.versionDetails {width:35%;}
div.dvnDifferanceTable .diffDetailBlock {display:block;}
div.dvnDifferanceTable .diffDetailBlock {
display:block;
word-break:break-all;
}

div.dvnDifferanceTable .versionValue {
word-break:break-all;
}
div[id$="versionsTable"] tbody {word-break:break-word;}


/* DATATABLE + DROPDOWN BUTTON + OVERFLOW VISIBLE */
thead.ui-datatable-scrollable-theadclone {display:none}
Expand Down

0 comments on commit b7bd6a7

Please sign in to comment.