This commit is contained in:
NodeMixaholic 2023-03-09 01:11:05 -06:00 committed by GitHub
parent 95d7b9cae6
commit 93590a206c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -10,7 +10,7 @@
<body> <body>
<input id="txtUrl" style="width:72%;" placeholder="Put the website here" name="url" type="text" onkeypress="clickPress(event)" /> <input id="txtUrl" style="width:72%;" placeholder="Put the website here" name="url" type="text" onkeypress="clickPress(event)" />
<button onclick="go(); return false;" id="goBtn"></button> <button onclick="back(); return false;" id="backBtn">⬅️</button> <button onclick="forward(); return false;" id="forwardBtn">➡️</button> <button onclick="go(); return false;" id="goBtn"></button> <button onclick="back(); return false;" id="backBtn">⬅️</button> <button onclick="forward(); return false;" id="forwardBtn">➡️</button>
<tab-group new-tab-button="true" sortable="true"><webview id="foo" style="width:100%; height:90vh" disablewebsecurity></webview></tab-group> <tab-group new-tab-button="true" sortable="true"><webview id="foo" style="width:100%; height:90vh;user-select: none;" disablewebsecurity></webview></tab-group>
<script src="node_modules/electron-tabs/dist/electron-tabs.js"></script> <script src="node_modules/electron-tabs/dist/electron-tabs.js"></script>
<script type="text/javascript" src="./extension/extensionList.js"></script> <script type="text/javascript" src="./extension/extensionList.js"></script>
<script type="text/javascript" src="./config.js"></script> <script type="text/javascript" src="./config.js"></script>

View file

@ -11,6 +11,7 @@
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
font-size: 3rem; font-size: 3rem;
user-select: none;
} }
#backBtn { #backBtn {
@ -22,6 +23,7 @@
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
font-size: 3rem; font-size: 3rem;
user-select: none;
} }
#forwardBtn { #forwardBtn {
@ -33,6 +35,7 @@
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
font-size: 3rem; font-size: 3rem;
user-select: none;
} }
#txtUrl { #txtUrl {
@ -42,4 +45,5 @@
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
font-size: 3rem; font-size: 3rem;
user-select: none;
} }