Finishes details on Processes list to release new Alpha. Ref. #20.
This commit is contained in:
parent
31bdc22a15
commit
df01b1e047
|
@ -125,14 +125,14 @@
|
|||
<td
|
||||
class="column-small-width"
|
||||
:label="$i18n.get('label_last_processed_on')"
|
||||
:aria-label="$i18n.get('label_last_processed_on') + ' ' + getDate(bgProcess.last_processed_on)">
|
||||
:aria-label="$i18n.get('label_last_processed_on') + ' ' + getDate(bgProcess.processed_last)">
|
||||
<p
|
||||
v-tooltip="{
|
||||
content: getDate(bgProcess.last_processed_on),
|
||||
content: getDate(bgProcess.processed_last),
|
||||
autoHide: false,
|
||||
placement: 'auto-start'
|
||||
}">
|
||||
{{ getDate(bgProcess.last_processed_on) }}</p>
|
||||
{{ getDate(bgProcess.processed_last) }}</p>
|
||||
</td>
|
||||
<!-- Logs -->
|
||||
<td
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
transform: none !important;
|
||||
}
|
||||
&.is-outlined {
|
||||
color: #150e38 !important;
|
||||
color: $turquoise5 !important;
|
||||
background-color: white !important;
|
||||
border-color: $gray4 !important;
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ $blue5-invert: findColorInvert($blue5);
|
|||
// Turquoise, used mainly for collection level
|
||||
$turquoise1: #e6f6f8;
|
||||
$turquoise1-invert: findColorInvert($turquoise1);
|
||||
$turquoise2: #ceedef;
|
||||
$turquoise2: #d9eced;
|
||||
$turquoise2-invert: findColorInvert($turquoise2);
|
||||
$turquoise3: #76c6cc;
|
||||
$turquoise3-invert: findColorInvert($turquoise3);
|
||||
|
|
|
@ -100,6 +100,9 @@ a:hover {
|
|||
color: $gray4 !important;
|
||||
background-color: $gray2 !important;
|
||||
}
|
||||
.button.is-outlined {
|
||||
color: $blue5 !important;
|
||||
}
|
||||
.tabs {
|
||||
li.is-active a {
|
||||
border-bottom: 5px solid $blue5;
|
||||
|
|
|
@ -27,13 +27,14 @@
|
|||
<div
|
||||
class="media"
|
||||
@click="goToItemPage(item)">
|
||||
<a
|
||||
v-if="item.thumbnail != undefined"
|
||||
@click="goToItemPage(item)">
|
||||
<img :src="item['thumbnail'].medium_large ? item['thumbnail'].medium_large : thumbPlaceholderPath">
|
||||
</a>
|
||||
|
||||
<div class="list-metadata media-body">
|
||||
<a
|
||||
v-if="item.thumbnail != undefined"
|
||||
@click="goToItemPage(item)">
|
||||
<img :src="item['thumbnail'].medium_large ? item['thumbnail'].medium_large : thumbPlaceholderPath">
|
||||
</a>
|
||||
|
||||
<span
|
||||
v-for="(column, index) in displayedMetadata"
|
||||
:key="index"
|
||||
|
|
Loading…
Reference in New Issue