Skip to content
Snippets Groups Projects
Commit b496cb61 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

display rework

parent 6ed98423
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
.visaContent{ .visaContent{
position: relative; position: relative;
height:100%; height:100%;
margin-top: 10px;
} }
.headerSignatureBook{ .headerSignatureBook{
border: solid 1px black; border: solid 1px black;
...@@ -35,7 +36,7 @@ ...@@ -35,7 +36,7 @@
vertical-align: middle; vertical-align: middle;
} }
.headerSignatureBook .item.activeTabSignatureBook,.panelRight .rightPanelSelectedThumbnail{ .headerSignatureBook .item.activeTabSignatureBook,.panelRight .panelSelectedThumbnail{
background: #009DC5; background: #009DC5;
color:white; color:white;
} }
...@@ -135,7 +136,7 @@ ...@@ -135,7 +136,7 @@
height: 95%; height: 95%;
border: solid 2px white; border: solid 2px white;
} }
#thumnails_img_selected,img:hover{ img.panelSelectedThumbnail,img:hover{
border: solid 2px #009DC5; border: solid 2px #009DC5;
cursor:pointer; cursor:pointer;
} }
...@@ -178,17 +179,13 @@ ...@@ -178,17 +179,13 @@
<div class="contentSignatureBook"> <div class="contentSignatureBook">
<div class="contentLeft"> <div class="contentLeft">
<div class="contentShow" ng-if="signatureBook.headerTab == 1"> <div class="contentShow" ng-if="signatureBook.headerTab == 1">
<div class="pjDoc"> <div class="pjDoc" >
<img id="thumnails_img_selected" src="http://www.linux-france.org/article/pro/entrepreneur-howto/01_letters/demission/lettre-dem.png"> <img id="thumnails_img" ng-repeat="(index, document) in signatureBook.documents" ng-click="changeLeftViewer(index)" ng-src="{{document.thumbnailLink}}" class="leftPanelThumbnails" ng-class="{'panelSelectedThumbnail': index == signatureBook.leftSelectedThumbnail}"/>
<img id="thumnails_img" src="http://www.linux-france.org/article/pro/entrepreneur-howto/01_letters/demission/lettre-dem.png">
<img id="thumnails_img" src="http://www.linux-france.org/article/pro/entrepreneur-howto/01_letters/demission/lettre-dem.png">
<img id="thumnails_img" src="http://www.linux-france.org/article/pro/entrepreneur-howto/01_letters/demission/lettre-dem.png">
<img id="thumnails_img" src="http://www.linux-france.org/article/pro/entrepreneur-howto/01_letters/demission/lettre-dem.png">
</div> </div>
<div class="pjDetailsMore"> <div class="pjDetailsMore">
<i class="fa fa-chevron-up" aria-hidden="true"></i> <i class="fa fa-chevron-up" aria-hidden="true"></i>
</div> </div>
<iframe id="leftPanelShow_iframe" ng-src="{{signatureBook.displayLeftMainDoc}}"></iframe> <iframe id="leftPanelShowDocumentIframe" ng-src="{{signatureBook.leftViewerLink}}"></iframe>
</div> </div>
<div class="contentShow" ng-if="signatureBook.headerTab == 2"> <div class="contentShow" ng-if="signatureBook.headerTab == 2">
<iframe id="leftPanelShow_iframe" ng-src="{{signatureBook.linkNotes}}"></iframe> <iframe id="leftPanelShow_iframe" ng-src="{{signatureBook.linkNotes}}"></iframe>
...@@ -204,16 +201,16 @@ ...@@ -204,16 +201,16 @@
<div class="pjDetails"> <div class="pjDetails">
<div class="infoPj"><label>Type : </label><span>Projet de réponse</span></div> <div class="infoPj"><label>Type : </label><span>Projet de réponse</span></div>
<div class="infoPj"><label>Objet : </label><span>Réponse délicate</span></div> <div class="infoPj"><label>Objet : </label><span>Réponse délicate</span></div>
<div class="infoPj"><label>Contat : </label><span>Laurent GIOVANONNI - 11 boulevard du sud est</span></div> <div class="infoPj"><label>Contact : </label><span>Laurent GIOVANONNI - 11 boulevard du sud est</span></div>
</div> </div>
<div class="pjDetailsMore"> <div class="pjDetailsMore">
<i class="fa fa-chevron-down" aria-hidden="true"></i> <i class="fa fa-chevron-down" aria-hidden="true"></i>
</div> </div>
<iframe ng-src="{{signatureBook.viewerLink}}"></iframe> <iframe ng-src="{{signatureBook.rightViewerLink}}"></iframe>
</div> </div>
<div class="panelRight"> <div class="panelRight">
<div ng-repeat="(index, attachment) in signatureBook.thumbnailsAttachments" ng-click="changeRightViewer(index)" class="item" ng-class="{'rightPanelSelectedThumbnail': index == signatureBook.selectedThumbnail}"> <div class="item" ng-repeat="(index, attachment) in signatureBook.attachments" ng-click="changeRightViewer(index)" ng-class="{'panelSelectedThumbnail': index == signatureBook.rightSelectedThumbnail}">
<span class="fa-stack fa-lg" title="{{attachment.attachment_type}}"> <span class="fa-stack fa-lg">
<i class="fa fa-file-o fa-stack-2x"></i> <i class="fa fa-file-o fa-stack-2x"></i>
<i class="fa fa-reply fa-stack-1x"></i> <i class="fa fa-reply fa-stack-1x"></i>
</span> </span>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment