|
1 | 1 | <p class="mt-2">{{'item.edit.tabs.status.description' | translate}}</p> |
2 | 2 | <div class="row"> |
3 | | - <div *ngFor="let statusKey of statusDataKeys" class="w-100"> |
4 | | - <div class="col-3 float-left status-label"> |
| 3 | + <div *ngFor="let statusKey of statusDataKeys" class="w-100 pt-1"> |
| 4 | + <div class="col-12 col-md-3 float-left status-label font-weight-bold"> |
5 | 5 | {{'item.edit.tabs.status.labels.' + statusKey | translate}}: |
6 | 6 | </div> |
7 | | - <div class="col-9 float-left status-data" id="status-{{statusKey}}"> |
| 7 | + <div class="col-12 col-md-9 float-left status-data" id="status-{{statusKey}}"> |
8 | 8 | {{statusData[statusKey]}} |
9 | 9 | </div> |
10 | 10 | </div> |
11 | 11 |
|
12 | | - <div *ngFor="let identifier of (identifiers$ | async)" class="w-100"> |
| 12 | + <div *ngFor="let identifier of (identifiers$ | async)" class="w-100 pt-1"> |
13 | 13 | <div *ngIf="(identifier.identifierType==='doi')"> |
14 | | - <div class="col-3 float-left status-label"> |
| 14 | + <div class="col-12 col-md-3 float-left status-label font-weight-bold"> |
15 | 15 | {{identifier.identifierType.toLocaleUpperCase()}} |
16 | 16 | </div> |
17 | | - <div class="col-9 float-left status-label">{{identifier.value}} |
| 17 | + <div class="col-12 col-md-9 float-left status-label font-weight-bold">{{identifier.value}} |
18 | 18 | ({{"item.edit.identifiers.doi.status."+identifier.identifierStatus|translate}})</div> |
19 | 19 | </div> |
20 | 20 | </div> |
21 | 21 |
|
22 | | - <div class="col-3 float-left status-label"> |
| 22 | + <div class="col-12 col-md-3 float-left status-label font-weight-bold"> |
23 | 23 | {{'item.edit.tabs.status.labels.itemPage' | translate}}: |
24 | 24 | </div> |
25 | | - <div class="col-9 float-left status-data" id="status-itemPage"> |
| 25 | + <div class="col-12 col-md-9 float-left status-data" id="status-itemPage"> |
26 | 26 | <a [routerLink]="itemPageRoute$ | async">{{itemPageRoute$ | async}}</a> |
27 | 27 | </div> |
28 | 28 |
|
|
0 commit comments