Skip to content

Commit

Permalink
ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
blancoj committed Dec 16, 2024
1 parent 2dff157 commit bf58d72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/app/admin/admin-sidebar/admin-sidebar.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
.logo-wrapper {
img {
height: 20px;
width: 20px;
}
}
.section-header-text {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<!-- Don't show the top label in the window that pops up when adding item, coll, or community.
<!-- Don't show the top label in the window that pops up when adding item, coll, or community, which is the community name when adding an item.
<ds-truncatable-part [maxLines]="1" [background]="isCurrent() ? 'primary' : 'default'" [showToggle]="false">
<div [ngClass]="isCurrent() ? 'text-light' : 'text-body'"
[innerHTML]="(parentTitle$ && parentTitle$ | async) ? (parentTitle$ | async) : ('home.breadcrumbs' | translate)"></div>
</ds-truncatable-part>
-->
<ds-truncatable-part [maxLines]="1" [background]="isCurrent() ? 'primary' : 'default'" [showToggle]="false">
<div class="font-weight-bold"
[ngClass]="isCurrent() ? 'text-light' : 'text-primary'"
[innerHTML]="dsoTitle"></div>
</ds-truncatable-part>
<!-- Don't show description
<ds-truncatable-part *ngIf="description" [maxLines]="1" [background]="isCurrent() ? 'primary' : 'default'" [showToggle]="false">
<div class="text-secondary"
[ngClass]="isCurrent() ? 'text-light' : 'text-secondary'"
[innerHTML]="description"></div>
</ds-truncatable-part>
-->

0 comments on commit bf58d72

Please sign in to comment.