Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/new bo style #906

Merged
merged 2 commits into from
Nov 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@

<div th:each="messageItem, i:${customMessage.getMessageItems()}" th:remove="tag">
<div class="row mt-4">
<div class="col-md-8" style="min-height: 700px" th:if="${messageItem.getCustomTex()}==null">
<div class="col-md-8" style="min-height: 700px; max-height: 1050px" th:if="${messageItem.getCustomTex()}==null">
<embed class="document-embed" height="100%"
th:src="'/pdf-viewer/pdfjs-dist/web/viewer.html?file=/documents/'+${messageItem.getDocumentName()}"
width="100%"/>
</div>
<div class="col-md-8" style="min-height: 700px" th:if="${messageItem.getCustomTex()}!=null">
<div class="col-md-8" style="min-height: 700px; max-height: 1050px" th:if="${messageItem.getCustomTex()}!=null">
<div class="full-size-div">
<div class="card-div">
<div class="card" style="background-color: rgb(232, 237, 241)">
Expand All @@ -85,7 +85,7 @@ <h3 class="h3-style">Texte du document :</h3>
<div class="display-flex flex-grow-1 margin-top-25px overflow-auto padding-right-0px"
style="align-self: flex-start;">
<div class="padding-right-5px">
<div class="file1-border-color">
<div class="card file1-border-color">
<div class="card-header file1-border-color bold"
th:classappend="${'category-' + messageItem.getDocumentCategory()}">
<div class="letter" style="color: #0a0808">
Expand Down Expand Up @@ -217,12 +217,12 @@ <h4>Lecture automatiques :</h4>
<div th:each="messageItem, i:${guarantorItem.getMessageItems()}" th:remove="tag">
<div class="row mt-4">

<div class="col-md-8" style="min-height: 700px" th:if="${messageItem.getCustomTex()}==null">
<div class="col-md-8" style="min-height: 700px; max-height: 1050px" th:if="${messageItem.getCustomTex()}==null">
<embed class="document-embed" height="100%"
th:src="'/pdf-viewer/pdfjs-dist/web/viewer.html?file=/documents/'+${messageItem.getDocumentName()}"
width="100%"/>
</div>
<div class="col-md-8" style="min-height: 700px" th:if="${messageItem.getCustomTex()}!=null">
<div class="col-md-8" style="min-height: 700px; max-height: 1050px" th:if="${messageItem.getCustomTex()}!=null">
<div class="full-size-div">
<div class="card-div">
<div class="card" style="background-color: rgb(232, 237, 241)">
Expand Down
Loading