Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
25a5075e
Commit
25a5075e
authored
Nov 23, 2018
by
Saliya Randunu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ui fixes after dynamic code includes
parent
d168842f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
13 deletions
+34
-13
applicants_list_report.jsp
...oot/extensions/adminportal/inc/applicants_list_report.jsp
+4
-4
applicants_list_report_header.jsp
...ensions/adminportal/inc/applicants_list_report_header.jsp
+30
-9
No files found.
cmsWebApp/webroot/extensions/adminportal/inc/applicants_list_report.jsp
View file @
25a5075e
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
%>
%>
</span>
</span>
<span class="job-status-appli">
<span class="job-status-appli">
<span class="<%= job.getJobStatus().getName().toLowerCase() + "
-
status-icon" %>"></span>
<span class="<%= job.getJobStatus().getName().toLowerCase() + "
status-icon" %>"></span>
<oneit:toString value="<%= job.getJobStatusText() %>" mode="EscapeHTML"/>
<oneit:toString value="<%= job.getJobStatusText() %>" mode="EscapeHTML"/>
</span>
</span>
</div>
</div>
...
@@ -129,8 +129,8 @@
...
@@ -129,8 +129,8 @@
long criteriaVal = jobApplication.getRequirementFitScore();
long criteriaVal = jobApplication.getRequirementFitScore();
String criteria = FormatUtils.stringify(criteriaVal, "PercentageWholeNumber", "0");
String criteria = FormatUtils.stringify(criteriaVal, "PercentageWholeNumber", "0");
boolean missingReq = jobApplication.hasFailedEssentialRequirements();
boolean missingReq = jobApplication.hasFailedEssentialRequirements();
String iconBg = "background-image : url('file://" + PDFUtils.FILE_BASE_PATH + "/images/
correct.png'); background-color : #67B413; background-size:50%
; ";
String iconBg = "background-image : url('file://" + PDFUtils.FILE_BASE_PATH + "/images/
reqgreen.png')
; ";
if (missingReq) iconBg = "background-image : url('file://" + PDFUtils.FILE_BASE_PATH + "/images/
icon-requirements.png'); background-color : #F9623D ; background-size:18%
;" ;
if (missingReq) iconBg = "background-image : url('file://" + PDFUtils.FILE_BASE_PATH + "/images/
missinreq.png')
;" ;
%>
%>
<div class="appli-jcs appli-l eq-second-height">
<div class="appli-jcs appli-l eq-second-height">
<span class="appli-view-bar">
<span class="appli-view-bar">
...
@@ -141,7 +141,7 @@
...
@@ -141,7 +141,7 @@
</div>
</div>
</div>
</div>
<span class="
requirements-icon" style="<%= iconBg %>"
></span>
<span class="
<%= missingReq ? "red" : "green" %> requirements-icon"
></span>
</span>
</span>
<span class="<%= missingReq ? "red-requirements" : "" %>">
<span class="<%= missingReq ? "red-requirements" : "" %>">
requirements
requirements
...
...
cmsWebApp/webroot/extensions/adminportal/inc/applicants_list_report_header.jsp
View file @
25a5075e
...
@@ -25,19 +25,35 @@
...
@@ -25,19 +25,35 @@
}
}
.job-status-appli {
.job-status-appli {
background-image: url('file://<%= PDFUtils.FILE_BASE_PATH %>/images/open.png');
background-repeat: no-repeat;
background-position: left center;
background-size: 15px;
text-transform: uppercase;
text-transform: uppercase;
letter-spacing: 1px;
letter-spacing: 1px;
color: #ffffff;
color: #ffffff;
font-size: 11px;
font-size: 11px;
font-family: "Usual-Medium";
font-family: "Usual-Medium";
padding: 3px 0 3px
24px
;
padding: 3px 0 3px
0
;
}
}
.job-status-appli .status-icon{
height: 12px;
width: 12px;
display: inline-block;
border-radius: 50%;
margin: -5px 5px;
}
.status-icon.open {
border: 4px solid #03AC66;
}
.status-icon.closed {
border: 4px solid #f9623d;
}
.status-icon.filled {
border: 4px solid #f9623d;
}
div.white-header {background-color: #fff; height:80px;box-shadow: 0 3px 5px 0 rgba(0,0,0,0.02); padding: 0 30px ;}
div.white-header {background-color: #fff; height:80px;box-shadow: 0 3px 5px 0 rgba(0,0,0,0.02); padding: 0 30px ;}
div.white-header:after{display:inline-block; line-height:80px; width:0; content:"\00A0"; overflow:hidden; vertical-align:middle}
div.white-header:after{display:inline-block; line-height:80px; width:0; content:"\00A0"; overflow:hidden; vertical-align:middle}
...
@@ -116,14 +132,19 @@
...
@@ -116,14 +132,19 @@
box-sizing: border-box;
box-sizing: border-box;
height: 18px;
height: 18px;
width: 18px;
width: 18px;
border: 3px solid #FFFFFF;
position: absolute;
position: absolute;
border-radius: 50%;
background-repeat: no-repeat;
background-position: 32% 25%;
padding: 0;
padding: 0;
background-size: 18px;
border:3px solid #fff;
border-radius: 50%;
}
}
.requirements-icon.red{
background-image: url('file://<%= PDFUtils.FILE_BASE_PATH %>/images/missinreq.png');
}
.requirements-icon.green{
background-image: url('file://<%= PDFUtils.FILE_BASE_PATH %>/images/reqgreen.png');
}
.red-requirements {color: #F9623D;}
.red-requirements {color: #F9623D;}
.green-requirements {color: #67B413;}
.green-requirements {color: #67B413;}
span.austr-post { text-transform: uppercase;}
span.austr-post { text-transform: uppercase;}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment