Commit 2544f1cf by Saliya Randunu

fixes in detailed applicant report pdf

parent 0bf43bc9
...@@ -3406,8 +3406,9 @@ span.export-candidate,span.appli-status-short{ ...@@ -3406,8 +3406,9 @@ span.export-candidate,span.appli-status-short{
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
width: 88%; width: 86%;
display: inline-block; display: inline-block;
} }
.r-y-label{ .r-y-label{
font-size: 11px; font-size: 11px;
...@@ -3416,7 +3417,7 @@ span.export-candidate,span.appli-status-short{ ...@@ -3416,7 +3417,7 @@ span.export-candidate,span.appli-status-short{
vertical-align: middle; vertical-align: middle;
} }
.pre-dot{ .pre-dot{
padding-left: 0; padding-left: 0;
} }
.a-label-row { .a-label-row {
margin-bottom: 6px; margin-bottom: 6px;
......
...@@ -132,27 +132,27 @@ ...@@ -132,27 +132,27 @@
continue; continue;
} }
%> %>
<div style="width: 100%;"> <div class="width45 text-left" >
<div class="a-label-row"> <div class="a-label-row req-row">
<span class="r-y-label pre-dot"><%= ct.getDescription() %></span> <span class="pre-dot"><%= ct.getDescription() %></span>
<% <%
if(hDesirableNo > 0) if(hDesirableNo > 0)
{ {
%> %>
<div class="width50 text-left" >
<span class="common-dot yellow-dot"></span> <span class="common-dot yellow-dot"></span>
<span class="r-y-label pre-dot">(<%=hDesirableNo%>)</span> <span class="r-y-label-num">(<%=hDesirableNo%>)</span>
</div>
<% <%
} }
if(essentialNo > 0) if(essentialNo > 0)
{ {
%> %>
<div class="width50 text-left" >
<span class="common-dot red-dot"></span> <span class="common-dot red-dot"></span>
<span class="r-y-label pre-dot">(<%=essentialNo%>)</span> <span class="r-y-label-num">(<%=essentialNo%>)</span>
</div>
<% <%
} }
%> %>
...@@ -165,6 +165,7 @@ ...@@ -165,6 +165,7 @@
</div> </div>
<div style="clear: both"></div>
<div class="essential-requirements-note <%= missingReq ? "red-requirements" : hasAllReq ? "green-requirements" : "" %>"> <div class="essential-requirements-note <%= missingReq ? "red-requirements" : hasAllReq ? "green-requirements" : "" %>">
<span><%= missingReq ? "Does not meet essential requirements" : hasAllReq ? "Does meet essential requirements" : ""%></span> <span><%= missingReq ? "Does not meet essential requirements" : hasAllReq ? "Does meet essential requirements" : ""%></span>
</div> </div>
......
...@@ -107,6 +107,7 @@ ...@@ -107,6 +107,7 @@
.width50 {width:50% ; box-sizing: border-box;float: left; } .width50 {width:50% ; box-sizing: border-box;float: left; }
.width45 {width:48% ; box-sizing: border-box;float: left; }
.tab-view-side { .tab-view-side {
...@@ -239,6 +240,7 @@ ...@@ -239,6 +240,7 @@
position: absolute; position: absolute;
left: 28.5px; left: 28.5px;
margin: 0; margin: 0;
} }
.common-dot{ .common-dot{
...@@ -249,8 +251,6 @@ ...@@ -249,8 +251,6 @@
vertical-align: middle; vertical-align: middle;
float: left; float: left;
margin-left: 12px; margin-left: 12px;
} }
.red-dot{ .red-dot{
...@@ -272,6 +272,7 @@ ...@@ -272,6 +272,7 @@
width: 88%; width: 88%;
display: inline-block; display: inline-block;
} }
.r-y-label{ .r-y-label{
font-size: 11px; font-size: 11px;
color: #67696d; color: #67696d;
...@@ -282,6 +283,17 @@ ...@@ -282,6 +283,17 @@
width: 75%; width: 75%;
margin-bottom: 10px; margin-bottom: 10px;
} }
.req-row {text-align: left;padding-left:10px;}
.req-row .common-dot {float: none;margin-left:0px;}
.pre-dot{
width: auto;float: none; font-size: 11px;
color: #67696d;text-align: left;
}
.r-y-label-num {
font-size: 11px;
color: #67696d;
float: none;
}
.contact-row span.calcField { .contact-row span.calcField {
color: #7D7F82; color: #7D7F82;
......
...@@ -159,10 +159,11 @@ ...@@ -159,10 +159,11 @@
%> %>
<div class="a-label-row"> <div class="a-label-row">
<div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + firstScore.getObjectID() %>')"> <div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + firstScore.getObjectID() %>')">
<div style="margin-bottom: 6px">
<span class="common-dot <%= dotClass %>"></span> <span class="common-dot <%= dotClass %>"></span>
<span class="r-y-label text-dot-dot"> <span class="r-y-label text-dot-dot">
<oneit:toString value="<%= firstScore.getFactor() %>" mode="EscapeHTML"/> <oneit:toString value="<%= firstScore.getFactor() %>" mode="EscapeHTML"/>
</span> </span></div>
</div> </div>
<% <%
if(secondScore != null) if(secondScore != null)
...@@ -170,10 +171,12 @@ ...@@ -170,10 +171,12 @@
dotClass = secondScore.getColorCode() != null ? secondScore.getColorCode().getDotCSSClass() : ""; dotClass = secondScore.getColorCode() != null ? secondScore.getColorCode().getDotCSSClass() : "";
%> %>
<div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + secondScore.getObjectID() %>')"> <div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + secondScore.getObjectID() %>')">
<div style="margin-bottom: 6px">
<span class="common-dot <%= dotClass %>"></span> <span class="common-dot <%= dotClass %>"></span>
<span class="r-y-label text-dot-dot"> <span class="r-y-label text-dot-dot">
<oneit:toString value="<%= secondScore.getFactor() %>" mode="EscapeHTML"/> <oneit:toString value="<%= secondScore.getFactor() %>" mode="EscapeHTML"/>
</span> </span>
</div>
</div> </div>
<% <%
} }
...@@ -205,10 +208,12 @@ ...@@ -205,10 +208,12 @@
%> %>
<div class="a-label-row"> <div class="a-label-row">
<div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + ((CultureElement)firstTuple.get0()).getObjectID() %>')"> <div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + ((CultureElement)firstTuple.get0()).getObjectID() %>')">
<div style="margin-bottom: 6px">
<span class="common-dot <%= dotClass %>"></span> <span class="common-dot <%= dotClass %>"></span>
<span class="r-y-label text-dot-dot"> <span class="r-y-label text-dot-dot">
<oneit:toString value="<%= firstTuple.get0() %>" mode="EscapeHTML"/> <oneit:toString value="<%= firstTuple.get0() %>" mode="EscapeHTML"/>
</span> </span>
</div>
</div> </div>
<% <%
if(secondTuple != null) if(secondTuple != null)
...@@ -216,10 +221,12 @@ ...@@ -216,10 +221,12 @@
dotClass = ((ColorCode)secondTuple.get1()).getDotCSSClass(); dotClass = ((ColorCode)secondTuple.get1()).getDotCSSClass();
%> %>
<div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + ((CultureElement)firstTuple.get0()).getObjectID() %>')"> <div class="col-md-6 col-sm-6 col-xs-6 text-left" onClick="focusDiv('<%= "#" + ((CultureElement)firstTuple.get0()).getObjectID() %>')">
<div style="margin-bottom: 6px">
<span class="common-dot <%= dotClass %>"></span> <span class="common-dot <%= dotClass %>"></span>
<span class="r-y-label text-dot-dot"> <span class="r-y-label text-dot-dot">
<oneit:toString value="<%= secondTuple.get0() %>" mode="EscapeHTML"/> <oneit:toString value="<%= secondTuple.get0() %>" mode="EscapeHTML"/>
</span> </span>
</div>
</div> </div>
<% <%
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment