Quote:
Originally Posted by Jellby
Well, I meant the ability to separately edit the CSS files, and decide what styles go in each file, etc.
|
if i understand correctly, in fact you can do that ; just create a new CSS style tag in the code like this :
Code:
<style type="text/css">
/*<![CDATA[*/
.some_css {
styles_defined_in : first_css_file;}
/*]]>*/
</style>
<style type="text/css">
/*<![CDATA[*/
.more_css {
styles_defined_in : second_css_file;}
/*]]>*/
</style>
for each style tag, a separate css file is created. if you import an epub with several css files, each one is delimited by its own style tag. unless i misunderstand what you are asking ? (or what sigil is doing...)
Quote:
Of course, I meant it would be optionally automatic
|
Quote:
I think that should be fixed (I know, I'll add an issue )
|