fixed color setting signature brightness to 0%
This commit is contained in:
parent
0a5860e59c
commit
8e85fcc14c
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 15px;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
break-inside: avoid;
|
break-inside: avoid;
|
||||||
break-before: always;
|
break-before: always;
|
||||||
|
@ -130,7 +130,7 @@ table {
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-oriented {
|
.column-oriented {
|
||||||
margin: 20px 0
|
margin-bottom: 15px
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-oriented td,
|
.column-oriented td,
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
#signature {
|
#signature {
|
||||||
margin-top: 80px
|
padding-right: 10px
|
||||||
}
|
}
|
||||||
|
|
||||||
#signature img {
|
#signature img {
|
||||||
margin-bottom: 20px;
|
-webkit-filter: brightness(0%);
|
||||||
width: 150px
|
filter: brightness(0%);
|
||||||
|
margin-bottom: 10px;
|
||||||
|
max-width: 150px
|
||||||
}
|
}
|
||||||
|
|
||||||
#packagings {
|
#packagings {
|
||||||
|
|
|
@ -175,14 +175,17 @@
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
<section class="size50 pull-left">
|
||||||
<section id="signature" class="panel dark" v-if="signature && signature.id">
|
<section id="signature" class="panel" v-if="signature && signature.id">
|
||||||
<section class="header">Firma digital</section>
|
<section class="header">Firma digital</section>
|
||||||
<section class="body centered">
|
<section class="body centered">
|
||||||
<img v-bind:src="dmsPath"/>
|
<img v-bind:src="dmsPath"/>
|
||||||
<section>{{signature.created | date}}</section>
|
<section>{{signature.created | date}}</section>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
<!-- Footer component -->
|
<!-- Footer component -->
|
||||||
<report-footer id="pageFooter"
|
<report-footer id="pageFooter"
|
||||||
|
|
|
@ -51,7 +51,7 @@ module.exports = {
|
||||||
}).format(parseFloat(input));
|
}).format(parseFloat(input));
|
||||||
},
|
},
|
||||||
date(input) {
|
date(input) {
|
||||||
return strftime('%d-%m-%Y', input);
|
return strftime('%d-%m-%Y %H:%I:%S', input);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Reference in New Issue