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
2d0e5d5e
Commit
2d0e5d5e
authored
Nov 06, 2018
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HT007 styling fix and percentage fix of role fit value
parent
5c7b3cf8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
7 deletions
+8
-7
Candidate.java
cmsWebApp/src/performa/orm/Candidate.java
+1
-1
common.css
cmsWebApp/webroot/css/common.css
+3
-2
application_sorting_bar.jsp
...ot/extensions/adminportal/inc/application_sorting_bar.jsp
+1
-1
incomplete_applicants_list.jsp
...extensions/adminportal/inc/incomplete_applicants_list.jsp
+3
-3
No files found.
cmsWebApp/src/performa/orm/Candidate.java
View file @
2d0e5d5e
...
...
@@ -117,7 +117,7 @@ public class Candidate extends BaseCandidate
public
double
roleFitCompletedPercentage
(
Job
job
)
{
return
(
get
ProfileAssessmentAnswersCount
()
*
100
)
/
job
.
getAllLeft
Questions
().
size
()
;
return
(
get
CompletedAnswers
(
job
).
size
()
*
100
)
/
job
.
getAll
Questions
().
size
()
;
}
public
Collection
<
Answer
>
getCompletedAnswers
(
Job
job
)
...
...
cmsWebApp/webroot/css/common.css
View file @
2d0e5d5e
...
...
@@ -3221,8 +3221,8 @@ span.appli-progress-bar {
box-shadow
:
none
;
}
.progress-bar
{
position
:
relative
;
height
:
13px
;}
.
progress-bar
.show-precentage
{
position
:
absolute
;
color
:
#fff
;
right
:
1px
;
top
:
-
2px
;
font-size
:
9px
;
font-weight
:
500
;}
.
completion-
progress-bar
{
position
:
relative
;
height
:
13px
;}
.
completion-progress-bar
.show-precentage
{
position
:
absolute
;
color
:
#fff
;
right
:
1px
;
top
:
2px
;
font-size
:
9px
;
font-weight
:
500
;}
.appli-progress-bar
.progress-bar
{
background
:
#667281
;
}
...
...
@@ -4209,6 +4209,7 @@ span.right-img {
display
:
inline-block
;
position
:
relative
;
}
.checkbox-list.select-all
label
{
color
:
#8E97A0
;}
.checkbox-list
label
::before
{
content
:
""
;
display
:
inline-block
;
...
...
cmsWebApp/webroot/extensions/adminportal/inc/application_sorting_bar.jsp
View file @
2d0e5d5e
...
...
@@ -138,7 +138,7 @@
}
%>
</div>
<div class="checkbox-list">
<div class="checkbox-list
select-all
">
<input type='checkbox' id='select_all' value='select_all' class='norecalc'>
<label for="select_all" class="select-all-jobs"> Select all applicants</label>
</div>
...
...
cmsWebApp/webroot/extensions/adminportal/inc/incomplete_applicants_list.jsp
View file @
2d0e5d5e
...
...
@@ -83,7 +83,7 @@
<div class="<%= widthClass %> appli-l eq-second-height">
<span class="appli-view-bar">
<div class="progress">
<div class="progress-bar <%= criteriaVal == 100 ? "green-bar": (criteriaVal >= 50 && criteriaVal < 100 ? "orange-bar" : "red-bar") %>" role="progressbar" aria-valuenow="<%= criteria %>" aria-valuemin="0" aria-valuemax="100"
<div class="
completion-
progress-bar <%= criteriaVal == 100 ? "green-bar": (criteriaVal >= 50 && criteriaVal < 100 ? "orange-bar" : "red-bar") %>" role="progressbar" aria-valuenow="<%= criteria %>" aria-valuemin="0" aria-valuemax="100"
style="<%= "width: " + criteria %>">
<span class="show-precentage"><%= criteria %></span>
</div>
...
...
@@ -101,7 +101,7 @@
<div class="<%= widthClass %> appli-l eq-second-height">
<span class="appli-view-bar">
<div class="progress">
<div class="progress-bar <%= cultureVal == 100 ? "green-bar": (cultureVal >= 50 && cultureVal < 100 ? "orange-bar" : "red-bar") %>" role="progressbar" aria-valuenow="<%= culture %>" aria-valuemin="0" aria-valuemax="100"
<div class="
completion-
progress-bar <%= cultureVal == 100 ? "green-bar": (cultureVal >= 50 && cultureVal < 100 ? "orange-bar" : "red-bar") %>" role="progressbar" aria-valuenow="<%= culture %>" aria-valuemin="0" aria-valuemax="100"
style="<%= "width: " + culture %>">
<span class="show-precentage"><%= culture %></span>
</div>
...
...
@@ -113,7 +113,7 @@
<div class="<%= widthClass %> appli-l eq-second-height">
<span class="appli-view-bar">
<div class="progress">
<div class="progress-bar <%= roleFitVal == 100 ? "green-bar": (roleFitVal >= 50 && roleFitVal < 100 ? "orange-bar" : "red-bar") %>" role="progressbar" aria-valuenow="<%= roleFit %>" aria-valuemin="0" aria-valuemax="100"
<div class="
completion-
progress-bar <%= roleFitVal == 100 ? "green-bar": (roleFitVal >= 50 && roleFitVal < 100 ? "orange-bar" : "red-bar") %>" role="progressbar" aria-valuenow="<%= roleFit %>" aria-valuemin="0" aria-valuemax="100"
style="<%= "width: " + roleFit %>">
<span class="show-precentage"><%= roleFit %></span>
</div>
...
...
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