File tree Expand file tree Collapse file tree 3 files changed +524
-2
lines changed Expand file tree Collapse file tree 3 files changed +524
-2
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,10 @@ makedocs(
40
40
" Gradient Accumulation" => " gradient_accumulation.md" ,
41
41
" Usage in AD" => [
42
42
" Overview" => " autodiff/overview.md" ,
43
- " Operator Overloading" => " autodiff/operator_overloading.md"
43
+ " Operator Overloading" => " autodiff/operator_overloading.md" ,
44
44
],
45
45
" Design" => [
46
+ " Changing the Primal" => " design/changing_the_primal.md" ,
46
47
" Many Differential Types" => " design/many_differentials.md" ,
47
48
],
48
49
" API" => " api.md" ,
Original file line number Diff line number Diff line change 1
1
// Only for light theme
2
2
3
3
html :not (.theme--documenter-dark ) body #documenter {
4
-
5
4
// Links
6
5
7
6
a {
@@ -107,3 +106,16 @@ html:not(.theme--documenter-dark) body #documenter {
107
106
html .theme--documenter-dark .admonition.is-category-terminology {
108
107
border-color : #FFEC8B ;
109
108
}
109
+
110
+ // Details
111
+ details {
112
+ padding-left : 1rem ;
113
+ padding-right : 1rem ;
114
+ padding-bottom : 1rem ;
115
+ background : aliceblue ;
116
+ }
117
+
118
+ html .theme--documenter-dark details {
119
+ background : #282f2f ;
120
+ }
121
+
You can’t perform that action at this time.
0 commit comments