2023-09-27 10:58:42 -06:00
|
|
|
<style>
|
2023-12-29 16:17:03 -07:00
|
|
|
#toolbar {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
width: 60px;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
transition: 1s;
|
|
|
|
opacity: 0.5;
|
2023-12-29 20:05:27 -07:00
|
|
|
z-index: 1;
|
2023-12-29 16:17:03 -07:00
|
|
|
|
|
|
|
padding: 18px 0px 18px 0px;
|
|
|
|
}
|
2023-09-27 10:58:42 -06:00
|
|
|
|
2023-12-29 16:17:03 -07:00
|
|
|
#toolbar:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#close-nav-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toolbar input[type=range][orient=vertical] {
|
|
|
|
appearance: slider-vertical;
|
|
|
|
display: none;
|
|
|
|
}
|
2023-09-27 10:58:42 -06:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<aside id="toolbar">
|
2023-12-29 20:05:27 -07:00
|
|
|
<span title="Toggle Search Menu" style="cursor:pointer" id="open-nav-icon" onclick="handleNavVisibility()">
|
2023-12-29 16:17:03 -07:00
|
|
|
<svg width="18" height="18" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<circle fill="none" stroke="var(--text-base-color)" stroke-width="1.1" cx="9" cy="9" r="7"></circle>
|
|
|
|
<path fill="none" stroke="var(--text-base-color)" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"></path>
|
|
|
|
</svg>
|
2023-09-27 10:58:42 -06:00
|
|
|
</span>
|
2023-12-29 16:17:03 -07:00
|
|
|
|
2023-12-29 20:05:27 -07:00
|
|
|
<span title="Adjusts Diagram Size" style="cursor:pointer;margin-top:16px;" onclick="resizeImage()">
|
2023-12-29 16:17:03 -07:00
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<circle cx="16.1" cy="6.1" r="1.1"></circle>
|
|
|
|
<rect fill="none" stroke="var(--text-base-color" x=".5" y="2.5" width="19" height="15"></rect>
|
|
|
|
<polyline fill="none" stroke="var(--text-base-color" stroke-width="1.01" points="4,13 8,9 13,14"></polyline>
|
|
|
|
<polyline fill="none" stroke="var(--text-base-color)" stroke-width="1.01" points="11,12 12.5,10.5 16,14">
|
|
|
|
</polyline>
|
|
|
|
</svg>
|
2023-09-27 10:58:42 -06:00
|
|
|
</span>
|
2023-12-29 20:05:27 -07:00
|
|
|
<input title="100%" type="range" orient="vertical" min="0" max="100" step="0.5" value="100">
|
2023-12-29 16:17:03 -07:00
|
|
|
</aside>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
</script>
|