0
0

🍱 isp icons #6

Merged
thetek42 merged 4 commits from ui-test into main 2021-04-03 17:04:35 +02:00
2 changed files with 8 additions and 5 deletions
Showing only changes of commit b6734e923e - Show all commits

View File

@ -26,7 +26,7 @@ function dnswatch_search() {
request.onload = function() {
if (request.status >= 200 && request.status < 400) {
var response = JSON.parse(this.response);
console.log(response);
//console.log(response);
// TODO: CLEAN UP THIS MESS OF TABLE GENERATION CODE
@ -41,7 +41,7 @@ function dnswatch_search() {
table += '</td>\n';
// provider
table += '<td class="icon">\n';
table += `<i data-feather="${ response["data"]["reference"]["icon"] }"></i>\n`;
table += `<img class="uncolored-svg" src="../svg/${ response["data"]["reference"]["nameserver"] }.svg">\n`;
table += '</td>\n'
// name and address
table += `<td class="name">${ response["data"]["reference"]["name"] }<small>${ response["data"]["reference"]["address"] }</small></td>\n`;
@ -57,7 +57,7 @@ function dnswatch_search() {
table += '<tr></tr>\n'; // spacer
//// search rows
response['data']['search'].forEach(i => {
console.log(i);
//console.log(i);
table += '<tr>\n';
// status
table += `<td class="status ${ i["matching"] ? "check" : "cross" }">\n`;
@ -65,7 +65,7 @@ function dnswatch_search() {
table += '</td>\n';
// provider icon
table += '<td class="icon">\n';
table += `<i data-feather="${ i["icon"] }"></i>\n`;
table += `<img class="uncolored-svg" src="../svg/${ i["nameserver"] }.svg">\n`;
table += '</td>\n';
// name and address
table += `<td class="name">${ i["name"] }<small>${ i["address"] }</small></td>\n`;

View File

@ -138,7 +138,7 @@ input, button
color: $c-blue
td.icon
border-left: solid transparent 2rem
width: 5rem
width: 3rem
td.name small
color: darken($c-fg, 30%)
margin-left: 1rem
@ -169,6 +169,9 @@ input, button
vertical-align: -.2rem
width: 1.2rem
.uncolored-svg
filter: invert(.8)
@keyframes spinner
0%
transform: rotate(0deg)