mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
107873: Set process overview table column widths
This commit is contained in:
@@ -18,11 +18,11 @@
|
|||||||
<table class="table table-striped table-hover">
|
<table class="table table-striped table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">{{'process.overview.table.status' | translate}}</th>
|
<th scope="col" class="status-header">{{'process.overview.table.status' | translate}}</th>
|
||||||
<th scope="col">{{'process.overview.table.name' | translate}}</th>
|
<th scope="col" class="name-header">{{'process.overview.table.name' | translate}}</th>
|
||||||
<th scope="col">{{'process.overview.table.user' | translate}}</th>
|
<th scope="col" class="user-header">{{'process.overview.table.user' | translate}}</th>
|
||||||
<th scope="col">{{'process.overview.table.' + processStatus.toLowerCase() + '.info' | translate}}</th>
|
<th scope="col" class="info-header">{{'process.overview.table.' + processStatus.toLowerCase() + '.info' | translate}}</th>
|
||||||
<th scope="col">{{'process.overview.table.actions' | translate}}</th>
|
<th scope="col" class="actions-header">{{'process.overview.table.actions' | translate}}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
|
@@ -1,3 +1,23 @@
|
|||||||
.toggle-icon {
|
.toggle-icon {
|
||||||
font-size: calc(var(--bs-small-font-size) * 0.6);
|
font-size: calc(var(--bs-small-font-size) * 0.6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-header {
|
||||||
|
width: var(--ds-process-overview-table-status-column-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.name-header {
|
||||||
|
width: var(--ds-process-overview-table-name-column-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-header {
|
||||||
|
width: var(--ds-process-overview-table-user-column-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-header {
|
||||||
|
width: var(--ds-process-overview-table-info-column-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions-header {
|
||||||
|
width: var(--ds-process-overview-table-actions-column-width);
|
||||||
|
}
|
||||||
|
@@ -97,4 +97,10 @@
|
|||||||
--ds-dso-edit-lang-width: 90px;
|
--ds-dso-edit-lang-width: 90px;
|
||||||
--ds-dso-edit-actions-width: 173px;
|
--ds-dso-edit-actions-width: 173px;
|
||||||
--ds-dso-edit-virtual-tooltip-min-width: 300px;
|
--ds-dso-edit-virtual-tooltip-min-width: 300px;
|
||||||
|
|
||||||
|
--ds-process-overview-table-status-column-width: 150px;
|
||||||
|
--ds-process-overview-table-name-column-width: auto;
|
||||||
|
--ds-process-overview-table-user-column-width: 200px;
|
||||||
|
--ds-process-overview-table-info-column-width: 250px;
|
||||||
|
--ds-process-overview-table-actions-column-width: 80px;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user