Patch for bug 313045: Display quoted text in a different color; patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org>, r=LpSolit, a=justdave.

This commit is contained in:
jocuri%softhome.net 2006-02-21 22:18:35 +00:00
Родитель 509c0fba2f
Коммит 2b4abae4a4
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -529,6 +529,10 @@ sub quoteUrls {
$text = html_quote($text);
# Color quoted text
$text =~ s~^(&gt;.+)$~<span class="quote">$1</span >~mg;
$text =~ s~</span >\n<span class="quote">~\n~g;
# mailto:
# Use |<nothing> so that $1 is defined regardless
$text =~ s~\b(mailto:|)?([\w\.\-\+\=]+\@[\w\-]+(?:\.[\w\-]+)+)\b

Просмотреть файл

@ -336,4 +336,8 @@ td.tab.spacer
background: white;
}
span.quote {
color: #65379c;
}
table#flags th, table#flags td { vertical-align: baseline; text-align: left; }