Merge pull request #293 from Jones8683/main

Restyle "here" button in openaboutpage.ts
This commit is contained in:
Seth Burkart
2025-06-03 13:35:37 +10:00
committed by GitHub
2 changed files with 15 additions and 1 deletions
+14
View File
@@ -3397,6 +3397,20 @@ body {
margin-bottom: 12px; margin-bottom: 12px;
} }
.AboutPageLink {
background: rgba(0, 102, 255, 0.07) !important;
border-radius: 0.3em !important;
padding: 2px 10px !important;
color:rgb(56, 166, 255) !important;
font-weight: 500 !important;
transition: background 0.2s, color 0.2s !important;
cursor: pointer !important;
}
.AboutPageLink:hover {
background: rgba(0, 102, 255, 0.13) !important;
color:rgb(80, 168, 255) !important;
}
@keyframes shimmer { @keyframes shimmer {
0% { 0% {
background-position: -1000px 0; background-position: -1000px 0;
+1 -1
View File
@@ -28,7 +28,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="AboutPageLink">HERE</a></p>
</div> </div>
`).firstChild; `).firstChild;