TIST-14: admin panel frontend #7

Merged
steve_dekart merged 2 commits from TIST-14 into develop 2025-06-17 18:58:09 +02:00
2 changed files with 11 additions and 4 deletions
Showing only changes of commit 871f656007 - Show all commits

View File

@ -20,7 +20,7 @@
</div>
<div class="btn-control">
<a href="<?php the_permalink('admin:banlist', [$user->get_id()]) ?>" class="btn btn-secondary hover-anim">Show all</a>
<a href="<?php the_permalink('admin:ban-new', [$user->get_id()]) ?>" class="btn btn-primary">New ban</a>
<a href="<?php the_permalink('admin:ban-new', [$user->get_id()]) ?>" class="btn btn-primary hover-anim">New ban</a>
</div>
</div>
</div>

View File

@ -203,8 +203,9 @@ body {
.admin-block {
overflow: hidden;
border-radius: 5px;
border: 1px solid #015847;
margin-bottom: 20px;
background: #f1fff2
}
.admin-block__content {
padding: 10px;
@ -212,9 +213,9 @@ body {
.admin-block__title {
font-size: 18px;
font-family: var(--common-font);
background-color: #015847;
padding: 10px 10px;
color: var(--title-color);
color: #eaf8eb;
}
.admin-block__table .row {
padding: 10px;
@ -286,3 +287,9 @@ body {
border-radius: 10px;
}
.admin-block__content .btn-control {
display: flex;
justify-content: space-between;
}