mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-21 22:09:17 +02:00
Merge pull request #11107 from mnafees/21412
CR for Job #21412 - Add "Report a Problem" feature
This commit is contained in:
commit
ad5b8c438e
1 changed files with 26 additions and 1 deletions
|
@ -6,6 +6,13 @@
|
||||||
<title>Welcome to Interface</title>
|
<title>Welcome to Interface</title>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Raleway Light';
|
||||||
|
src: url('../fonts/Raleway-Light.ttf') format('truetype');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: black;
|
background: black;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -15,6 +22,14 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:link {color:inherit}
|
||||||
|
a:active {color:inherit}
|
||||||
|
a:visited {color:inherit}
|
||||||
|
a:hover {
|
||||||
|
color:inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
#left_button {
|
#left_button {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 70;
|
left: 70;
|
||||||
|
@ -38,6 +53,15 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0; left: 0; bottom: 0; right: 0;
|
top: 0; left: 0; bottom: 0; right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#report_problem {
|
||||||
|
position: fixed;
|
||||||
|
top: 10;
|
||||||
|
right: 10;
|
||||||
|
font-family: "Raleway Light", sans-serif;
|
||||||
|
text-decoration: none;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
var handControllerImageURL = null;
|
var handControllerImageURL = null;
|
||||||
|
@ -152,6 +176,7 @@
|
||||||
<a href="#" id="left_button" onmousedown="cycleLeft()"></a>
|
<a href="#" id="left_button" onmousedown="cycleLeft()"></a>
|
||||||
<a href="#" id="right_button" onmousedown="cycleRight()"></a>
|
<a href="#" id="right_button" onmousedown="cycleRight()"></a>
|
||||||
</div>
|
</div>
|
||||||
|
<a href="mailto:support@highfidelity.com" id="report_problem">Report Problem</a>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue