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
baf4e580
Commit
baf4e580
authored
Oct 30, 2017
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We need to disable the on hover animation when 'Shortlisted' or 'Unsuitable' is '0'
parent
52efa1a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
12 deletions
+7
-12
common.css
cmsWebApp/webroot/css/common.css
+2
-2
applicant_view_tabs.jsp
...ebroot/extensions/adminportal/inc/applicant_view_tabs.jsp
+5
-10
No files found.
cmsWebApp/webroot/css/common.css
View file @
baf4e580
...
@@ -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
a
:hover
{
.int-timeline
li
.has-applicant
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
a
:hover
,
.unsutable
a
:hover
span
{
.unsutable
.has-applicant
a
:hover
,
.unsutable
.has-applicant
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 @
baf4e580
...
@@ -10,8 +10,9 @@
...
@@ -10,8 +10,9 @@
String firstTab = WebUtils.getSamePageInRenderMode(request, WebUtils.VIEW_APPLICANTS);
String firstTab = WebUtils.getSamePageInRenderMode(request, WebUtils.VIEW_APPLICANTS);
String secondTab = WebUtils.getSamePageInRenderMode(request, WebUtils.APPLICANTS_SHORTLIST);
String secondTab = WebUtils.getSamePageInRenderMode(request, WebUtils.APPLICANTS_SHORTLIST);
String thirdTab = WebUtils.getSamePageInRenderMode(request, WebUtils.UNSUITABLE_APPS);
String thirdTab = WebUtils.getSamePageInRenderMode(request, WebUtils.UNSUITABLE_APPS);
int noOfShortlisted = job.getNoOfCandidatesShortlisted();
int noOfUnsuitable = job.getNoOfCandidatesUnsuitable();
%>
%>
<oneit:dynIncluded>
<oneit:dynIncluded>
<oneit:dynInclude page="/extensions/applicantportal/inc/multifieldtext.jsp" data="<%= CollectionUtils.EMPTY_MAP%>"/>
<oneit:dynInclude page="/extensions/applicantportal/inc/multifieldtext.jsp" data="<%= CollectionUtils.EMPTY_MAP%>"/>
...
@@ -33,10 +34,7 @@
...
@@ -33,10 +34,7 @@
Applicants
Applicants
</oneit:button>
</oneit:button>
</li>
</li>
<li class="<%= tabNumber == "2" ? "active" : "" %>">
<li class="<%= noOfShortlisted > 0 ? "has-applicant" : "" %> <%= tabNumber == "2" ? "active" : "" %>">
<%
int noOfShortlisted = job.getNoOfCandidatesShortlisted();
%>
<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())
...
@@ -49,11 +47,8 @@
...
@@ -49,11 +47,8 @@
</li>
</li>
</ul>
</ul>
</div>
</div>
<div class="unsutable <%= tabNumber == "3" ? "active" : "" %>">
<div class="unsutable <%= noOfUnsuitable > 0 ? "has-applicant" : "" %> <%= tabNumber == "3" ? "active" : "" %>">
<%
<oneit:button id="unsuitableBtn" value=" " name="gotoPage" skin="link" disabled="<%= noOfUnsuitable > 0 ? "false" : "true" %>"
int noOfUnsuitable = job.getNoOfCandidatesUnsuitable();
%>
<oneit:button 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())
.toMap() %>">
.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