diff options
-rw-r--r-- | index.html | 5 | ||||
-rw-r--r-- | views/common/fonts.css | 4 | ||||
-rw-r--r-- | views/online.html | 1 |
3 files changed, 8 insertions, 2 deletions
@@ -15,6 +15,11 @@ }
})
</script>
+ <style>
+ * {
+ cursor: not-allowed !important;
+ }
+ </style>
<script>if (typeof require !== "undefined") {native = true;try{global.native = true;}catch(e){}} else {native = false;try{global.native = false;}catch(e){}}if (!native){global = window;}if (native){kresources=require('@electron/remote').getCurrentWindow().resources;trackEvent=require('@electron/remote').getCurrentWindow().trackEvent;require('@electron/remote').getCurrentWindow().log(" * Parsing view");}info=(_a,b)=>{console.info(b);};warn=(_a,b)=>{console.warn(b);};error=(_a,b)=>{console.error(b);};</script>
<meta charset="UTF-8">
<title>Kartik</title>
diff --git a/views/common/fonts.css b/views/common/fonts.css index a7d81d5..1dd094e 100644 --- a/views/common/fonts.css +++ b/views/common/fonts.css @@ -18,6 +18,6 @@ font-family: monospace !important;
}
-body, * {
- cursor: default !important;
+* {
+ cursor: not-allowed !important;
}
\ No newline at end of file diff --git a/views/online.html b/views/online.html index 8d79994..ec4134b 100644 --- a/views/online.html +++ b/views/online.html @@ -31,6 +31,7 @@ <div style="text-align: center;">
<p style="font-size:10px;" id="progress"><script>document.write(lang.online.disconnected)</script></p>
<p style="font-size:15px;"><script>document.write(atob(location.hash.substr(1)))</script></p>
+ <p style="font-size:16px;" id="progress2"><script>document.write(lang.win.quit[0])</script></p>
</div>
</div>
</div>
|