When I use something like this in my `conf.py`: ``` python html_static_path = ['_static'] html_context = { 'css_files': ['_static/my_css_file.css'], } ``` ... and an extension uses [add_stylesheet()](http://www.sphinx-doc.org/en/stable/extdev/appapi.html#sphinx.application.Sphinx.add_stylesheet), latter has no effect. Is this intentional? I would expect the `css_files` mentioned in `conf.py` to be _appended_ to the list of CSS files from the theme and from extensions.