Display msgid's smaller for Netmail/Echomail H1 headings

This commit is contained in:
Deon George 2024-05-13 09:24:35 +10:00
parent f912e81ee6
commit 760995568e
3 changed files with 7 additions and 2 deletions

View File

@ -133,4 +133,9 @@ 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 [{{ $o->msgid ?: '-' }}] <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 [{{ $o->msgid ?: '-' }}] <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>