Neaten 'here' button

This commit is contained in:
Jones8683
2025-05-30 12:05:23 +09:30
parent d7fc7582d1
commit 6e5c3b4733
+21 -1
View File
@@ -5,6 +5,26 @@ import { animate, stagger } from "motion";
import { DeleteWhatsNew } from "../Whatsnew"; import { DeleteWhatsNew } from "../Whatsnew";
export function OpenAboutPage() { export function OpenAboutPage() {
if (!document.getElementById('about-here-link-style')) {
const style = document.createElement('style');
style.id = 'about-here-link-style';
style.textContent = `
.about-here-link {
background: rgba(0, 102, 255, 0.07) !important;
border-radius: 0.3em !important;
padding: 2px 10px !important;
color: #176bb2 !important;
font-weight: 500 !important;
transition: background 0.2s, color 0.2s !important;
cursor: pointer !important;
}
.about-here-link:hover {
background: rgba(0, 102, 255, 0.13) !important;
color: #124c87 !important;
}
`;
document.head.appendChild(style);
}
const background = document.createElement("div"); const background = document.createElement("div");
background.id = "whatsnewbk"; background.id = "whatsnewbk";
background.classList.add("whatsnewBackground"); background.classList.add("whatsnewBackground");
@@ -28,7 +48,7 @@ export function OpenAboutPage() {
<p>We are currently working on fixing bugs and adding useful features. If you want to make a feature request or report a bug, you can do so on GitHub (find icon below). We are always looking for more contributors!</p> <p>We are currently working on fixing bugs and adding useful features. If you want to make a feature request or report a bug, you can do so on GitHub (find icon below). We are always looking for more contributors!</p>
<h1>Credits:</h1> <h1>Credits:</h1>
<p>Nulkem created the original extension, was ported to Manifest V3 by MEGA-Dawg68, and is under active development by Crazypersonalph, SethBurkart123, and other contributors.</p> <p>Nulkem created the original extension, was ported to Manifest V3 by MEGA-Dawg68, and is under active development by Crazypersonalph, SethBurkart123, and other contributors.</p>
<p> Full contributors list <a href="https://github.com/BetterSEQTA/BetterSEQTA-Plus/graphs/contributors">here</a></p> <p> Full contributors list <a href="https://github.com/BetterSEQTA/BetterSEQTA-Plus/graphs/contributors" class="about-here-link">here</a></p>
</div> </div>
`).firstChild; `).firstChild;