Skip to content

Commit

Permalink
#486 freeze Original vs Processed header
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Collins committed Feb 2, 2024
1 parent 0330b92 commit 6459a03
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
11 changes: 6 additions & 5 deletions grails-app/assets/stylesheets/record.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*
/*
Document : record
Created on : Feb 16, 2011, 4:40:59 PM
Author : "Nick dos Remedios <[email protected]>"
Description:
Purpose of the stylesheet follows.
*/

/*
/*
TODO customize this sample style
Syntax recommendation https://www.w3.org/TR/REC-CSS2/
*/
Expand Down Expand Up @@ -61,7 +61,7 @@ div#occurrenceMap {
}
.originalValue {
padding-left: 12px;
font-style: italic;
font-style: italic;
}
table.occurrenceTable {
/*border-bottom: 0px !important;*/
Expand Down Expand Up @@ -176,7 +176,8 @@ h1 span#recordId {

#processedVsRawView table {
width: 100%;
/*border: none;*/
border: none;
border-top: 1px solid #999;
margin-bottom: 0;
}

Expand Down Expand Up @@ -552,4 +553,4 @@ ul.tree li span:hover ul ul::before {
}
ul.tree span.selected {
padding-top: 7px;
}
}
13 changes: 12 additions & 1 deletion grails-app/views/occurrence/show.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,18 @@
<th style="width:35%;"><g:message code="show.processedvsrawview.table.th04" default="Processed Value"/></th>
</tr>
</thead>
<tbody>
</table>
<table class="table table-bordered table-striped table-condensed"
style="max-height: calc(100vh - 300px);overflow: auto;display: block;">
<thead style="visibility: collapse;">
<tr>
<th style="width:15%; padding: 0px;"></th>
<th style="width:15%; padding: 0px;"></th>
<th style="width:35%; padding: 0px;"></th>
<th style="width:35%; padding: 0px;"></th>
</tr>
</thead>
<tbody >
<alatag:formatRawVsProcessed map="${compareRecord}"/>
</tbody>
</table>
Expand Down

0 comments on commit 6459a03

Please sign in to comment.