Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into 2806-e2e_account_index
This commit is contained in:
commit
32b527f3ec
|
@ -69,8 +69,13 @@
|
||||||
<vn-td expand class="before">
|
<vn-td expand class="before">
|
||||||
<vn-one ng-repeat="old in log.oldProperties">
|
<vn-one ng-repeat="old in log.oldProperties">
|
||||||
<div>
|
<div>
|
||||||
<span translate class="label">{{::old.key}}</span><span class="label">: </span>
|
<span translate class="label alignSpan">{{::old.key}}</span><span class="label alignSpan">: </span>
|
||||||
<span translate class="value">{{::old.value | dashIfEmpty}}</span>
|
<span
|
||||||
|
translate
|
||||||
|
class="value ellipsis"
|
||||||
|
vn-tooltip="{{::old.value | dashIfEmpty}}">
|
||||||
|
{{::old.value | dashIfEmpty}}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</vn-one>
|
</vn-one>
|
||||||
</vn-td>
|
</vn-td>
|
||||||
|
@ -80,8 +85,13 @@
|
||||||
ng-if="!log.description"
|
ng-if="!log.description"
|
||||||
id="newInstance">
|
id="newInstance">
|
||||||
<div>
|
<div>
|
||||||
<span translate class="label">{{::new.key}}</span><span class="label">: </span>
|
<span translate class="label alignSpan">{{::new.key}}</span><span class="label alignSpan">: </span>
|
||||||
<span translate class="value">{{::new.value | dashIfEmpty}}</span>
|
<span
|
||||||
|
translate
|
||||||
|
class="value ellipsis"
|
||||||
|
vn-tooltip="{{::new.value | dashIfEmpty}}">
|
||||||
|
{{::new.value | dashIfEmpty}}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</vn-one>
|
</vn-one>
|
||||||
<vn-one
|
<vn-one
|
||||||
|
|
|
@ -11,3 +11,4 @@ Updates: Actualiza
|
||||||
Deletes: Elimina
|
Deletes: Elimina
|
||||||
Views: Visualiza
|
Views: Visualiza
|
||||||
System: Sistema
|
System: Sistema
|
||||||
|
note: nota
|
|
@ -24,3 +24,14 @@ vn-log {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.ellipsis {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
max-width: 400px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.alignSpan {
|
||||||
|
overflow: hidden;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
Loading…
Reference in New Issue