-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Tweak admonition style, ensure eq. are ref'able (#2636)
Also changes the execution of the lazy auto api generation to only run on demand (in the CI and RTD) Blocked by: - #2610
- Loading branch information
1 parent
6352ad8
commit 534bddf
Showing
4 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,7 @@ jobs: | |
-W | ||
--keep-going | ||
-t run_doxygen | ||
-t lazy_autodoc | ||
-b linkcheck | ||
. _build/html/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
.wy-side-nav-search > a img.logo { | ||
width: 200px; | ||
} | ||
|
||
.math { | ||
text-align: left; | ||
} | ||
.eqno { | ||
float: right; | ||
} | ||
|
||
.admonition.seealso .admonition-title::before { | ||
content: ""; /* font awesome: share */ | ||
} | ||
|
||
.admonition.caution .admonition-title::before, | ||
.admonition.danger .admonition-title::before, | ||
.admonition.warning .admonition-title::before { | ||
content: ""; /* font awesome: triangle-exclamation */ | ||
} | ||
|
||
.admonition.error .admonition-title::before { | ||
content: ""; /* font awesome: circle-xmark */ | ||
} | ||
|
||
.admonition.hint .admonition-title::before, | ||
.admonition.tip .admonition-title::before { | ||
content: ""; /* font awesome: lightbulb */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters