SU2-33 | Фикс критических и серьёзных ошибок, удаление/перезагрузка организации, пагинация, favicon

This commit is contained in:
Dmitry
2026-04-21 07:54:59 +00:00
parent a1cbddf4e2
commit 136de5f238
12 changed files with 127 additions and 28 deletions
+52
View File
@@ -104,3 +104,55 @@ a.link:hover {
a.link:has(.active__button) {
background-color: gray;
}
nav.pagy {
display: flex;
justify-content: center;
gap: 8px;
margin-block: 20px;
font-size: 1.2rem;
a {
padding: 4px 10px;
border: 1px solid black;
text-decoration: none;
color: inherit;
&.current { font-weight: 700; }
&[aria-disabled="true"] { opacity: 0.4; }
&:not([aria-disabled="true"]):hover { background-color: black; color: white; }
}
}
.organisation-actions {
display: flex;
gap: 12px;
margin-block: 16px;
}
a.link-action {
display: inline-flex;
align-items: center;
gap: 6px;
border: 1px solid black;
border-radius: 20px;
padding: 8px 16px;
font-size: 1.2rem;
text-decoration: none;
color: inherit;
&:hover {
background-color: black;
color: var(--white-color);
}
&.link-action--danger {
border-color: #c0392b;
color: #c0392b;
&:hover {
background-color: #c0392b;
color: var(--white-color);
}
}
}