File tree 1 file changed +52
-1
lines changed
1 file changed +52
-1
lines changed Original file line number Diff line number Diff line change 23
23
overflow-y : auto;
24
24
box-sizing : border-box;
25
25
max-height : 100vh ;
26
+ display : block;
26
27
}
27
28
28
29
# tocInner {
74
75
{
75
76
color : # 303080
76
77
}
78
+ # btnToggleTOC {
79
+ display : none;
80
+ width : fit-content;
81
+ margin-left : 10px ;
82
+ margin-top : 10px ;
83
+ padding : 10px ;
84
+ border-style : solid;
85
+ border-color : # 808080 ;
86
+ border-width : 1px ;
87
+ }
88
+ @media screen and (max-width : 850px ) {
89
+ # tocColumn {
90
+ width : 300px ;
91
+ display : block;
92
+ }
93
+ # centeringDiv {
94
+ padding-left : 300px ;
95
+ }
96
+ }
97
+
98
+ @media screen and (max-width : 700px ) {
99
+ # tocColumn {
100
+ width : 100% ;
101
+ position : static;
102
+ display : none;
103
+ }
104
+ # tocInner {
105
+ padding : 10px ;
106
+ }
107
+ # rightColumn {
108
+ padding-left : 10px ;
109
+ padding-right : 10px ;
110
+ }
111
+ # centeringDiv {
112
+ padding-left : 0px ;
113
+ }
114
+ # btnToggleTOC {
115
+ display : block;
116
+ }
117
+ }
77
118
</ style >
78
119
{% seo %}
79
120
</ head >
80
121
81
122
< body >
123
+ < button id ="btnToggleTOC " onclick ="toggleTOC() "> Table of Contents</ button >
82
124
< div id ="tocColumn ">
83
125
< div id ="tocInner ">
84
126
{% include_relative user-guide-toc.html %}
105
147
function updatePosition ( )
106
148
{
107
149
tocColumn . style . left = ( rightColumn . getBoundingClientRect ( ) . x - tocColumn . getBoundingClientRect ( ) . width ) + "px" ;
150
+ if ( window . innerWidth > 700 )
151
+ tocColumn . style . display = "" ;
108
152
}
109
153
window . addEventListener ( "resize" , updatePosition ) ;
110
154
updatePosition ( ) ;
113
157
< script >
114
158
var tocItemsArray = [ ] ;
115
159
var selectedItem = null ;
116
-
160
+ function toggleTOC ( ) {
161
+ var tocColumn = document . getElementById ( "tocColumn" ) ;
162
+ if ( tocColumn . style . display == "block" )
163
+ tocColumn . style . display = "none" ;
164
+ else
165
+ tocColumn . style . display = "block" ;
166
+ event . stopPropagation ( ) ;
167
+ }
117
168
function expandItem ( e ) {
118
169
if ( e == selectedItem )
119
170
e . style [ "font-weight" ] = "bold" ;
You can’t perform that action at this time.
0 commit comments