Changes to be committed:
modified: src/shared/settings.d.ts modified: static/views/splash.html
This commit is contained in:
parent
2f2283137d
commit
16bd46cbc9
2 changed files with 5 additions and 8 deletions
1
src/shared/settings.d.ts
vendored
1
src/shared/settings.d.ts
vendored
|
@ -29,6 +29,7 @@ export interface Settings {
|
||||||
|
|
||||||
splashTheming?: boolean;
|
splashTheming?: boolean;
|
||||||
splashColor?: string;
|
splashColor?: string;
|
||||||
|
splashAnimationPath?: string;
|
||||||
splashBackground?: string;
|
splashBackground?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,19 +25,15 @@
|
||||||
img {
|
img {
|
||||||
width: 128px;
|
width: 128px;
|
||||||
height: 128px;
|
height: 128px;
|
||||||
image-rendering: pixelated;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<img
|
<!-- the data url is here to ensure there isn't an empty frame before the image is loaded -->
|
||||||
draggable="false"
|
<img id="animation" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
||||||
src="../shiggy.gif"
|
draggable="false" alt="animation" role="presentation" />
|
||||||
alt="shiggy"
|
|
||||||
role="presentation"
|
|
||||||
/>
|
|
||||||
<p>Loading Vesktop...</p>
|
<p>Loading Vesktop...</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
Reference in a new issue