Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: executablebooks/sphinx-tabs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.3.0
Choose a base ref
...
head repository: executablebooks/sphinx-tabs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.3.1
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Mar 16, 2022

  1. [fix] don't append CSS files to the end of html_static_path list (#153)

    html_static_path is a list of paths that contain custom static files.  They are
    copied to the output’s _static directory **after** the theme’s static files, so a
    file named default.css will overwrite the theme’s default.css [1]
    
    Without this patch a tabs.css can't be overwritten by the `conf.py` file:
    
       html_static_path = [ 'static/tabs.css', ]
    
    The /static folder from sphinx-tabs needs to be added in front of
    html_static_path since the last item in the list will be written last to
    /_static.
    
    [1] https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_static_path
    
    Signed-off-by: Markus Heiser <[email protected]>
    return42 authored Mar 16, 2022
    Configuration menu
    Copy the full SHA
    154f273 View commit details
    Browse the repository at this point in the history
  2. [fix] prefers-color-scheme: use dark theme if body[data-theme="auto"] (

    …#154)
    
    Before this patch the CSS implementation assumes that "dark" is supported by the
    theme if the `data-theme` attribute of the <body> tag is unset.
    
    Since most themes are using "light" colors (compare https://sphinx-themes.org)
    and do not set `data-theme` it is better to assume light is the default, even
    when the browser setting `prefers-color-scheme: dark`!
    
    BTW: remove duplication of styles from dark/light theme that are already set in
    the common style.
    
    Signed-off-by: Markus Heiser <[email protected]>
    return42 authored Mar 16, 2022
    Configuration menu
    Copy the full SHA
    5b2f4ee View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2022

  1. RELEASE: v3.3.1

    foster999 committed Mar 17, 2022
    Configuration menu
    Copy the full SHA
    0b04c8e View commit details
    Browse the repository at this point in the history
Loading