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
ddf02938
Commit
ddf02938
authored
Oct 30, 2017
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modifications to hover issue, shortlisted, unsuitable, applicants tabs
parent
a6bf0c77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
common.css
cmsWebApp/webroot/css/common.css
+2
-2
applicant_view_tabs.jsp
...ebroot/extensions/adminportal/inc/applicant_view_tabs.jsp
+5
-4
No files found.
cmsWebApp/webroot/css/common.css
View file @
ddf02938
...
@@ -3360,7 +3360,7 @@ input.add-note-btn:hover{
...
@@ -3360,7 +3360,7 @@ input.add-note-btn:hover{
text-align
:
center
;
text-align
:
center
;
font-family
:
"Usual-Medium"
;
font-family
:
"Usual-Medium"
;
}
}
.int-timeline
li
.has-applicant
a
:hover
{
.int-timeline
li
.has-applicant
.inactive
a
:hover
{
color
:
#ffffff
;
color
:
#ffffff
;
font-size
:
11px
;
font-size
:
11px
;
background-color
:
#4e5964
;
background-color
:
#4e5964
;
...
@@ -3445,7 +3445,7 @@ input.add-note-btn:hover{
...
@@ -3445,7 +3445,7 @@ input.add-note-btn:hover{
width
:
96px
;
width
:
96px
;
font-family
:
"Usual-Medium"
;
font-family
:
"Usual-Medium"
;
}
}
.unsutable.has-applicant
a
:hover
,
.unsutable.has-applicant
a
:hover
span
{
.unsutable.has-applicant
.inactive
a
:hover
,
.unsutable.has-applicant.inactive
a
:hover
span
{
color
:
#ffffff
;
color
:
#ffffff
;
}
}
.unsutable.active
a
:hover
{
.unsutable.active
a
:hover
{
...
...
cmsWebApp/webroot/extensions/adminportal/inc/applicant_view_tabs.jsp
View file @
ddf02938
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
String thirdTab = WebUtils.getSamePageInRenderMode(request, WebUtils.UNSUITABLE_APPS);
String thirdTab = WebUtils.getSamePageInRenderMode(request, WebUtils.UNSUITABLE_APPS);
int noOfShortlisted = job.getNoOfCandidatesShortlisted();
int noOfShortlisted = job.getNoOfCandidatesShortlisted();
int noOfUnsuitable = job.getNoOfCandidatesUnsuitable();
int noOfUnsuitable = job.getNoOfCandidatesUnsuitable();
int totalCandidates = job.getNoOfCandidatesApplied();
%>
%>
<oneit:dynIncluded>
<oneit:dynIncluded>
...
@@ -23,18 +24,18 @@
...
@@ -23,18 +24,18 @@
<div class="int-timeline">
<div class="int-timeline">
<ul>
<ul>
<li class="<%= t
abNumber == "1" ? "active" : "
" %>">
<li class="<%= t
otalCandidates > 0 ? "has-applicant" : "" %> <%= tabNumber == "1" ? "active" : "inactive
" %>">
<oneit:button value=" " name="gotoPage" skin="link"
<oneit:button value=" " name="gotoPage" skin="link"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", firstTab)
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", firstTab)
.mapEntry("procParams", CollectionUtils.mapEntry("Job", job).toMap())
.mapEntry("procParams", CollectionUtils.mapEntry("Job", job).toMap())
.toMap() %>">
.toMap() %>">
<span>
<span>
<oneit:toString value="<%=
job.getNoOfCandidatesApplied()
%>" mode="Integer" />
<oneit:toString value="<%=
totalCandidates
%>" mode="Integer" />
</span>
</span>
Applicants
Applicants
</oneit:button>
</oneit:button>
</li>
</li>
<li class="<%= noOfShortlisted > 0 ? "has-applicant" : "" %> <%= tabNumber == "2" ? "active" : "" %>">
<li class="<%= noOfShortlisted > 0 ? "has-applicant" : "" %> <%= tabNumber == "2" ? "active" : "
inactive
" %>">
<oneit:button value=" " name="gotoPage" skin="link" disabled="<%= noOfShortlisted > 0 ? "false" : "true" %>"
<oneit:button value=" " name="gotoPage" skin="link" disabled="<%= noOfShortlisted > 0 ? "false" : "true" %>"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", secondTab)
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", secondTab)
.mapEntry("procParams", CollectionUtils.mapEntry("Job", job).toMap())
.mapEntry("procParams", CollectionUtils.mapEntry("Job", job).toMap())
...
@@ -47,7 +48,7 @@
...
@@ -47,7 +48,7 @@
</li>
</li>
</ul>
</ul>
</div>
</div>
<div class="unsutable <%= noOfUnsuitable > 0 ? "has-applicant" : "" %> <%= tabNumber == "3" ? "active" : "" %>">
<div class="unsutable <%= noOfUnsuitable > 0 ? "has-applicant" : "" %> <%= tabNumber == "3" ? "active" : "
inactive
" %>">
<oneit:button id="unsuitableBtn" value=" " name="gotoPage" skin="link" disabled="<%= noOfUnsuitable > 0 ? "false" : "true" %>"
<oneit:button id="unsuitableBtn" value=" " name="gotoPage" skin="link" disabled="<%= noOfUnsuitable > 0 ? "false" : "true" %>"
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", thirdTab)
requestAttribs="<%= CollectionUtils.mapEntry("nextPage", thirdTab)
.mapEntry("procParams", CollectionUtils.mapEntry("Job", job).toMap())
.mapEntry("procParams", CollectionUtils.mapEntry("Job", job).toMap())
...
...
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