Merged development into dev_312

This commit is contained in:
Michael Wiltberger
2025-06-03 13:15:02 +00:00
5 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
/* Optional: Gradient Background for Sidebar */
.wy-side-nav-search {
background: linear-gradient(180deg, #2980b9, #343131);
}
.wy-side-nav-search .wy-dropdown > a img.logo,
.wy-side-nav-search > a img.logo {
max-width: 50% !important; /* Adjust max width as needed */
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 KiB

View File

@@ -62,6 +62,18 @@ html_theme = 'sphinx_rtd_theme'
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_logo = '_static/kaipy-logo.png'
html_theme_options = {
'logo_only': True,
'display_version': False,
'collapse_navigation': False,
'navigation_depth': 3,
}
html_css_files = [
'css/sidebar_theme.css',
]
# Mock Imports
autodoc_mock_imports = ['cartopy']