minor HTML and CSS fixes
* duplicate use of ID "heart" * "& " --> "& " * missed changes in simple UI
This commit is contained in:
@@ -665,6 +665,12 @@ button {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
#heartMM {
|
||||
transition: color 0.9s;
|
||||
font-size: 16px;
|
||||
color: #0f0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
|
||||
@@ -389,7 +389,7 @@
|
||||
</div>
|
||||
<br>
|
||||
<span class="h">WLED made with <span id="heart">❤︎</span> by Aircoookie and the <a href="https://wled.discourse.group/" target="_blank">WLED community</a></span><br>
|
||||
<span class="h">WLED MM made with <span id="heart">❤︎</span> by Softhack007 & Ewowi and the <a href="https://discord.gg/8P7wGuqT/" target="_blank">WLED 2D & Audio Dev</a> community</span>
|
||||
<span class="h">WLED MM made with <span id="heartMM">❤︎</span> by Softhack007 & Ewowi and the <a href="https://discord.gg/8P7wGuqT/" target="_blank">WLED 2D & Audio Dev</a> community</span>
|
||||
</div>
|
||||
|
||||
<div id="nodes" class="modal">
|
||||
|
||||
@@ -3216,6 +3216,7 @@ setInterval(()=>{
|
||||
if (hc==144) hc+=36;
|
||||
if (hc==108) hc+=18;
|
||||
gId('heart').style.color = `hsl(${hc}, 100%, 50%)`;
|
||||
gId('heartMM').style.color = `hsl(${hc}, 100%, 50%)`;
|
||||
}, 910);
|
||||
|
||||
function openGH() { window.open("https://github.com/Aircoookie/WLED/wiki"); }
|
||||
|
||||
@@ -102,8 +102,8 @@
|
||||
<button type="submit" onclick="window.location='./settings/ui'">User Interface</button>
|
||||
<button id="dmxbtn" style="display:none;" type="submit" onclick="window.location='./settings/dmx'">DMX Output</button>
|
||||
<button type="submit" onclick="window.location='./settings/sync'">Sync Interfaces</button>
|
||||
<button type="submit" onclick="window.location='./settings/time'">Time & Macros</button>
|
||||
<button type="submit" onclick="window.location='./settings/sec'">Security & Updates</button>
|
||||
<button type="submit" onclick="window.location='./settings/time'">Time & Macros</button>
|
||||
<button type="submit" onclick="window.location='./settings/sec'">Security & Updates</button>
|
||||
<button type="submit" onclick="window.location='./edit'">File System ☾</button> <!--WLEDMM-->
|
||||
</body>
|
||||
</html>
|
||||
@@ -741,7 +741,7 @@ Length: <input type="number" name="XC${i}" id="xc${i}" class="l" min="1" max="65
|
||||
Use Gamma value: <input name="GV" type="number" class="m" placeholder="2.8" min="1" max="3" step="0.1" required><br><br>
|
||||
Brightness factor: <input name="BF" type="number" class="m" min="1" max="255" required> %
|
||||
<h3>Transitions</h3>
|
||||
Crossfade: <input type="checkbox" name="TF"><br>
|
||||
Cross-fade: <input type="checkbox" name="TF"><br>
|
||||
Transition Time: <input name="TD" type="number" class="xl" min="0" max="65500"> ms<br>
|
||||
Enable Palette transitions: <input type="checkbox" name="PF"><br>
|
||||
<i>Random Cycle</i> Palette Time: <input name="TP" type="number" class="m" min="1" max="255"> s<br>
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
<form id="form_s" name="Sf" method="post">
|
||||
<div class="toprow">
|
||||
<div class="helpB"><button type="button" onclick="H()">?</button></div>
|
||||
<button type="button" onclick="B()">Back</button><button type="submit">Save & Connect</button><hr>
|
||||
<button type="button" onclick="B()">Back</button><button type="submit">Save & Connect</button><hr>
|
||||
</div>
|
||||
<h2>WiFi setup</h2>
|
||||
<h3>Connect to existing network</h3>
|
||||
@@ -211,7 +211,7 @@
|
||||
</select><br><br>
|
||||
</div>
|
||||
<hr>
|
||||
<button type="button" onclick="B()">Back</button><button type="submit">Save & Connect</button>
|
||||
<button type="button" onclick="B()">Back</button><button type="submit">Save & Connect</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -361,6 +361,12 @@ button:hover {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
#heartMM {
|
||||
transition: color 0.9s;
|
||||
font-size: 16px;
|
||||
color: #0f0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
|
||||
@@ -246,6 +246,7 @@
|
||||
<button class="btn" id="resetbtn" onclick="cnfReset()">Reboot WLED</button>
|
||||
</div>
|
||||
<span class="h">Made with <span id="heart">❤︎</span> by Aircoookie and the <a href="https://wled.discourse.group/" target="_blank">WLED community</a></span>
|
||||
<span class="h">WLED MM made with <span id="heartMM">❤︎</span> by Softhack007 & Ewowi and the <a href="https://discord.gg/8P7wGuqT/" target="_blank">WLED 2D & Audio Dev</a> community</span>
|
||||
</div>
|
||||
|
||||
<div id="nodes" class="modal">
|
||||
|
||||
@@ -509,10 +509,11 @@ function populateInfo(i)
|
||||
if (i.ver.startsWith("0.14.")) vcn = "Hoshi";
|
||||
if (i.ver.includes("-bl")) vcn = "Supāku";
|
||||
if (i.cn) vcn = i.cn;
|
||||
if (i.ver.includes("14.5.")) vcn = "Small Step";
|
||||
|
||||
//WLEDMM: add total heap and total PSRAM, and build number
|
||||
if (i.ver.includes("14.1-")) vcn = "Sitting Ducks"; // easter egg
|
||||
if (i.ver.includes("14.0-mdev")) vcn = "Lupo";
|
||||
//if (i.ver.includes("14.1-")) vcn = "Sitting Ducks"; // easter egg
|
||||
//if (i.ver.includes("14.0-mdev")) vcn = "Lupo";
|
||||
cn += `v${i.ver} <i>"${vcn}"</i><p><em>build ${i.vid}</em></p><table>
|
||||
${urows}
|
||||
${inforow("Build",i.vid)}
|
||||
@@ -1281,7 +1282,7 @@ function setBalance(b)
|
||||
|
||||
var hc = 0;
|
||||
setInterval(()=>{if (!isInfo) return; hc+=18; if (hc>300) hc=0; if (hc>200)hc=306; if (hc==144) hc+=36; if (hc==108) hc+=18;
|
||||
gId('heart').style.color = `hsl(${hc}, 100%, 50%)`;}, 910);
|
||||
gId('heart').style.color = `hsl(${hc}, 100%, 50%)`; gId('heartMM').style.color = `hsl(${hc}, 100%, 50%)`;}, 910);
|
||||
|
||||
function openGH() { window.open("https://github.com/Aircoookie/WLED/wiki"); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user