Commit 37af92e1 by Saliya Randunu

fixes in the view applicant page

parent d776672c
...@@ -4107,7 +4107,7 @@ span.right-img { ...@@ -4107,7 +4107,7 @@ span.right-img {
.checkbox-list label { .checkbox-list label {
display: inline-block; display: inline-block;
position: relative; position: relative;
padding-left: 5px; } }
.checkbox-list label::before { .checkbox-list label::before {
content: ""; content: "";
display: inline-block; display: inline-block;
...@@ -4129,7 +4129,7 @@ span.right-img { ...@@ -4129,7 +4129,7 @@ span.right-img {
left: 0; left: 0;
top: 0; top: 0;
padding-top: 2px; padding-top: 2px;
padding-left: 8px; /*padding-left: 8px;*/
font-size: 11px; font-size: 11px;
color: #555555; color: #555555;
} }
...@@ -6579,3 +6579,5 @@ input{ ...@@ -6579,3 +6579,5 @@ input{
.essential-requirements-note {font-family: 'Usual-Bold' !important ;height: 34px;box-shadow: 0 -1px 0 0 #DDDDDD;width:100%;position: absolute;font-size: 11px;font-weight: 500;left:0;bottom: 0;line-height: 34px;} .essential-requirements-note {font-family: 'Usual-Bold' !important ;height: 34px;box-shadow: 0 -1px 0 0 #DDDDDD;width:100%;position: absolute;font-size: 11px;font-weight: 500;left:0;bottom: 0;line-height: 34px;}
.red-requirements {color: #F9623D;} .red-requirements {color: #F9623D;}
.green-requirements {color: #67B413;} .green-requirements {color: #67B413;}
label.select-all-jobs:after {padding-left: 3px;}
\ No newline at end of file
...@@ -30,6 +30,10 @@ ...@@ -30,6 +30,10 @@
$(".applicant").change(function() { $(".applicant").change(function() {
enableBulkEdit(); enableBulkEdit();
}); });
$("#select_all").on("click",function(){
$('.checkbox-list input:checkbox').not(this).prop('checked', this.checked);
});
}); });
function enableBulkEdit() { function enableBulkEdit() {
...@@ -134,7 +138,7 @@ ...@@ -134,7 +138,7 @@
</div> </div>
<div class="checkbox-list"> <div class="checkbox-list">
<input type='checkbox' id='select_all' value='select_all' class='norecalc'> <input type='checkbox' id='select_all' value='select_all' class='norecalc'>
<label>&nbsp;&nbsp;Select all applicants</label> <label for="select_all" class="select-all-jobs">&nbsp;&nbsp;Select all applicants</label>
</div> </div>
</div> </div>
......
...@@ -119,9 +119,9 @@ ...@@ -119,9 +119,9 @@
if(job.getIncludeAssessmentCriteria()==Boolean.TRUE) if(job.getIncludeAssessmentCriteria()==Boolean.TRUE)
{ {
%> %>
<div class="criteria jcc"> <div class="criteria jcc <%=(missingReq ? "red-bg" : "green-bg")%> ">
<!--TODO: Use missingReq attribute, if true make background red and add image. If 100% make background green--> <!--TODO: Use missingReq attribute, if true make background red and add image. If 100% make background green-->
<img src="images/criteria-icon.svg"> requirements <img src="images/<%=(missingReq ? "icon-requirements_small.png" : "critarea_white.png")%>"> requirements
<span> <span>
<oneit:button value=" " name="gotoPage" skin="link" <oneit:button value=" " name="gotoPage" skin="link"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", applicationPage) requestAttribs="<%= CollectionUtils.mapEntry("nextPage", applicationPage)
......
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