mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 17:26:45 +00:00
Improve UI for mobile
This commit is contained in:
parent
a91bcc0503
commit
8325f0c2d2
@ -49,7 +49,7 @@
|
|||||||
<br>
|
<br>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td id=" short-url-header">Short URL<br>(click to copy)</td>
|
<td id="short-url-header">Short URL<br>(click to copy)</td>
|
||||||
<td>Long URL</td>
|
<td>Long URL</td>
|
||||||
<td>Hits</td>
|
<td>Hits</td>
|
||||||
<td name="deleteBtn">×</td>
|
<td name="deleteBtn">×</td>
|
||||||
|
@ -61,15 +61,16 @@ const showAlert = async (text, col) => {
|
|||||||
|
|
||||||
const TR = (row, site) => {
|
const TR = (row, site) => {
|
||||||
const tr = document.createElement("tr");
|
const tr = document.createElement("tr");
|
||||||
const longTD = TD(A_LONG(row.long));
|
const longTD = TD(A_LONG(row.long), "Long URL");
|
||||||
var shortTD = null;
|
var shortTD = null;
|
||||||
if (window.isSecureContext) {
|
if (window.isSecureContext) {
|
||||||
shortTD = TD(A_SHORT(row.short, site));
|
shortTD = TD(A_SHORT(row.short, site), "Short URL");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
shortTD = TD(A_SHORT_INSECURE(row.short, site));
|
shortTD = TD(A_SHORT_INSECURE(row.short, site), "Short URL");
|
||||||
}
|
}
|
||||||
const hitsTD = TD(row.hits);
|
hitsTD = TD(row.hits);
|
||||||
|
hitsTD.setAttribute("label", "Hits");
|
||||||
const btn = deleteButton(row.short);
|
const btn = deleteButton(row.short);
|
||||||
|
|
||||||
tr.appendChild(shortTD);
|
tr.appendChild(shortTD);
|
||||||
@ -122,15 +123,17 @@ const deleteButton = (shortUrl) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
td.setAttribute("name", "deleteBtn");
|
td.setAttribute("name", "deleteBtn");
|
||||||
|
td.setAttribute("label", "Delete");
|
||||||
td.appendChild(btn);
|
td.appendChild(btn);
|
||||||
return td;
|
return td;
|
||||||
};
|
};
|
||||||
|
|
||||||
const TD = (s) => {
|
const TD = (s, u) => {
|
||||||
const td = document.createElement("td");
|
const td = document.createElement("td");
|
||||||
const div = document.createElement("div");
|
const div = document.createElement("div");
|
||||||
div.innerHTML = s;
|
div.innerHTML = s;
|
||||||
td.appendChild(div);
|
td.appendChild(div);
|
||||||
|
td.setAttribute("label", u);
|
||||||
return td;
|
return td;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ form input[name="shortUrl"]::placeholder {
|
|||||||
div[name="github-link"] {
|
div[name="github-link"] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0.5%;
|
right: 0.5%;
|
||||||
bottom: 0.5%;
|
top: 0.5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pure-table {
|
.pure-table {
|
||||||
@ -57,3 +57,44 @@ div[name="github-link"] {
|
|||||||
#logo {
|
#logo {
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#password {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog form {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Settings for mobile devices */
|
||||||
|
@media (pointer:none),
|
||||||
|
(pointer:coarse) {
|
||||||
|
table tr {
|
||||||
|
border-bottom: 1px solid #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
table thead {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
table td {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
table td::before {
|
||||||
|
content: attr(label);
|
||||||
|
font-weight: bold;
|
||||||
|
width: 120px;
|
||||||
|
min-width: 120px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
table tr td div {
|
||||||
|
width: 63vw
|
||||||
|
}
|
||||||
|
|
||||||
|
.pure-table caption {
|
||||||
|
padding-top: 0px;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user