feat: add installer, ranks/groups enhancements, and founder protections

This commit is contained in:
2026-01-23 19:26:35 +01:00
parent 24c16ed0dd
commit d4fb86633b
43 changed files with 6176 additions and 4039 deletions

View File

@@ -360,18 +360,41 @@ a {
transition: border-color 0.15s ease, color 0.15s ease;
}
.bb-post-footer .bb-post-action {
width: 28px;
height: 28px;
font-size: 0.9rem;
}
.bb-post-action:hover {
color: var(--bb-accent, #f29b3f);
border-color: var(--bb-accent, #f29b3f);
}
.bb-post-action--round {
border-radius: 50%;
}
.bb-post-content {
position: relative;
padding-bottom: 3.5rem;
}
.bb-post-body {
white-space: pre-wrap;
color: var(--bb-ink);
line-height: 1.6;
}
.bb-post-footer {
position: absolute;
right: 1rem;
bottom: 1rem;
display: flex;
justify-content: flex-end;
}
.bb-thread-reply {
border: 1px solid var(--bb-border);
border-radius: 16px;
@@ -1194,12 +1217,12 @@ a {
}
.bb-board-last-link {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
font-weight: 600;
}
.bb-board-last-link:hover {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
text-decoration: none;
}
@@ -1361,6 +1384,45 @@ a {
color: var(--bb-ink);
}
.bb-profile-thanks {
display: grid;
gap: 1.5rem;
}
.bb-profile-thanks-list {
list-style: none;
padding: 0;
margin: 0.6rem 0 0;
display: grid;
gap: 0.6rem;
}
.bb-profile-thanks-item {
display: grid;
gap: 0.2rem;
color: var(--bb-ink-muted);
}
.bb-profile-thanks-item a {
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
font-weight: 600;
}
.bb-profile-thanks-item a:hover {
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
text-decoration: none;
}
.bb-profile-thanks-meta {
color: var(--bb-ink-muted);
font-weight: 500;
}
.bb-profile-thanks-date {
color: var(--bb-ink-muted);
font-size: 0.85rem;
}
.bb-portal-list {
list-style: none;
padding: 0;
@@ -1474,12 +1536,12 @@ a {
}
.bb-portal-topic-author {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
font-weight: 600;
}
.bb-portal-topic-author:hover {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
text-decoration: none;
}
@@ -1516,12 +1578,12 @@ a {
}
.bb-portal-last-user {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
font-weight: 600;
}
.bb-portal-last-user:hover {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
text-decoration: none;
}
@@ -1572,11 +1634,11 @@ a {
}
.bb-portal-user-name-link {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
}
.bb-portal-user-name-link:hover {
color: var(--bb-accent, #f29b3f);
color: var(--bb-user-link-color, var(--bb-accent, #f29b3f));
text-decoration: none;
}
@@ -1830,6 +1892,15 @@ a {
width: auto;
}
.bb-rank-color {
width: 14px;
height: 14px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.35);
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
flex: 0 0 auto;
}
.bb-rank-badge {
display: inline-flex;
align-items: center;
@@ -1863,6 +1934,146 @@ a {
.bb-rank-actions {
display: inline-flex;
gap: 0.5rem;
align-items: center;
}
.bb-multiselect {
position: relative;
}
.bb-multiselect__control {
width: 100%;
min-height: 42px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(14, 18, 27, 0.6);
color: var(--bb-ink);
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
padding: 0.45rem 0.6rem;
text-align: left;
}
.bb-multiselect__control:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.bb-multiselect__value {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
align-items: center;
}
.bb-multiselect__placeholder {
color: var(--bb-ink-muted);
}
.bb-multiselect__chip {
display: inline-flex;
align-items: center;
gap: 0.35rem;
padding: 0.2rem 0.5rem;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
font-size: 0.85rem;
}
.bb-multiselect__chip-color {
width: 12px;
height: 12px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.35);
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}
.bb-multiselect__chip-remove {
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.12);
font-size: 0.8rem;
line-height: 1;
}
.bb-multiselect__caret {
color: var(--bb-ink-muted);
}
.bb-multiselect__menu {
position: absolute;
top: calc(100% + 6px);
left: 0;
right: 0;
z-index: 20;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(12, 16, 24, 0.95);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
overflow: hidden;
}
.bb-multiselect__search {
padding: 0.6rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bb-multiselect__search input {
width: 100%;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(16, 20, 28, 0.8);
color: var(--bb-ink);
padding: 0.35rem 0.5rem;
}
.bb-multiselect__options {
max-height: 220px;
overflow-y: auto;
}
.bb-multiselect__option {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.45rem 0.75rem;
background: transparent;
border: none;
color: var(--bb-ink);
text-align: left;
}
.bb-multiselect__option:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.bb-btn-disabled {
opacity: 0.6;
cursor: not-allowed;
}
.bb-multiselect__option:hover,
.bb-multiselect__option.is-selected {
background: rgba(255, 255, 255, 0.08);
}
.bb-multiselect__option-main {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.bb-multiselect__empty {
padding: 0.75rem;
color: var(--bb-ink-muted);
}
.bb-user-search {