Skip to content

Commit

Permalink
menus: add new icons
Browse files Browse the repository at this point in the history
* Changes some icons to more adapted versions.
* Closes rero/rero-ils#1645.

Co-Authored-by: Pascal Repond <[email protected]>
  • Loading branch information
PascalRepond committed Nov 15, 2023
1 parent b82f47d commit b278e24
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions projects/admin/src/app/menu/menu-definition/menu-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const MENU_APP: IMenuParent[] = [
name: 'Requests',
router_link: ['/', 'circulation', 'requests'],
attributes: { id: 'requests-menu' },
extras: { iconClass: 'fa fa-exchange' },
extras: { iconClass: 'fa fa-shopping-basket' },
access: {
permissions: [PERMISSIONS.CIRC_ADMIN]
}
Expand All @@ -48,7 +48,7 @@ export const MENU_APP: IMenuParent[] = [
router_link: ['/', 'records', 'ill_requests'],
query_params: { library: '$currentLibrary' },
attributes: { id: 'ill-requests-menu' },
extras: { iconClass: 'fa fa-shopping-basket' },
extras: { iconClass: 'fa fa-truck' },
access: {
permissions: [PERMISSIONS.ILL_ACCESS]
}
Expand Down Expand Up @@ -88,7 +88,7 @@ export const MENU_APP: IMenuParent[] = [
{
name: 'Catalog',
attributes: { id: 'catalog-menu' },
extras: { iconClass: 'fa fa-file-o' },
extras: { iconClass: 'fa fa-book' },
children: [
{
name: 'Documents',
Expand All @@ -107,7 +107,7 @@ export const MENU_APP: IMenuParent[] = [
name: 'Create a bibliographic record',
router_link: ['/', 'records', 'documents', 'new'],
attributes: { id: 'create-bibliographic-record-menu' },
extras: { iconClass: 'fa fa-file-o' },
extras: { iconClass: 'fa fa-plus-square' },
access: {
permissions: [PERMISSIONS.DOC_CREATE]
}
Expand All @@ -116,7 +116,7 @@ export const MENU_APP: IMenuParent[] = [
name: 'Import from the web',
router_link: ['/', 'records', 'import_bnf'],
attributes: { id: 'import-menu' },
extras: { iconClass: 'fa fa-file-o' },
extras: { iconClass: 'fa fa-cloud-download' },
access: {
permissions: [PERMISSIONS.DOC_CREATE]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<button [routerLink]="['/', 'records', 'holdings', 'detail', holding.metadata.pid]"
class="btn btn-outline-primary btn-sm ml-1"
title="{{ 'Holdings detail' | translate }}">
<i class="fa fa-file-text-o"></i>
<i class="fa fa-eye"></i>
</button>
<!-- REQUEST BUTTON -->
<button *ngIf="permissions && permissions.canRequest && permissions.canRequest.can; else notRequest"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1 class="mb-2" translate>Holdings</h1>
type="button" class="btn btn-sm btn-outline-primary ml-1"
title="{{ 'Quick receive' | translate }}"
(click)="quickIssueReceive()">
<i class="fa fa-file-text"></i>
<i class="fa fa-check-circle"></i>
</button>
<button *ngIf="allowIssueCreation"
type="button" class="btn btn-sm btn-outline-primary ml-1"
Expand Down

0 comments on commit b278e24

Please sign in to comment.