part 3
This commit is contained in:
parent
95d7b9cae6
commit
93590a206c
2 changed files with 5 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
<body>
|
||||
<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>
|
||||
<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 type="text/javascript" src="./extension/extensionList.js"></script>
|
||||
<script type="text/javascript" src="./config.js"></script>
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#backBtn {
|
||||
|
@ -22,6 +23,7 @@
|
|||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#forwardBtn {
|
||||
|
@ -33,6 +35,7 @@
|
|||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
#txtUrl {
|
||||
|
@ -42,4 +45,5 @@
|
|||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 3rem;
|
||||
user-select: none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue