mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
Adjusting bold text on labels
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<div class="col-12 col-md-3 h-auto float-left d-flex action-label">
|
<div class="col-12 col-md-3 h-auto float-left d-flex action-label">
|
||||||
<span class="justify-content-center align-self-center">
|
<span class="justify-content-center align-self-center font-weight-bold">
|
||||||
{{'item.edit.tabs.status.buttons.' + operation.operationKey + '.label' | translate}}
|
{{'item.edit.tabs.status.buttons.' + operation.operationKey + '.label' | translate}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<p class="mt-2">{{'item.edit.tabs.status.description' | translate}}</p>
|
<p class="mt-2">{{'item.edit.tabs.status.description' | translate}}</p>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div *ngFor="let statusKey of statusDataKeys" class="w-100 pt-1">
|
<div *ngFor="let statusKey of statusDataKeys" class="w-100 pt-1">
|
||||||
<div class="col-12 col-md-3 float-left status-label">
|
<div class="col-12 col-md-3 float-left status-label font-weight-bold">
|
||||||
{{'item.edit.tabs.status.labels.' + statusKey | translate}}:
|
{{'item.edit.tabs.status.labels.' + statusKey | translate}}:
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-9 float-left status-data" id="status-{{statusKey}}">
|
<div class="col-12 col-md-9 float-left status-data" id="status-{{statusKey}}">
|
||||||
@@ -11,15 +11,15 @@
|
|||||||
|
|
||||||
<div *ngFor="let identifier of (identifiers$ | async)" class="w-100 pt-1">
|
<div *ngFor="let identifier of (identifiers$ | async)" class="w-100 pt-1">
|
||||||
<div *ngIf="(identifier.identifierType==='doi')">
|
<div *ngIf="(identifier.identifierType==='doi')">
|
||||||
<div class="col-12 col-md-3 float-left status-label">
|
<div class="col-12 col-md-3 float-left status-label font-weight-bold">
|
||||||
{{identifier.identifierType.toLocaleUpperCase()}}
|
{{identifier.identifierType.toLocaleUpperCase()}}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-9 float-left status-label">{{identifier.value}}
|
<div class="col-12 col-md-9 float-left status-label font-weight-bold">{{identifier.value}}
|
||||||
({{"item.edit.identifiers.doi.status."+identifier.identifierStatus|translate}})</div>
|
({{"item.edit.identifiers.doi.status."+identifier.identifierStatus|translate}})</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-12 col-md-3 float-left status-label">
|
<div class="col-12 col-md-3 float-left status-label font-weight-bold">
|
||||||
{{'item.edit.tabs.status.labels.itemPage' | translate}}:
|
{{'item.edit.tabs.status.labels.itemPage' | translate}}:
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-9 float-left status-data" id="status-itemPage">
|
<div class="col-12 col-md-9 float-left status-data" id="status-itemPage">
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
.status-label {
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
@@ -60,7 +60,6 @@ import { ItemOperation } from '../item-operation/itemOperation.model';
|
|||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'ds-base-item-status',
|
selector: 'ds-base-item-status',
|
||||||
styleUrls: ['item-status.component.scss'],
|
|
||||||
templateUrl: './item-status.component.html',
|
templateUrl: './item-status.component.html',
|
||||||
changeDetection: ChangeDetectionStrategy.Default,
|
changeDetection: ChangeDetectionStrategy.Default,
|
||||||
animations: [
|
animations: [
|
||||||
|
Reference in New Issue
Block a user