mirror of
https://github.com/GuySandler/CanvasRefined.git
synced 2026-06-21 01:49:54 +02:00
ui revamp 4
I think I am done for now
This commit is contained in:
parent
a13374c23f
commit
de2cb476a5
@ -900,9 +900,9 @@
|
||||
<button class="big-button back-btn" data-i18n="back">Back</button>
|
||||
</div>
|
||||
<div class="option-container">
|
||||
<h3 class="header-small" id="fontsDropdown" style="cursor: pointer;">
|
||||
<h3 class="header-small" id="fontsDropdown" style="cursor:pointer; display:flex; align-items:center; gap:8px;">
|
||||
Dashboard Font
|
||||
<img src="../icon/dropdownArrow.svg" width="16px" height="16px">
|
||||
<img id="fontsDropdownArrow" style="transform:rotate(180deg);" src="../icon/dropdownArrow.svg" width="16px" height="16px">
|
||||
</h3>
|
||||
|
||||
<div id="quick-fonts"></div>
|
||||
|
||||
@ -510,7 +510,7 @@ function setup() {
|
||||
});
|
||||
|
||||
document.querySelector("#alert").addEventListener("click", clearAlert);
|
||||
|
||||
// TODO: maybe fix this at some point, idk what is causing the error here
|
||||
document.querySelectorAll(".preset-button.customization-button").forEach(btn => btn.addEventListener("click", changeToPresetCSS));
|
||||
|
||||
// activate card color inputs
|
||||
@ -752,12 +752,16 @@ function setup() {
|
||||
document.getElementById("fontsDropdown").addEventListener("click", (e) => {
|
||||
const el = document.getElementById("quick-fonts");
|
||||
const el2 = document.getElementsByClassName("custom-font")[0];
|
||||
const arrow = document.getElementById("fontsDropdownArrow");
|
||||
if (el.style.display === "none") {
|
||||
el.style.display = "flex";
|
||||
el2.style.display = "block";
|
||||
arrow.style.transform = "rotate(180deg)";
|
||||
|
||||
} else {
|
||||
el.style.display = "none";
|
||||
el2.style.display = "none";
|
||||
arrow.style.transform = "rotate(0deg)";
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user