Skip to content

Commit

Permalink
Story/cite 188 (#221)
Browse files Browse the repository at this point in the history
* [CITE-188] added details column in citation list

* [CITE-188] added expand icon in citation list

* [CITE-188] Added details column and changed icon

* [CITE-188] Fixed review comments

* [CITE-188] Changed the bib-entry class for icon

* [CITE-188] Added arrow icon
  • Loading branch information
agoyal61 authored Mar 16, 2023
1 parent 14571ec commit ed9443e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,7 @@ <h4 class="panel-title">
<th th:each="column:${columns}" th:with="columnLabel=${@labelsResource.getProperty('_item_attribute_label_' + column)}">
[[${columnLabel}]]
</th>
<th>Details</th>
</tr>

<tr th:id="'tr-'+${entry.key}" data-action='draggable' class="items" th:each="entry,loop : ${items}">
Expand Down Expand Up @@ -599,6 +600,11 @@ <h4 class="panel-title">
</a>
</span>
</td>
<td>
<a class="bib-entry" th:href="@{|/auth/group/${zoteroGroupId}/items/${entry.key}?index=${loop.index}&collectionId=${collectionId}&page=${currentPage}&sortBy=${sort}|}">
<i class="icon-arrow-right-alt"></i>
</a>
</td>
<td th:each="column:${columns}" style="max-width:300px;">
[[${entry[column]}]]
</td>
Expand Down
5 changes: 5 additions & 0 deletions citesphere/src/main/webapp/resources/bootstrap/grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ body{
color: #337ab7;
}

[class*="icon-arrow-right-alt"]{
font-size: 18px;
color: #8a6d3b;
}

[class*="icon-arrow-left"]{
font-size: 18px;
color: #337ab7;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@
.icon-arrow-right:before {
content: "\e906";
}
.icon-arrow-right-alt:before {
content: "\e906";
}
.icon-arrow-up:before {
content: "\e907";
}
Expand Down

0 comments on commit ed9443e

Please sign in to comment.