[sphinx-dev] Re: example for tweaking HTML styles?

2009-12-09 Thread Jason S
On Dec 8, 10:49 am, TJG tjgol...@gmail.com wrote: In your _static directory create, eg, my.css which starts with @import default.css; and which then adds or overrides as needed. Then in your conf.py add or update: html_style = 'winsys.css' you mean my.css not winsys.css... but that

Re: [sphinx-dev] Re: example for tweaking HTML styles?

2009-12-09 Thread TJG
Jason S wrote: On Dec 8, 10:49 am, TJG tjgol...@gmail.com wrote: In your _static directory create, eg, my.css which starts with @import default.css; and which then adds or overrides as needed. Then in your conf.py add or update: html_style = 'winsys.css' you mean my.css not

[sphinx-dev] Re: example for tweaking HTML styles?

2009-12-09 Thread Jason S
On Dec 9, 12:24 pm, TJG tjgol...@gmail.com wrote: HTML builds... so if you change the .css file it doesn't recognize that things have changed to force a rebuild. I know; I've just got a rebuild.cmd which I hit. My doc sets aren't big enough for this to be a problem. YMMV, of course.

Re: [sphinx-dev] Re: example for tweaking HTML styles?

2009-12-09 Thread Tim Golden
Jason S wrote: On Dec 9, 12:24 pm, TJG tjgol...@gmail.com wrote: HTML builds... so if you change the .css file it doesn't recognize that things have changed to force a rebuild. I know; I've just got a rebuild.cmd which I hit. My doc sets aren't big enough for this to be a problem. YMMV, of

[sphinx-dev] Re: example for tweaking HTML styles?

2009-12-09 Thread Jason S
On Dec 9, 2:55 pm, Tim Golden tjgol...@gmail.com wrote: rebuild.cmd build.py -a -b html . .\_build pause /rebuild.cmd Oh, in other worse you are using the -a argument to force writing all output files. That works, I only have a handful of source files. I didn't know about that one. Thanks!