diff --git a/public/css/fixes.css b/public/css/fixes.css index eaf4be6..822ac92 100644 --- a/public/css/fixes.css +++ b/public/css/fixes.css @@ -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%; diff --git a/resources/views/echomail/view.blade.php b/resources/views/echomail/view.blade.php index 4d778d4..2da2bb1 100644 --- a/resources/views/echomail/view.blade.php +++ b/resources/views/echomail/view.blade.php @@ -6,7 +6,7 @@ @section('content')
-

Echomail [{{ $o->msgid ?: '-' }}] #{{ $o->id }}

+

Echomail {{ $o->msgid ?: '-' }} #{{ $o->id }}

@include('widgets.message',['msg'=>$o])
diff --git a/resources/views/netmail/view.blade.php b/resources/views/netmail/view.blade.php index 506e911..e753afc 100644 --- a/resources/views/netmail/view.blade.php +++ b/resources/views/netmail/view.blade.php @@ -6,7 +6,7 @@ @section('content')
-

Netmail [{{ $o->msgid ?: '-' }}] #{{ $o->id }}

+

Netmail {{ $o->msgid ?: '-' }} #{{ $o->id }}

@include('widgets.message',['msg'=>$o])