mirror of
https://github.com/leoherzog/TorrentParts.git
synced 2026-01-23 19:58:03 -08:00
Continuing to Organize into Two Columns
This commit is contained in:
58
bundle.min.js
vendored
58
bundle.min.js
vendored
File diff suppressed because one or more lines are too long
42
index.html
42
index.html
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<meta name="description" content="Inspect and edit what's in your Torrent file or Magnet link" />
|
||||
<meta name="keywords" content="torrent, webtorrent, magnet, p2p, peer to peer, filesharing, announce, tracker, webseed" />
|
||||
@@ -83,28 +83,36 @@
|
||||
<br />
|
||||
<a id="removeTrackers">Remove All</a>
|
||||
</div>
|
||||
<button id="addTracker" data-type="announce">
|
||||
<span class="fas fa-plus"></span>
|
||||
</button>
|
||||
<div id="announce"></div>
|
||||
<div>
|
||||
<button id="addTracker" data-type="announce">
|
||||
<span class="far fa-plus-circle"></span> Add Tracker
|
||||
</button>
|
||||
<div id="announce"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="property">
|
||||
<label for="urlList">Webseed URLs</label>
|
||||
<button id="addWebseed" data-type="urlList">
|
||||
<span class="fas fa-plus"></span>
|
||||
</button>
|
||||
<button id="removeWebseeds">
|
||||
<span class="fas fa-eraser"></span>
|
||||
</button>
|
||||
<div id="urlList"></div>
|
||||
<div>
|
||||
<label for="urlList">Webseed URLs</label>
|
||||
<button id="removeWebseeds">
|
||||
<span class="fas fa-eraser"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div>
|
||||
<button id="addWebseed" data-type="urlList">
|
||||
<span class="far fa-plus-circle"></span> Add Tracker
|
||||
</button>
|
||||
<div id="urlList"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="property">
|
||||
<label for="files">Files</label>
|
||||
<button id="getFiles">
|
||||
<span class="fad fa-chart-network"></span>
|
||||
</button>
|
||||
<div>
|
||||
<label for="files">Files</label>
|
||||
<button id="getFiles">
|
||||
<span class="fad fa-chart-network"></span>
|
||||
</button>
|
||||
</div>
|
||||
<table id="files">
|
||||
<tbody id="filesBody"></tbody>
|
||||
</table>
|
||||
|
||||
2
parse.js
2
parse.js
@@ -327,7 +327,7 @@ async function addCurrentTrackers() {
|
||||
}
|
||||
|
||||
function addRow() {
|
||||
parsed[this.dataset.type].push("");
|
||||
parsed[this.dataset.type].unshift("");
|
||||
display();
|
||||
}
|
||||
|
||||
|
||||
17
style.css
17
style.css
@@ -61,6 +61,10 @@ button:disabled {
|
||||
filter: brightness(0.6);
|
||||
}
|
||||
|
||||
a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
header {
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
@@ -104,6 +108,7 @@ label[for="torrent"] {
|
||||
box-sizing: border-box;
|
||||
border-radius: 900px;
|
||||
text-align: center;
|
||||
text-transform: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@@ -157,6 +162,18 @@ input {
|
||||
width: 440px;
|
||||
}
|
||||
|
||||
#addTracker, #addWebseed {
|
||||
width: 440px;
|
||||
color: var(--light-blue);
|
||||
background: var(--dark-blue);
|
||||
border: 1px solid var(--light-blue);
|
||||
padding: 8px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 900px;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@media (max-width: 1080px) {
|
||||
|
||||
#reset {
|
||||
|
||||
Reference in New Issue
Block a user