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 b9b5cf4214
3 changed files with 9 additions and 4 deletions

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%;

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>