CSS style update

This commit is contained in:
2025-02-28 16:45:44 +01:00
parent 9971cd719b
commit 1b5a49f406
47 changed files with 2279 additions and 19 deletions

View File

@ -0,0 +1,24 @@
<?php
$rcmail_config['message_highlight_default'] = array(
array(
'header' => 'subject',
'input' => 'My Subject',
'color' => '#ff0000'
),
array(
'header' => 'from',
'input' => 'nobody@example.com',
'color' => '#00ff00'
),
array(
'header' => 'to',
'input' => 'nobody@example.com',
'color' => '#0000ff'
),
array(
'header' => 'cc',
'input' => 'nobody@example.com',
'color' => '#0000ff'
),
);