Skip to content

Commit b5b2cda

Browse files
authored
Improve user guide layout for narrow viewports (shader-slang#1820)
1 parent 11b4459 commit b5b2cda

File tree

1 file changed

+52
-1
lines changed

1 file changed

+52
-1
lines changed

docs/_layouts/user-guide.html

+52-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
overflow-y: auto;
2424
box-sizing: border-box;
2525
max-height: 100vh;
26+
display: block;
2627
}
2728

2829
#tocInner {
@@ -74,11 +75,52 @@
7475
{
7576
color: #303080
7677
}
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+
}
77118
</style>
78119
{% seo %}
79120
</head>
80121

81122
<body>
123+
<button id="btnToggleTOC" onclick="toggleTOC()">Table of Contents</button>
82124
<div id="tocColumn">
83125
<div id="tocInner">
84126
{% include_relative user-guide-toc.html %}
@@ -105,6 +147,8 @@
105147
function updatePosition()
106148
{
107149
tocColumn.style.left = (rightColumn.getBoundingClientRect().x - tocColumn.getBoundingClientRect().width) + "px";
150+
if (window.innerWidth > 700)
151+
tocColumn.style.display = "";
108152
}
109153
window.addEventListener("resize", updatePosition);
110154
updatePosition();
@@ -113,7 +157,14 @@
113157
<script>
114158
var tocItemsArray = [];
115159
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+
}
117168
function expandItem(e) {
118169
if (e == selectedItem)
119170
e.style["font-weight"] = "bold";

0 commit comments

Comments
 (0)