File tree 5 files changed +22
-4
lines changed
5 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ <h1><a href="https://threejs.org">three.js</a></h1>
21
21
22
22
< div id ="sections ">
23
23
< span class ="selected "> docs</ span >
24
- < a href ="../examples/#webgl_animation_keyframes " > examples </ a >
24
+ < a href ="../manual/ " > manual </ a >
25
25
</ div >
26
26
27
27
< div id ="expandButton "> </ div >
Original file line number Diff line number Diff line change 16
16
< h1 > < a href ="https://threejs.org "> three.js</ a > </ h1 >
17
17
18
18
< div id ="sections ">
19
- < a href ="../docs/index.html#manual/introduction/Creating-a-scene "> docs</ a >
20
19
< span class ="selected "> examples</ span >
21
20
</ div >
22
21
Original file line number Diff line number Diff line change 11
11
--font-size : 16px ;
12
12
--line-height : 26px ;
13
13
14
- --border-style : 1px solid # E8E8E8 ;
14
+ --border-color : # E8E8E8 ;
15
+ --border-style : 1px solid var (--border-color );
15
16
--header-height : 48px ;
16
17
--panel-width : 300px ;
17
18
--panel-padding : 16px ;
27
28
--text-color : # bbb ;
28
29
--secondary-text-color : # 666 ;
29
30
30
- --border-style : 1px solid # 444 ;
31
+ --border-color : # 444 ;
32
+ --border-style : 1px solid var (--border-color );
31
33
}
32
34
33
35
# previewsToggler {
@@ -103,6 +105,13 @@ h1 a {
103
105
color : var (--color-blue );
104
106
}
105
107
108
+ hr {
109
+ border : 0 ;
110
+ height : 1px ;
111
+ background-color : var (--border-color );
112
+ margin : 16px 0 ;
113
+ }
114
+
106
115
# header {
107
116
display : flex;
108
117
height : var (--header-height );
Original file line number Diff line number Diff line change 20
20
< h1 > < a href ="https://threejs.org "> three.js</ a > </ h1 >
21
21
22
22
< div id ="sections ">
23
+ < a href ="../docs/ "> docs</ a >
23
24
< span class ="selected "> manual</ span >
24
25
</ div >
25
26
@@ -231,6 +232,14 @@ <h1><a href="https://threejs.org">three.js</a></h1>
231
232
232
233
// Create categories
233
234
235
+ if ( category === '---' ) {
236
+
237
+ const separator = document . createElement ( 'hr' ) ;
238
+ navigation . appendChild ( separator ) ;
239
+ continue ;
240
+
241
+ }
242
+
234
243
const pages = categories [ category ] ;
235
244
236
245
const categoryContainer = document . createElement ( 'div' ) ;
Original file line number Diff line number Diff line change 21
21
"How to use Post Processing" : " en/how-to-use-post-processing" ,
22
22
"Matrix Transformations" : " en/matrix-transformations"
23
23
},
24
+ "---" : {},
24
25
"Basics" : {
25
26
"Fundamentals" : " en/fundamentals" ,
26
27
"Responsive Design" : " en/responsive" ,
You can’t perform that action at this time.
0 commit comments