Make sure to insert mathml @import directly after other imports and before other rulesets. Thanks to Brent Hendricks <brentmh@rice.edu> for the patch.

This commit is contained in:
cls%seawood.org 2000-10-08 09:05:56 +00:00
Родитель 245363e961
Коммит 7e129ff6d0
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -10,7 +10,8 @@ close(UA);
if (!($css =~ m|\@import.*mathml\.css|))
{
open(UA, "+>>$ua");
print UA "\@import url(resource:/res/mathml.css);\n";
$css =~ s|(\@import[^\@]+\;)\n\n|$1\n\@import url\(resource:/res/mathml\.css\);\n\n|;
open(UA, ">$ua");
print UA $css;
close(UA);
}