Skip to content

Commit 93e9d2c

Browse files
committed
📚 Add docs on selecting data, using cycler and composing plot functions
1 parent 47961e6 commit 93e9d2c

7 files changed

Lines changed: 672 additions & 2 deletions

File tree

docs/_static/css/mermaid_dark.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Overwrite edge colors and arror marker color in dakr mode. in */
1+
/* Overwrite edge colors and arrow marker color in dark mode. */
22
html[data-theme="dark"] pre.mermaid {
33
& .marker {
44
fill: #e3e3e3 !important;

docs/_static/css/xarray_dark.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* Overwrite xarray wrapper in dark mode. */
2+
html[data-theme="dark"] div.cell_output div.output.text_html {
3+
background-color: var(--pst-color-on-background) !important;
4+
color: var(--pst-color-text-base) !important;
5+
}
6+
7+
/* Tables */
8+
html[data-theme="dark"] div.cell_output table {
9+
color: var(--pst-color-text-base) !important;
10+
}
11+
12+
html[data-theme="dark"] div.cell_output tbody tr:nth-child(odd) {
13+
background-color: var(--pst-color-on-background) !important;
14+
}

docs/conf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@
133133
'contributing': [],
134134
'changelog': [],
135135
'config/project/subproject/config_docs': [],
136+
'notebooks/tips_and_tricks': [],
136137
}
137138

138139
# Theme options are theme-specific and customize the look and feel of a
@@ -147,6 +148,7 @@
147148
html_static_path = ["_static"]
148149
html_css_files = [
149150
'css/mermaid_dark.css',
151+
'css/xarray_dark.css',
150152
]
151153

152154
# -- Options for HTMLHelp output ---------------------------------------

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
installation
1010
usage
1111
config/project/subproject/config_docs
12+
notebooks/tips_and_tricks
1213
api_docs
1314
contributing
1415
changelog

0 commit comments

Comments
 (0)