small fixes
This commit is contained in:
parent
81579961d7
commit
232623d024
3 changed files with 5 additions and 4 deletions
|
@ -2,9 +2,11 @@
|
|||
@media (prefers-color-scheme: dark) {
|
||||
body {background-color: black;color: white;}
|
||||
.bar-color{color:#000!important;background-color:#707070!important}
|
||||
.bar-color h3{color: #fff;}
|
||||
.w3-button{color: white}
|
||||
.w3-container p{color: white}
|
||||
input[type=text], select{background-color: #4c4c4c;}
|
||||
input[type=text]::placeholder, select::placeholder{color: #9e9e9e;opacity: 1;}
|
||||
input[type=text]{color: #fff;}
|
||||
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#37823a!important}
|
||||
}
|
|
@ -19,7 +19,6 @@ function deleteCard(cardNo) {
|
|||
}
|
||||
|
||||
function buildList() {
|
||||
console.log(document.cookie.split("; ")); //DEBUG!
|
||||
var parent = document.getElementById("dynamicList");
|
||||
|
||||
for (var i = 0; i < getCookie("runningNo"); i++) {
|
||||
|
@ -30,7 +29,7 @@ function buildList() {
|
|||
|
||||
var header = document.createElement("header");
|
||||
header.classList.add("w3-container");
|
||||
header.classList.add("w3-light-gray");
|
||||
header.classList.add("bar-color");
|
||||
|
||||
var headertext = document.createElement("h3");
|
||||
headertext.classList.add("w3-left");
|
||||
|
@ -284,11 +283,11 @@ function saveDynamicDataToFile() {
|
|||
fileString += "<false/>\n";
|
||||
}
|
||||
fileString += "</dict>\n";
|
||||
fileString += "</array>\n";
|
||||
}
|
||||
}
|
||||
//DNS settings end
|
||||
|
||||
fileString += "</array>\n";
|
||||
fileString += "<key>PayloadDescription</key>\n";
|
||||
fileString += "<string>Adds different encrypted DNS configurations to Big Sur and iOS 14 based systems</string>\n";
|
||||
fileString += "<key>PayloadDisplayName</key>\n";
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
<button class="w3-button w3-dark-gray" onclick="createCookie ('BlahDNS Singapore', false, '139.180.141.57', '', '2001:19f0:4400:6bed:5400:2ff:feb1:f9fa', '', 'dot-sg.blahdns.com');">Import DoT</button>
|
||||
<h3>Location: Germany</h3>
|
||||
<button class="w3-button w3-dark-gray" onclick="createCookie ('BlahDNS Germany', true, '', '', '', '', 'https://doh-de.blahdns.com/dns-query');">Import DoH</button>
|
||||
<button class="w3-button w3-dark-gray" onclick="createCookie ('BlahDNS Germany', false, '45.32.55.94', '', '2001:19f0:7001:3259:5400:02ff:fe71:0bc9', '', 'dot-jp.blahdns.com');">Import DoT</button>
|
||||
<button class="w3-button w3-dark-gray" onclick="createCookie ('BlahDNS Germany', false, '45.32.55.94', '', '2001:19f0:7001:3259:5400:02ff:fe71:0bc9', '', 'dot-de.blahdns.com');">Import DoT</button>
|
||||
<h3>Location: Finland</h3>
|
||||
<button class="w3-button w3-dark-gray" onclick="createCookie ('BlahDNS Finland', true, '', '', '', '', 'https://doh-fi.blahdns.com/dns-query');">Import DoH</button>
|
||||
<button class="w3-button w3-dark-gray" onclick="createCookie ('BlahDNS Finland', false, '95.216.212.177', '', '2a01:4f9:c010:43ce::1', '', 'dot-fi.blahdns.com');">Import DoT</button>
|
||||
|
|
Loading…
Add table
Reference in a new issue