Oops, you're right.
I just did quite a few tests using a custom style sheet, but for some reason I cannot understand,when the font-family options include at least one font that does not support Ancient Greek, Ancient Greek does not work. And, strangely enough, besides Times New Roman and Lucida, it seems that the sans-serif moniker does not work either.
So, the code below works, even if you don't have Tahoma installed, but most other combinations don't.
- Code: Select all
body
{
background: #fefdeb;
font-family: Tahoma, dejavusans;
font-size: 13px;
}
These don't work:
- Code: Select all
Tahoma, dejavusans, sans-serif;
Tahoma,sans-serif;
sans-serif,Tahoma;
I don't know if you'd be interested in using the example above. It would be useful, and dejavu is installed in all Linux systems by default anyway. (I did get to test goldendict with Windows, and it is not a problem there).