Black Theme Fixes

This commit is contained in:
Akif9748 2022-09-09 17:38:13 +03:00
parent 9ce1c1bfef
commit 3f36f7761a
11 changed files with 14 additions and 13 deletions

View File

@ -32,10 +32,9 @@ Akf-forum has got an API for AJAX (fetch), other clients etc. And, you can learn
## TO-DO list
| To do | Is done? | Priority |
| ----- | -------- | -------- |
| Local pfp store | 🟢 | MEDIUM |
| Category | 🟡 | MEDIUM |
| Page support for search | 🟡 | LOW |
| IPs of users will add SecretModel | 🔴 | MEDIUM |
| Category | ⚪ | MEDIUM |
| Profile Message | 🔴 | LOW |
| Last seen, last seen info | 🔴 | LOW |
| Better Auth | 🔴 | MEDIUM |

View File

@ -30,5 +30,5 @@
.content {
width: 70%;
color: var(--reaction-hover);
color: var(--anti);
}

View File

@ -7,7 +7,7 @@
--input-clr: #dcdcdc;
--box-shadow: #c3c3c3;
--second: #9f9f9f;
--reaction-hover: #ebebeb;
--anti: #ebebeb;
--t-username: rgb(236 236 236);
background-color: #000000;
}

View File

@ -6,7 +6,7 @@
--input-clr: #414141;
--box-shadow: #c3c3c3;
--second: #747474;
--reaction-hover: #151515;
--anti: #151515;
--t-username: #555;
--important: red;
background-color: #ffffff;

View File

@ -36,7 +36,7 @@
.content {
width: 70%;
color: var(--reaction-hover);
color: var(--anti);
}
.reactions {
@ -59,7 +59,7 @@
}
.reactions div:hover {
color: var(--reaction-hover);
color: var(--anti);
}

View File

@ -22,7 +22,7 @@
padding: 10px;
font-size: 18px;
font-weight: 700;
color: var(--reaction-hover);
color: var(--anti);
}

View File

@ -10,6 +10,7 @@
max-width: 900px;
margin: 0 auto;
padding: 10px;
color: var(--anti);
}
.box {

View File

@ -23,7 +23,7 @@
}
.user-box-title>a{
color: var(--reaction-hover);
color: var(--anti);
}
.user-box-title>span {

View File

@ -18,7 +18,7 @@
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
color: var(--reaction-hover);
color: var(--anti);
}
tr:nth-child(even) {

View File

@ -21,7 +21,7 @@
<%= new Date(thread.time).toLocaleString() %> • Views: <%= thread.views %>%>
</div>
<div class="date">
<a style="color: var(--reaction-hover);" href="/users/<%= thread.author.id %>"><%= thread.author.name %></a> <%= "• "+(thread.edited ? "Edited" : "Not edited")%>
<a style="color: var(--anti);" href="/users/<%= thread.author.id %>"><%= thread.author.name %></a> <%= "• "+(thread.edited ? "Edited" : "Not edited")%>
</div>
</div>
<div style="text-align:center;padding:8px">

View File

@ -11,7 +11,7 @@
<%- include("extra/navbar") %>
<div class="content">
<div class="content" >
<% if (user?.admin || user?.id === member.id) { %>
<a href="/users/<%=member.id%>/avatar" class="btn-outline-primary">Upload avatar</a>
@ -102,7 +102,8 @@ max-width: 800px;
text-align: center;
border-radius: 5px;
background: none;
color: black;">
color: var(--anti);
">
<%= member.about %>
</div>