diff --git a/.sync_b2a788d19481.db b/.sync_b2a788d19481.db index 9d38a58..1599c7d 100644 Binary files a/.sync_b2a788d19481.db and b/.sync_b2a788d19481.db differ diff --git a/.sync_b2a788d19481.db-shm b/.sync_b2a788d19481.db-shm index 2d49dfc..dbf9e6a 100644 Binary files a/.sync_b2a788d19481.db-shm and b/.sync_b2a788d19481.db-shm differ diff --git a/.sync_b2a788d19481.db-wal b/.sync_b2a788d19481.db-wal index 305ea90..5f28d92 100644 Binary files a/.sync_b2a788d19481.db-wal and b/.sync_b2a788d19481.db-wal differ diff --git a/assets/css/forum-styles.css b/assets/css/forum-styles.css index 72066ea..1acca0a 100644 --- a/assets/css/forum-styles.css +++ b/assets/css/forum-styles.css @@ -599,6 +599,13 @@ body { padding: 1.2vh; } } + +.refresh-cards-button { + border-color: white; + border-radius: 1.5vh; + background-color: black; + color: white; +} /* Two cards per row on medium screens */ /* @media (max-width: 768px) { diff --git a/assets/js/AdminTools.js b/assets/js/AdminTools.js index db9395a..3992358 100644 --- a/assets/js/AdminTools.js +++ b/assets/js/AdminTools.js @@ -13,7 +13,7 @@ document.addEventListener('DOMContentLoaded', async () => { console.log(`User is an Admin, buttons for MA Tools not removed. userState.isAdmin = ${userState.isMinterAdmin}`); } else { // Remove all "TOOLS" links and their related elements - const toolsLinks = document.querySelectorAll('a[href="TOOLS"]'); + const toolsLinks = document.querySelectorAll('a[href="TOOLS"], a[href="MINTER-BOARD"], a[href="MINTERS"]'); toolsLinks.forEach(link => { // If the link is within a button, remove the button const buttonParent = link.closest('button'); diff --git a/assets/js/MinterBoard.js b/assets/js/MinterBoard.js index 748802e..ceec74f 100644 --- a/assets/js/MinterBoard.js +++ b/assets/js/MinterBoard.js @@ -1,8 +1,9 @@ // const cardIdentifierPrefix = "test-board-card" +const testMode = true; const cardIdentifierPrefix = "testMB-board-card"; let isExistingCard = false; let existingCardData = {}; -let existingCardIdentifier ={}; +let existingCardIdentifier = {}; document.addEventListener("DOMContentLoaded", async () => { const minterBoardLinks = document.querySelectorAll('a[href="MINTER-BOARD"], a[href="MINTERS"]'); @@ -35,6 +36,7 @@ const loadMinterBoardPage = async () => {

Minter Board

The Minter Board is a place to publish information about yourself in order to obtain support from existing Minters and Minter Admins on the Qortal network. You may publish a header, content, and links to other QDN-published content in order to support you in your mission. Minter Admins and Existing Minters will then support you (or not) by way of a vote on your card. Card details you publish, along with existing poll results, and comments from others, will be displayed here. Good Luck on your Qortal journey to becoming a minter!

+