fixed Lua Runtime. Plugins now have priority for hooks and POST for routes if requested. also changed the CSS for main.css to color #1e1e1e for darkmode body

This commit is contained in:
2025-10-06 11:22:05 +02:00
parent 4a03e37aed
commit 06217188e1
15 changed files with 1180 additions and 1262 deletions

View File

@@ -4,7 +4,7 @@ body {
font-size: clamp(14px, 2.5vw, 16px); /* scales from 14px to 16px */
line-height: 1.5;
margin: 1em;
color: #000;
color: #1e1e1e;
background: #fff;
}
@@ -84,7 +84,7 @@ table {
font-size: clamp(0.85rem, 2vw, 1rem); /* slightly smaller on mobile */
}
th, td {
border: 1px solid #000;
border: 1px solid #1e1e1e;
padding: 0.5em;
text-align: left;
}
@@ -215,7 +215,7 @@ button:hover {
}
.html-content th,
.html-content td {
border: 1px solid #000;
border: 1px solid #1e1e1e;
padding: 0.5em 0.75em;
}
.html-content th {
@@ -349,7 +349,7 @@ pre[class*="language-"] {
/* Dark mode */
body.dark-mode {
background: #121212;
background: #1e1e1e; /* before this was #121212 or something, which wasnt blending smooth with the indexer page*/
color: #e0e0e0;
}