KASM-3993 add link outs to the KasmVNC about page and documentation in the sidebar as unobtrusively as possible (#55)

Co-authored-by: ryan.kuba <ryan.kuba@kasmweb.com>
This commit is contained in:
Ryan Kuba 2023-02-08 11:43:30 -08:00 committed by GitHub
parent 31b1a93335
commit 46e361a4e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

View File

@ -1162,3 +1162,11 @@ input:checked + .slider:before {
.slider-label { .slider-label {
padding-left: 26px; padding-left: 26px;
} }
/* Do not use default link colors */
a:link {
color: white;
}
a:visited {
color: white;
}

View File

@ -95,7 +95,13 @@
<div class="noVNC_scroll"> <div class="noVNC_scroll">
<h1 class="noVNC_logo"><img src="app/images/icons/kasm_logo.png" /></h1> <h1 class="noVNC_logo">
<a href="https://www.kasmweb.com/kasmvnc" target="_blank"
alt="KasmVNC Learn More"
title="KasmVNC Learn More">
<img src="app/images/icons/kasm_logo.png" />
</a>
</h1>
<!-- Drag/Pan the viewport --> <!-- Drag/Pan the viewport -->
<div class="noVNC_button_div noVNC_hidden noVNC_hide_on_disconnect" > <div class="noVNC_button_div noVNC_hidden noVNC_hide_on_disconnect" >
@ -499,6 +505,11 @@
<li class="noVNC_version_wrapper"> <li class="noVNC_version_wrapper">
<span>Version:</span> <span>Version:</span>
<span class="noVNC_version"></span> <span class="noVNC_version"></span>
<span class="slider-label">
<a href="https://www.kasmweb.com/kasmvnc/docs/latest/index.html" target="_blank">
Documentation
</a>
</span>
</li> </li>
</ul> </ul>
</div> </div>