Compare commits

..

3 Commits

Author SHA1 Message Date
6c7da7a220 When decompressing compressed messages, dont barf if we try to decompress the same attribute twice
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 39s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m47s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s
2024-05-13 17:06:51 +10:00
b008cb20d2 Fix recording of netmails, when they contain taglines and origin lines 2024-05-13 17:06:51 +10:00
b9b5cf4214 Display msgid's smaller for Netmail/Echomail H1 headings 2024-05-13 17:06:51 +10:00
3 changed files with 9 additions and 9 deletions

14
public/css/fixes.css vendored
View File

@ -104,14 +104,19 @@ ol {
h1>small.float-end {
padding-top: 2rem;
}
h1>small.float-end:before {
h1>small:before {
color: #acacac;
content: '[';
}
h1>small.float-end:after {
h1>small:after {
color: #acacac;
content: ']';
}
/* Enable smaller text in h1, but not tiny as used at the float-end */
h1 > small:not(.float-end) {
font-size: 50% !important;
}
h1 sup {
text-shadow: none;
font-size: 50%;
@ -133,9 +138,4 @@ h1>small.success:after {
.titledbox {
margin-right: 0;
margin-left: 0;
}
/* Enable smaller text in h1, but not tiny as used at the float-end */
h1 > small:not(.float-end) {
font-size: 50% !important;
}

View File

@ -6,7 +6,7 @@
@section('content')
<div class="row">
<div class="col-12">
<h1>Echomail <small>[{{ $o->msgid ?: '-' }}]</small> <small class="float-end">#{{ $o->id }}</small></h1>
<h1>Echomail <small>{{ $o->msgid ?: '-' }}</small> <small class="float-end">#{{ $o->id }}</small></h1>
@include('widgets.message',['msg'=>$o])
</div>

View File

@ -6,7 +6,7 @@
@section('content')
<div class="row">
<div class="col-12">
<h1>Netmail <small>[{{ $o->msgid ?: '-' }}]</small> <small class="float-end">#{{ $o->id }}</small></h1>
<h1>Netmail <small>{{ $o->msgid ?: '-' }}</small> <small class="float-end">#{{ $o->id }}</small></h1>
@include('widgets.message',['msg'=>$o])
</div>