Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Genesys Backend
Commits
32174ba3
Commit
32174ba3
authored
Oct 22, 2015
by
Matija Obreza
Browse files
CSS historic-record added
parent
66a4cbef
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/main/sourceapp/styles/genesys.scss
View file @
32174ba3
...
...
@@ -1407,9 +1407,18 @@ ul.funny-list>li.not-current * {
background-position
:
center
right
;
}
table
.accessions
tr
.not-available
>
td
,
table
tr
.expired
>
td
{
text-decoration
:
line-through
;
opacity
:
0
.5
;
table
.accessions
{
tr
.not-available
>
td
,
table
tr
.expired
>
td
{
text-decoration
:
line-through
;
opacity
:
0
.5
;
}
tr
.historic-record
>
td
{
opacity
:
0
.5
;
a
{
color
:
Red
;
}
}
}
.crop-details
{
...
...
src/main/webapp/WEB-INF/jsp/accession/explore.jsp
View file @
32174ba3
...
...
@@ -308,7 +308,7 @@
</thead>
<tbody>
<c:forEach
items=
"
${
pagedData
.
content
}
"
var=
"accession"
varStatus=
"status"
>
<tr
class=
"acn ${status.count % 2 == 0 ? 'even' : 'odd'}"
>
<tr
class=
"acn ${status.count % 2 == 0 ? 'even' : 'odd'}
${accession.historic ? 'historic-record' : ''}
"
>
<td
class=
"idx-col"
>
${status.count + pagedData.size * pagedData.number}
</td>
<td
class=
"sel"
x-aid=
"${accession.id}"
></td>
<td><a
href=
"
<c:url
value=
"/acn/id/${accession.id}"
/>
"
><b><c:out
value=
"
${
accession
.
accessionName
}
"
/></b></a></td>
...
...
src/main/webapp/WEB-INF/jsp/request/index.jsp
View file @
32174ba3
...
...
@@ -51,7 +51,7 @@
</thead>
<tbody>
<c:forEach
items=
"
${
pagedData
.
content
}
"
var=
"accession"
varStatus=
"status"
>
<tr
id=
"a${accession.id}"
class=
"acn targeted ${status.count % 2 == 0 ? 'even' : 'odd'} ${accession.availability!=false and
!accession.historic and
accession.institute.allowMaterialRequests ? '' : 'not-available'}"
>
<tr
id=
"a${accession.id}"
class=
"acn targeted ${status.count % 2 == 0 ? 'even' : 'odd'} ${accession.availability!=false and accession.institute.allowMaterialRequests ? '' : 'not-available'}
${accession.historic ? 'historic-record' : ''}
"
>
<td
class=
"idx-col"
>
${status.count + pagedData.size * pagedData.number}
</td>
<td><spring:message
code=
"accession.availability.${accession.availability}"
/></td>
<td><spring:message
code=
"accession.historic.${accession.historic}"
/></td>
...
...
src/main/webapp/WEB-INF/jsp/search/accessions.jsp
View file @
32174ba3
...
...
@@ -62,7 +62,7 @@
</thead>
<tbody>
<c:forEach
items=
"
${
pagedData
.
content
}
"
var=
"accession"
varStatus=
"status"
>
<tr
class=
"acn"
>
<tr
class=
"acn
${accession.historic ? 'historic-record' : ''}
"
>
<td
class=
"idx-col"
>
${status.count + pagedData.size * pagedData.number}
</td>
<td
class=
"sel"
x-aid=
"${accession.id}"
></td>
<td><a
href=
"
<c:url
value=
"/acn/id/${accession.id}"
/>
"
><b>
...
...
src/main/webapp/WEB-INF/jsp/selection/index.jsp
View file @
32174ba3
...
...
@@ -57,7 +57,7 @@
</thead>
<tbody>
<c:forEach
items=
"
${
pagedData
.
content
}
"
var=
"accession"
varStatus=
"status"
>
<tr
id=
"a${accession.id}"
class=
"acn targeted ${status.count % 2 == 0 ? 'even' : 'odd'}"
>
<tr
id=
"a${accession.id}"
class=
"acn targeted
${accession.historic ? 'historic-record' : ''}
${status.count % 2 == 0 ? 'even' : 'odd'}"
>
<td
class=
"idx-col"
>
${status.count + pagedData.size * pagedData.number}
</td>
<td
class=
"sel ${selection.containsId(accession.id) ? 'picked' : ''}"
x-aid=
"${accession.id}"
></td>
<td><a
href=
"
<c:url
value=
"/acn/id/${accession.id}"
/>
"
><b><c:out
value=
"
${
accession
.
accessionName
}
"
/></b></a></td>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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