minad / olelo

Wiki with git backend
MIT License
241 stars 43 forks source link

Default css theme "blue" disables bold and italics #6

Closed cout closed 14 years ago

cout commented 14 years ago

If I paste the creole 1.0 test cases at:

http://www.wikicreole.org/attach/Creole1.0TestCases/creole1.0test.txt

into a wiki page, the bold and //italics// text shows up the same as normal text. They should be displayed as bold and italics, respectively.

A workaround is to add the following to style.css:

strong {
  font-weight: bold;
} 
em {
  font-style: italic;
} 

but I don't know enough about sass to fix this properly.