mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 22:28:37 +02:00
Add SM info to splash
This commit is contained in:
parent
d36efad6fe
commit
12c9278d44
2 changed files with 57 additions and 38 deletions
|
@ -11,6 +11,7 @@ body {
|
|||
color: #414141;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
* {
|
||||
|
@ -74,8 +75,9 @@ p {}
|
|||
}
|
||||
|
||||
.column.right {
|
||||
z-index: -1;
|
||||
float: right;
|
||||
padding-top: 67px;
|
||||
padding-top: 16px;
|
||||
padding-left: 60px;
|
||||
position: absolute;
|
||||
right: -30px;
|
||||
|
@ -105,6 +107,15 @@ p {}
|
|||
/* padding-top: 34px; */
|
||||
}
|
||||
|
||||
#main-content {
|
||||
height: 350px;
|
||||
border-bottom: 2px solid #F5F6F6;
|
||||
}
|
||||
|
||||
#existing-resources-area {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding-top: 34px;
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="middle content">
|
||||
<div id="main-content">
|
||||
<div class="column left">
|
||||
<p>
|
||||
<h2>What now?</h2>
|
||||
|
@ -50,14 +51,21 @@
|
|||
var osType = require('os').type();
|
||||
menuBarImageURL = '';
|
||||
if (osType = 'Windows_NT') {
|
||||
menuBarImageURL = "images/console-menubar-osx.png";
|
||||
menuBarImageURL = "images/console-menubar-windows-2x.png";
|
||||
} else {
|
||||
menuBarImageURL = "images/console-menubar-osx.png";
|
||||
menuBarImageURL = "images/console-menubar-osx-2x.png";
|
||||
}
|
||||
document.write('<img src="' + menuBarImageURL + '" width=320px/>');
|
||||
document.write('<img src="' + menuBarImageURL + '" width=384px/>');
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div id="existing-resources-area">
|
||||
<p>
|
||||
<h2>Your existing Stack Manager content is safe.</h2>
|
||||
Server Console comes with demo content but does not overwrite your data. To import content you previously managed with Stack Manager, <a target="_blank" href="https://docs.highfidelity.com/docs/the-basics">see our guide to migrating content</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom">
|
||||
<div class="content footer">
|
||||
<input type="checkbox" id="suppress-splash"> </input>
|
||||
|
|
Loading…
Reference in a new issue